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/A579-CD55-5B92-4464-9DD2/sites/d6da4333-77df-4717-9507-7a6965900915/endpoints/3224d481-d4d0-4600-8253-94844eebad6c
|
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": "b09db938-ab78-4cad-8469-59f14c136a20",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2026-03-19T04:13:23.1395568Z",
"LastSeen": "2026-03-19T04:13:23.1395568Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "4A59-8E81-8121-45A3-928D",
"Expired": false,
"LastChangesUserId": "f23ccd21-6d53-4cc7-99ac-2c65fb40db10",
"MachineId": "ABC11478F8F545A4BD8A04DB27FB9FCA:::6D4F2E532F014942A7702B4EC33F7CED:::6D4F2E532F014942A7702B4EC33F7CED",
"PolicyId": "b320baac-27a0-48c8-8b42-d18ede9fa8a8",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "3818d000-40d4-4db5-a953-388ff7fc7326",
"PolicyName": "Test Policy",
"LastInfected": "2026-05-19T04:13:23.1395568Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.120.67.214",
"MACAddress": "F6-E6-E1-14-9A-39",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.85.38.239",
"Deactivated": false,
"LastScanSeq": "1540406831",
"ModifiedDate": "2026-08-12T04:13:23.1395568Z",
"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>b09db938-ab78-4cad-8469-59f14c136a20</EndpointId>
<Expired>false</Expired>
<FirstSeen>2026-03-19T04:13:23.1395568Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>3818d000-40d4-4db5-a953-388ff7fc7326</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.120.67.214</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>f23ccd21-6d53-4cc7-99ac-2c65fb40db10</LastChangesUserId>
<LastInfected>2026-05-19T04:13:23.1395568Z</LastInfected>
<LastPublicIP>95.85.38.239</LastPublicIP>
<LastScanSeq>1540406831</LastScanSeq>
<LastSeen>2026-03-19T04:13:23.1395568Z</LastSeen>
<LicenseKey>4A59-8E81-8121-45A3-928D</LicenseKey>
<MACAddress>F6-E6-E1-14-9A-39</MACAddress>
<Mac>false</Mac>
<MachineId>ABC11478F8F545A4BD8A04DB27FB9FCA:::6D4F2E532F014942A7702B4EC33F7CED:::6D4F2E532F014942A7702B4EC33F7CED</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-08-12T04:13:23.1395568Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>b320baac-27a0-48c8-8b42-d18ede9fa8a8</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>