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/6540-8723-1EC9-4B61-91DC/sites/531de0d1-ba4e-4303-bf5d-bfc9ce2420ea/statistics/endpointprotection
|
Body Parameters
None.
Response Information
Resource Description
Statistics about the desired GSM site.
GetSiteStatisticsEndpointProtectionResponseModelName | 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": 55, "TotalDevicesInfected": 0, "RequiringAttention": 0, "WithActiveThreats": 0, "ParentSeats": 110, "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>110</ParentSeats> <RequiringAttention>0</RequiringAttention> <TotalDevicesAllowed>0</TotalDevicesAllowed> <TotalDevicesInfected>0</TotalDevicesInfected> <TotalDevicesInstalled>55</TotalDevicesInstalled> <WithActiveThreats>0</WithActiveThreats> </GetSiteStatisticsEndpointProtectionResponseModel>