GET /service/api/status/reporting/gsm/{gsmKey}/wsat
?reportType={reportType}
&effectiveDate={effectiveDate}
Returns a GSM-level summary report of WSAT usage for a GSM master keycode. Besides general information like the console name and type of GSM license the report includes the total number of sites and users.
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
gsmKey |
A master keycode for which usage information is to be retrieved. |
string |
Required |
reportType |
The type of report to be produced. The following values are supported:
|
string |
None. |
effectiveDate |
The date the report should refer to. If omitted, the most recent usage report will be returned. Note: Usage data will typically be generated in the course of the following day (UTC) and therefore can only be provided for dates earlier than yesterday. If, for example, this API method is called at 11:00 pm UTC, yesterday's data will not be available yet. |
date |
None. |
URI Sample(s)
GET
|
https://unityapi.webrootcloudav.com/service/api/status/reporting/gsm/EB40-E987-954C-40CC-AB4A/wsat?reportType=UsersSeenInLast30Days&effectiveDate=2024-11-26T00:00:00.0000000Z
|
Body Parameters
None.
Response Information
Resource Description
Returns usage statistics for a GSM master keycode.
UsageReportGSM_WSATName | Description | Type | Additional Information |
---|---|---|---|
ReportInfo |
Details about the returned report. |
UsageReportGSM_ReportInfo |
None. |
GSM |
Details for a given GSM site. |
UsageReportGSM_WSAT_GSMEntry |
None. |
Sample Response
{ "ReportInfo": { "ReportType": "UsersSeenInLast30Days", "EffectiveDate": "2024-11-27T00:00:00Z", "GSMKey": "fafj0cfiu7nms4zhp7u6" }, "GSM": { "GSMConsoleName": "GSM MG1NQ6A8IO", "GSMLicenseType": "Full", "GSMExpiryDate": "2025-06-21T09:51:41.788358Z", "WSATEnabled": true, "WSATLicenseType": "Full", "WSATExpiryDate": "2026-09-29T02:49:41.788358Z", "TotalSitesWithoutWSAT": 297, "TotalSitesWithWSATFull": 278, "TotalSitesWithWSATTrial": 342, "TotalWSATFullUsers": 9213, "TotalWSATTrialUsers": 2574 } }
<StatusReporting.UsageReportGSM_WSAT xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.AgentStatus.Models"> <GSM> <GSMConsoleName>GSM MG1NQ6A8IO</GSMConsoleName> <GSMExpiryDate>2025-06-21T09:51:41.788358Z</GSMExpiryDate> <GSMLicenseType>Full</GSMLicenseType> <TotalSitesWithWSATFull>278</TotalSitesWithWSATFull> <TotalSitesWithWSATTrial>342</TotalSitesWithWSATTrial> <TotalSitesWithoutWSAT>297</TotalSitesWithoutWSAT> <TotalWSATFullUsers>9213</TotalWSATFullUsers> <TotalWSATTrialUsers>2574</TotalWSATTrialUsers> <WSATEnabled>true</WSATEnabled> <WSATExpiryDate>2026-09-29T02:49:41.788358Z</WSATExpiryDate> <WSATLicenseType>Full</WSATLicenseType> </GSM> <ReportInfo> <EffectiveDate>2024-11-27T00:00:00Z</EffectiveDate> <GSMKey>fafj0cfiu7nms4zhp7u6</GSMKey> <ReportType>UsersSeenInLast30Days</ReportType> </ReportInfo> </StatusReporting.UsageReportGSM_WSAT>