GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/endpoints/{endpointId}
Gets information about an endpoint.
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. |
string |
Required |
URI Sample(s)
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/E134-61A9-83E8-461B-A690/sites/3f12461b-6107-4bfc-9a52-88337caa7edc/endpoints/04616ad4-726e-4c90-b0bc-c9a284c808c4
|
Body Parameters
None.
Response Information
Resource Description
Information about the desired endpoints.
GetEndpointsResponseModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| TotalAvailable |
Use this value to determine if you need to retrieve additional pages of data. If TotalAvailable is larger than PageNr * PageSize then more endpoints are available. |
integer |
None. |
| PageNr |
The number of the page that was request. |
integer |
None. |
| PageSize |
The size of the page that was requested. |
integer |
None. |
| Endpoints |
List of endpoint records. |
Collection of GetEndpointsResponseModel_Endpoint |
None. |
Sample Response
{
"TotalAvailable": 1,
"PageNr": 1,
"PageSize": 50,
"Endpoints": [
{
"Seq": 1,
"EndpointId": "c939606c-11e6-48ba-ac1c-f949e633f0a4",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-12-20T16:12:38.4179198Z",
"LastSeen": "2025-12-20T16:12:38.4179198Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "F8CA-4A4F-0FB1-44B0-A9C9",
"Expired": false,
"LastChangesUserId": "d7975b25-912a-428a-aea3-983bd3174eb3",
"MachineId": "10A66E9C5BB148D583CA3C03B47A702A:::1BE82AE122BC482BB6DE4D793F5894BA:::1BE82AE122BC482BB6DE4D793F5894BA",
"PolicyId": "61a1bb4c-4140-472c-9ff9-9fe384f3048e",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "9b034479-d2bb-4dff-847a-565369f805f7",
"PolicyName": "Test Policy",
"LastInfected": "2026-02-20T16:12:38.4179198Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.14.236.188",
"MACAddress": "29-45-0E-F5-06-E1",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.112.69.100",
"Deactivated": false,
"LastScanSeq": "1921884529",
"ModifiedDate": "2026-05-13T16:12:38.4179198Z",
"IsolationStatus": "UNISOLATED",
"ActiveModules": [
"endpoint"
]
}
]
}
<GetEndpointsResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models">
<Endpoints>
<GetEndpointsResponseModel_Endpoint>
<ADDomain>domain.webroot.com</ADDomain>
<ADOU>Webroot.Computers</ADOU>
<ActiveModules xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>endpoint</d4p1:string>
</ActiveModules>
<AgentLanguage>en</AgentLanguage>
<AgentVersion>9.0.13.58</AgentVersion>
<CurrentUser>Paul</CurrentUser>
<Deactivated>false</Deactivated>
<EndpointId>c939606c-11e6-48ba-ac1c-f949e633f0a4</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-12-20T16:12:38.4179198Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>9b034479-d2bb-4dff-847a-565369f805f7</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.14.236.188</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>d7975b25-912a-428a-aea3-983bd3174eb3</LastChangesUserId>
<LastInfected>2026-02-20T16:12:38.4179198Z</LastInfected>
<LastPublicIP>95.112.69.100</LastPublicIP>
<LastScanSeq>1921884529</LastScanSeq>
<LastSeen>2025-12-20T16:12:38.4179198Z</LastSeen>
<LicenseKey>F8CA-4A4F-0FB1-44B0-A9C9</LicenseKey>
<MACAddress>29-45-0E-F5-06-E1</MACAddress>
<Mac>false</Mac>
<MachineId>10A66E9C5BB148D583CA3C03B47A702A:::1BE82AE122BC482BB6DE4D793F5894BA:::1BE82AE122BC482BB6DE4D793F5894BA</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-05-13T16:12:38.4179198Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>61a1bb4c-4140-472c-9ff9-9fe384f3048e</PolicyId>
<PolicyName>Test Policy</PolicyName>
<Seq>1</Seq>
<VM>false</VM>
<WindowsFullOS>Windows 7 Service Pack 1 (Build 7601) 64bit</WindowsFullOS>
<Workgroup>WORKGROUP</Workgroup>
</GetEndpointsResponseModel_Endpoint>
</Endpoints>
<PageNr>1</PageNr>
<PageSize>50</PageSize>
<TotalAvailable>1</TotalAvailable>
</GetEndpointsResponseModel>