GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/statistics/endpointprotection
Retrieves endpoint and site statistics about a GSM site.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| gsmKey |
The GSM console keycode. |
string |
Required |
| siteId |
The keycode of the GSM site to retrieve statistics for. |
string |
Required |
URI Sample(s)
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/8D65-BA0F-417F-4DB6-A886/sites/99a2cdf2-3ff1-4005-85bb-9a18667ef34a/statistics/endpointprotection
|
Body Parameters
None.
Response Information
Resource Description
Statistics about the desired GSM site.
GetSiteStatisticsEndpointProtectionResponseModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| TotalDevicesInstalled |
Number of devices with endpoint protection installed. |
integer |
None. |
| TotalDevicesInfected |
Number of infected devices. |
integer |
None. |
| RequiringAttention |
Number of infected devices which require attention. |
integer |
None. |
| WithActiveThreats |
Number of active, uncleaned threats. |
integer |
None. |
| ParentSeats |
Number of parent seats reserved for this console. |
integer |
None. |
| TotalDevicesAllowed |
Number of devices allowed. |
integer |
None. |
Sample Response
{
"TotalDevicesInstalled": 60,
"TotalDevicesInfected": 0,
"RequiringAttention": 0,
"WithActiveThreats": 0,
"ParentSeats": 120,
"TotalDevicesAllowed": 0
}
<GetSiteStatisticsEndpointProtectionResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <ParentSeats>120</ParentSeats> <RequiringAttention>0</RequiringAttention> <TotalDevicesAllowed>0</TotalDevicesAllowed> <TotalDevicesInfected>0</TotalDevicesInfected> <TotalDevicesInstalled>60</TotalDevicesInstalled> <WithActiveThreats>0</WithActiveThreats> </GetSiteStatisticsEndpointProtectionResponseModel>