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/F9B6-FC13-CCC0-49EA-9E7D/sites/0484db22-d839-45b0-a183-960c62238b83/endpoints/23f9d9c5-e939-4501-a505-8098040af506
|
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": "3bd24d2f-4a89-4e3f-8fd9-0d74b39e0a13",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2026-02-09T21:35:00.3271882Z",
"LastSeen": "2026-02-09T21:35:00.3271882Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "1D16-FC41-C80E-467A-9E35",
"Expired": false,
"LastChangesUserId": "586a5193-78ee-492b-9987-2f6e7827534c",
"MachineId": "231AA65667334BB8A1A8C3F79B2F7F4F:::75BC97B7EF0E48A3AC2BD57D67332C6B:::75BC97B7EF0E48A3AC2BD57D67332C6B",
"PolicyId": "5098d8e9-7f39-4adc-92e6-d8404aae3413",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "20d712f2-0bb5-48ac-a796-5918d50596a0",
"PolicyName": "Test Policy",
"LastInfected": "2026-04-09T21:35:00.3271882Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.139.10.147",
"MACAddress": "A7-E0-D0-C7-FD-00",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.235.181.84",
"Deactivated": false,
"LastScanSeq": "1466197950",
"ModifiedDate": "2026-07-02T21:35:00.3271882Z",
"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>3bd24d2f-4a89-4e3f-8fd9-0d74b39e0a13</EndpointId>
<Expired>false</Expired>
<FirstSeen>2026-02-09T21:35:00.3271882Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>20d712f2-0bb5-48ac-a796-5918d50596a0</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.139.10.147</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>586a5193-78ee-492b-9987-2f6e7827534c</LastChangesUserId>
<LastInfected>2026-04-09T21:35:00.3271882Z</LastInfected>
<LastPublicIP>95.235.181.84</LastPublicIP>
<LastScanSeq>1466197950</LastScanSeq>
<LastSeen>2026-02-09T21:35:00.3271882Z</LastSeen>
<LicenseKey>1D16-FC41-C80E-467A-9E35</LicenseKey>
<MACAddress>A7-E0-D0-C7-FD-00</MACAddress>
<Mac>false</Mac>
<MachineId>231AA65667334BB8A1A8C3F79B2F7F4F:::75BC97B7EF0E48A3AC2BD57D67332C6B:::75BC97B7EF0E48A3AC2BD57D67332C6B</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-07-02T21:35:00.3271882Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>5098d8e9-7f39-4adc-92e6-d8404aae3413</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>