GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/commands
?endpointId={endpointId}
&command={command}
&commandState={commandState}
&startDate={startDate}
&endDate={endDate}
&order={order}
&orderDirection={orderDirection}
&pageSize={pageSize}
&pageNr={pageNr}
Gets a list of executed commands on a given GSM site.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| gsmKey |
The GSM console keycode. |
string |
Required |
| siteId |
The site identifier. |
string |
Required |
| endpointId |
The endpoint identifier to get the executed command for. |
string |
None. |
| command |
Used to filter by command type. Valid values are "scan", "cleanup", "uninstall", "changekeycode", "restart", "deactivate", "reactivate", "sysisolate". |
string |
None. |
| commandState |
Used to filter by the state. Valid values are:
|
string |
None. |
| startDate |
If specified, returns all issued commands after (or at) the given date. |
date |
None. |
| endDate |
If specified, returns all issued commands before (or at) the given date. |
date |
None. |
| order |
Used to determine the order field. Valid values are "daterequested", "hostname", "commandstate", "command". Default value is "daterequested". |
string |
None. |
| orderDirection |
Used to sort the data. "A" for ascending, "D" for descending. If orderDirection is omitted or invalid, the data will be sorted in descending order. |
string |
None. |
| pageSize |
Specifies the number of records being returned. |
integer |
Default value is 50 |
| pageNr |
Specifies the page number. Can be used to retrieve the next batch of records. Default value is 1. |
integer |
Default value is 1 |
URI Sample(s)
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/3515-3EC8-3018-4DAB-A776/sites/3c5b599c-f244-4c7e-a78b-b3e9f252fac8/commands
|
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/3515-3EC8-3018-4DAB-A776/sites/3c5b599c-f244-4c7e-a78b-b3e9f252fac8/commands?command=scan
|
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/3515-3EC8-3018-4DAB-A776/sites/3c5b599c-f244-4c7e-a78b-b3e9f252fac8/commands?endpointId=ea1563b2-4536-4017-b329-38e969fc5a06&commandState=3
|
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/3515-3EC8-3018-4DAB-A776/sites/3c5b599c-f244-4c7e-a78b-b3e9f252fac8/commands?order=command&orderDirection=A
|
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/3515-3EC8-3018-4DAB-A776/sites/3c5b599c-f244-4c7e-a78b-b3e9f252fac8/commands?startDate=2018-09-01&endDate=2018-09-30&pageSize=100&pageNr=3
|
Body Parameters
None.
Response Information
Resource Description
Information about the executed commands.
GetCommandsResponseModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| TotalAvailable |
The total number of commands in the past 6 months. Use this value to determine if you need to retrieve additional pages of data. |
integer |
None. |
| PageNr |
The number of the page that was requested. |
integer |
None. |
| PageSize |
The size of the page that was requested. |
integer |
None. |
| Commands |
List of command records. |
Collection of GetCommandsResponseModel_Command |
None. |
Sample Response
{
"TotalAvailable": 2,
"PageNr": 1,
"PageSize": 50,
"Commands": [
{
"DateRequested": "2026-06-12T14:18:29.6110931Z",
"EndpointId": "0f644442-d7b7-445a-b83f-ce6f0b5776e9",
"HostName": "MyComputer1",
"StartDate": "2026-06-12T17:18:29.6110931Z",
"EndDate": "2026-06-13T03:18:29.6110931Z",
"Command": "scan",
"Parameters": null,
"CommandState": 5
},
{
"DateRequested": "2026-06-12T13:18:29.6110931Z",
"EndpointId": "a3bf9207-1a56-45ee-ade3-ba5782ae1203",
"HostName": "MyComputer2",
"StartDate": "2026-06-12T18:18:29.6110931Z",
"EndDate": "2026-06-13T04:18:29.6110931Z",
"Command": "scan",
"Parameters": null,
"CommandState": 4
}
]
}
<GetCommandsResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models">
<Commands>
<GetCommandsResponseModel_Command>
<Command>scan</Command>
<CommandState>5</CommandState>
<DateRequested>2026-06-12T14:18:29.6110931Z</DateRequested>
<EndDate>2026-06-13T03:18:29.6110931Z</EndDate>
<EndpointId>0f644442-d7b7-445a-b83f-ce6f0b5776e9</EndpointId>
<HostName>MyComputer1</HostName>
<Parameters i:nil="true" />
<StartDate>2026-06-12T17:18:29.6110931Z</StartDate>
</GetCommandsResponseModel_Command>
<GetCommandsResponseModel_Command>
<Command>scan</Command>
<CommandState>4</CommandState>
<DateRequested>2026-06-12T13:18:29.6110931Z</DateRequested>
<EndDate>2026-06-13T04:18:29.6110931Z</EndDate>
<EndpointId>a3bf9207-1a56-45ee-ade3-ba5782ae1203</EndpointId>
<HostName>MyComputer2</HostName>
<Parameters i:nil="true" />
<StartDate>2026-06-12T18:18:29.6110931Z</StartDate>
</GetCommandsResponseModel_Command>
</Commands>
<PageNr>1</PageNr>
<PageSize>50</PageSize>
<TotalAvailable>2</TotalAvailable>
</GetCommandsResponseModel>