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/A0F7-8AE0-F5DD-4AC8-9B3A/sites/419d87a2-a158-4838-9ce8-ba8295bcd75c/endpoints/dda5e73c-2a9d-441a-aea7-a0684be45434
|
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": "2eeeb56f-67a8-4341-bf76-e52103786fc5",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-09-18T12:23:32.5181353Z",
"LastSeen": "2025-09-18T12:23:32.5181353Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "C7DE-C34B-A5D9-4268-92A8",
"Expired": false,
"LastChangesUserId": "26d6b143-5d49-4d67-9177-55e0d2b993eb",
"MachineId": "4BDA5D8B38B54E13A51677B83FD0C7A0:::896EA79EF036433A87C4FA85A149C504:::896EA79EF036433A87C4FA85A149C504",
"PolicyId": "630a7814-f6e5-4973-a137-377e48d4c05a",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "402de7ec-558b-4f18-8ba9-55a3e07a250c",
"PolicyName": "Test Policy",
"LastInfected": "2025-11-18T12:23:32.5181353Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.102.247.37",
"MACAddress": "16-16-B9-D9-A7-64",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.207.120.173",
"Deactivated": false,
"LastScanSeq": "657550016",
"ModifiedDate": "2026-02-11T12:23:32.5181353Z",
"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>2eeeb56f-67a8-4341-bf76-e52103786fc5</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-09-18T12:23:32.5181353Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>402de7ec-558b-4f18-8ba9-55a3e07a250c</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.102.247.37</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>26d6b143-5d49-4d67-9177-55e0d2b993eb</LastChangesUserId>
<LastInfected>2025-11-18T12:23:32.5181353Z</LastInfected>
<LastPublicIP>95.207.120.173</LastPublicIP>
<LastScanSeq>657550016</LastScanSeq>
<LastSeen>2025-09-18T12:23:32.5181353Z</LastSeen>
<LicenseKey>C7DE-C34B-A5D9-4268-92A8</LicenseKey>
<MACAddress>16-16-B9-D9-A7-64</MACAddress>
<Mac>false</Mac>
<MachineId>4BDA5D8B38B54E13A51677B83FD0C7A0:::896EA79EF036433A87C4FA85A149C504:::896EA79EF036433A87C4FA85A149C504</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-02-11T12:23:32.5181353Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>630a7814-f6e5-4973-a137-377e48d4c05a</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>