GET /service/api/console/gsm/{gsmKey}/statistics/crsb
Retrieves CRSB statistics about a GSM console.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| gsmKey |
The keycode of the GSM console to retrieve statistics for. |
string |
Required |
URI Sample(s)
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/0FF7-A930-DEA2-4604-97E2/statistics/crsb
|
Body Parameters
None.
Response Information
Resource Description
Statistics about the desired GSM console.
GetGSMStatisticsCRSBResponseModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| 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
{
"Pending": 10,
"Protected": 35,
"PartiallyProtected": 7,
"NeedsAttention": 4,
"ScheduledForDeletion": 31,
"Expired": 9
}
<GetGSMStatisticsCRSBResponseModel 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">9</Expired> <NeedsAttention xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">4</NeedsAttention> <PartiallyProtected xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">7</PartiallyProtected> <Pending xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">10</Pending> <Protected xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">35</Protected> <ScheduledForDeletion xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models.Statistics">31</ScheduledForDeletion> </GetGSMStatisticsCRSBResponseModel>