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/52CD-52B8-DB01-4092-AFA7/sites/98227396-0647-4cbf-92b2-988b39200d20/endpoints/48b2132c-6a2f-43d8-85bc-25124e729c66
|
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": "c68215f9-55cf-401a-9004-5368dc486538",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-11-03T06:42:38.4401584Z",
"LastSeen": "2025-11-03T06:42:38.4401584Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "B5A2-8A29-7980-478F-8B20",
"Expired": false,
"LastChangesUserId": "d2052c54-b792-4207-baf7-7b18de639fa8",
"MachineId": "7597ABCD646343A1B2183AD4776DAD34:::80509352C27B40CAB731A1215A9D6530:::80509352C27B40CAB731A1215A9D6530",
"PolicyId": "dac7d4b6-eade-4d8c-8eb3-f202a202df65",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "d1e218b0-3685-4e9d-ab41-e61562d89e44",
"PolicyName": "Test Policy",
"LastInfected": "2026-01-03T06:42:38.4401584Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.129.1.153",
"MACAddress": "5A-28-17-23-AF-6F",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.173.158.205",
"Deactivated": false,
"LastScanSeq": "838612821",
"ModifiedDate": "2026-03-27T06:42:38.4401584Z",
"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>c68215f9-55cf-401a-9004-5368dc486538</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-11-03T06:42:38.4401584Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>d1e218b0-3685-4e9d-ab41-e61562d89e44</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.129.1.153</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>d2052c54-b792-4207-baf7-7b18de639fa8</LastChangesUserId>
<LastInfected>2026-01-03T06:42:38.4401584Z</LastInfected>
<LastPublicIP>95.173.158.205</LastPublicIP>
<LastScanSeq>838612821</LastScanSeq>
<LastSeen>2025-11-03T06:42:38.4401584Z</LastSeen>
<LicenseKey>B5A2-8A29-7980-478F-8B20</LicenseKey>
<MACAddress>5A-28-17-23-AF-6F</MACAddress>
<Mac>false</Mac>
<MachineId>7597ABCD646343A1B2183AD4776DAD34:::80509352C27B40CAB731A1215A9D6530:::80509352C27B40CAB731A1215A9D6530</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-03-27T06:42:38.4401584Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>dac7d4b6-eade-4d8c-8eb3-f202a202df65</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>