GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/statistics/crsb
Retrieves CRSB 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/B6C8-FB72-EDF7-415F-A5CF/sites/a33f69c4-3c42-4eb5-a2c0-2a9987aad966/statistics/crsb
|
Body Parameters
None.
Response Information
Resource Description
Statistics about the desired GSM site.
GetSiteStatisticsCRSBResponseModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| SiteId |
The identifier of the GSM site that was queried. |
string |
None. |
| SiteName |
The name of the GSM site that was queried. |
string |
None. |
| Pending |
Number of endpoints in 'Pending' state. |
integer |
None. |
| Protected |
Number of endpoints in 'Protected' state. |
integer |
None. |
| PartiallyProtected |
Number of endpoints in 'Partially Protected' state. |
integer |
None. |
| NeedsAttention |
Number of endpoints in 'NeedsAttention' state. |
integer |
None. |
| ScheduledForDeletion |
Number of endpoints in 'ScheduledForDeletion' state. |
integer |
None. |
| Expired |
Number of endpoints in 'Expired' state. |
integer |
None. |
Sample Response
{
"SiteId": "f70753a0-4f30-4d3c-978d-f7ba67c357ff",
"SiteName": "CRSB Site",
"Pending": 6,
"Protected": 23,
"PartiallyProtected": 31,
"NeedsAttention": 5,
"ScheduledForDeletion": 18,
"Expired": 15
}
<GetSiteStatisticsCRSBResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <Expired xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">15</Expired> <NeedsAttention xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">5</NeedsAttention> <PartiallyProtected xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">31</PartiallyProtected> <Pending xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">6</Pending> <Protected xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">23</Protected> <ScheduledForDeletion xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">18</ScheduledForDeletion> <SiteId>f70753a0-4f30-4d3c-978d-f7ba67c357ff</SiteId> <SiteName>CRSB Site</SiteName> </GetSiteStatisticsCRSBResponseModel>