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/65DB-8BB8-067C-49B3-9D96/sites/9b43603c-3ca8-46e9-a5c6-b58c180d6f90/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": 455,
"TotalDevicesInfected": 0,
"RequiringAttention": 0,
"WithActiveThreats": 0,
"ParentSeats": 910,
"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>910</ParentSeats> <RequiringAttention>0</RequiringAttention> <TotalDevicesAllowed>0</TotalDevicesAllowed> <TotalDevicesInfected>0</TotalDevicesInfected> <TotalDevicesInstalled>455</TotalDevicesInstalled> <WithActiveThreats>0</WithActiveThreats> </GetSiteStatisticsEndpointProtectionResponseModel>