GET /service/api/status/reporting/gsm/{gsmKey}
 ?reportType={reportType}
 &effectiveDate={effectiveDate}

Returns a GSM-level summary report of endpoint 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 endpoints.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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:

  • "ActiveEndpoints": Includes all active devices on the effective report date. Note: If hidden data filter is set within the Webroot console, and if some devices have moved to hidden, the “ActiveEndpoints” will show all hidden as well as non-hidden devices in the total.
  • "ActiveEndpointsWithoutHidden": Includes active devices on the effective report date except for those that were hidden. Note: Reflects the Active Devices total seen within the Webroot console under sites, which filters out any hidden devices. Therefore if hidden devices exist, this device total will be less than “ActiveEndpoints” total.
  • "EndpointsSeenInLast30Days": Includes all devices seen in the last 30 days (between the effective report date and 30 days earlier).
If omitted, the reportType is set to "EndpointsSeenInLast30Days".

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/944A-C796-FE82-4272-B86E?reportType=EndpointsSeenInLast30Days&effectiveDate=2024-04-13T00:00:00.0000000Z

Body Parameters

None.

Response Information

Resource Description

Returns usage statistics for a GSM master keycode.

UsageReportGSM
NameDescriptionTypeAdditional Information
ReportInfo

Details about the returned report.

UsageReportGSM_ReportInfo

None.

GSM

Details for a given GSM site.

UsageReportGSM_GSMEntry

None.

Sample Response

{
  "ReportInfo": {
    "ReportType": "EndpointsSeenInLast30Days",
    "EffectiveDate": "2024-03-23T00:00:00Z",
    "GSMKey": "bg1fbhzdgoeifucczu1n"
  },
  "GSM": {
    "GSMConsoleName": "GSM 7DFOBDRRMD",
    "LicenseType": "Full",
    "ExpiryDate": "2025-09-17T06:04:06.8536359Z",
    "TotalSitesWithoutTrial": 375,
    "TotalTrialSites": 0,
    "TotalEndpointsWithoutTrial": 361,
    "TotalTrialEndpoints": 8
  }
}                    
<StatusReporting.UsageReportGSM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.AgentStatus.Models">
  <GSM>
    <ExpiryDate>2025-09-17T06:04:06.8536359Z</ExpiryDate>
    <GSMConsoleName>GSM 7DFOBDRRMD</GSMConsoleName>
    <LicenseType>Full</LicenseType>
    <TotalEndpointsWithoutTrial>361</TotalEndpointsWithoutTrial>
    <TotalSitesWithoutTrial>375</TotalSitesWithoutTrial>
    <TotalTrialEndpoints>8</TotalTrialEndpoints>
    <TotalTrialSites>0</TotalTrialSites>
  </GSM>
  <ReportInfo>
    <EffectiveDate>2024-03-23T00:00:00Z</EffectiveDate>
    <GSMKey>bg1fbhzdgoeifucczu1n</GSMKey>
    <ReportType>EndpointsSeenInLast30Days</ReportType>
  </ReportInfo>
</StatusReporting.UsageReportGSM>