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/0651-AE38-A68A-4E6A-A302/sites/8f0e0d4e-8c95-4607-9fdd-8c8ef0ff1112/endpoints/00edd7ed-eaf1-44f2-a366-b24d4434e219
|
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": "d6ee5ea0-c162-426f-b634-2206a5ea4d98",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-06-06T21:19:33.9157438Z",
"LastSeen": "2025-06-06T21:19:33.9157438Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "9A57-D0BB-B1C5-4463-901C",
"Expired": false,
"LastChangesUserId": "319f504c-3b67-4ae9-a892-863435f48b08",
"MachineId": "B013D0C20595498CBD10FAA44695A766:::C0E155AD41F2461090AB6EC64F872089:::C0E155AD41F2461090AB6EC64F872089",
"PolicyId": "050035ac-4ce9-4276-b58f-9cc2dc91991f",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "520573d4-1198-46f7-a845-784d1fc0ae7d",
"PolicyName": "Test Policy",
"LastInfected": "2025-08-06T21:19:33.9157438Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.246.38.11",
"MACAddress": "D0-B8-FF-30-C7-8F",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.78.76.106",
"Deactivated": false,
"LastScanSeq": "1360678381",
"ModifiedDate": "2025-10-30T21:19:33.9157438Z",
"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>d6ee5ea0-c162-426f-b634-2206a5ea4d98</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-06-06T21:19:33.9157438Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>520573d4-1198-46f7-a845-784d1fc0ae7d</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.246.38.11</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>319f504c-3b67-4ae9-a892-863435f48b08</LastChangesUserId>
<LastInfected>2025-08-06T21:19:33.9157438Z</LastInfected>
<LastPublicIP>95.78.76.106</LastPublicIP>
<LastScanSeq>1360678381</LastScanSeq>
<LastSeen>2025-06-06T21:19:33.9157438Z</LastSeen>
<LicenseKey>9A57-D0BB-B1C5-4463-901C</LicenseKey>
<MACAddress>D0-B8-FF-30-C7-8F</MACAddress>
<Mac>false</Mac>
<MachineId>B013D0C20595498CBD10FAA44695A766:::C0E155AD41F2461090AB6EC64F872089:::C0E155AD41F2461090AB6EC64F872089</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2025-10-30T21:19:33.9157438Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>050035ac-4ce9-4276-b58f-9cc2dc91991f</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>