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/FACD-925F-2768-4F9F-8A55/sites/600ea248-f52d-418d-a878-55b22e5f9ece/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": 220,
"TotalDevicesInfected": 0,
"RequiringAttention": 0,
"WithActiveThreats": 0,
"ParentSeats": 440,
"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>440</ParentSeats> <RequiringAttention>0</RequiringAttention> <TotalDevicesAllowed>0</TotalDevicesAllowed> <TotalDevicesInfected>0</TotalDevicesInfected> <TotalDevicesInstalled>220</TotalDevicesInstalled> <WithActiveThreats>0</WithActiveThreats> </GetSiteStatisticsEndpointProtectionResponseModel>