GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/statistics/endpointprotection

Retrieves endpoint and site statistics about a GSM site.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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/CB68-9AE1-A8B0-4124-BDBE/sites/ec41fbfc-59b1-45a5-a70a-67f83165d352/statistics/endpointprotection

Body Parameters

None.

Response Information

Resource Description

Statistics about the desired GSM site.

GetSiteStatisticsEndpointProtectionResponseModel
NameDescriptionTypeAdditional 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": 445,
  "TotalDevicesInfected": 0,
  "RequiringAttention": 0,
  "WithActiveThreats": 0,
  "ParentSeats": 890,
  "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>890</ParentSeats>
  <RequiringAttention>0</RequiringAttention>
  <TotalDevicesAllowed>0</TotalDevicesAllowed>
  <TotalDevicesInfected>0</TotalDevicesInfected>
  <TotalDevicesInstalled>445</TotalDevicesInstalled>
  <WithActiveThreats>0</WithActiveThreats>
</GetSiteStatisticsEndpointProtectionResponseModel>