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/BDDC-4E56-C59D-4D0B-94C6/sites/860c1289-0b51-4d71-96b0-20f329201166/endpoints/c2aa57e3-b9cd-4cec-89ff-2185df8f9771
|
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": "ab05dc7a-4b2b-49f0-a43f-9390f415c88c",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-11-30T16:39:50.0301072Z",
"LastSeen": "2025-11-30T16:39:50.0301072Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "E79A-B8BC-5D04-43A2-BD2D",
"Expired": false,
"LastChangesUserId": "4103ed9d-0154-4297-8705-e0047b13a007",
"MachineId": "5A1FFF27159D48ACAC45EBFE2289F2A0:::A515E22DDEC84DA1942716BDAFBC59EE:::A515E22DDEC84DA1942716BDAFBC59EE",
"PolicyId": "de35c349-4db0-422f-b0a6-0a54fdef1365",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "67ac77cb-d868-4c1e-8e8c-c51a3608e651",
"PolicyName": "Test Policy",
"LastInfected": "2026-01-30T16:39:50.0301072Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.39.243.37",
"MACAddress": "CD-78-20-A3-F0-E0",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.28.104.104",
"Deactivated": false,
"LastScanSeq": "570038349",
"ModifiedDate": "2026-04-23T16:39:50.0301072Z",
"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>ab05dc7a-4b2b-49f0-a43f-9390f415c88c</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-11-30T16:39:50.0301072Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>67ac77cb-d868-4c1e-8e8c-c51a3608e651</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.39.243.37</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>4103ed9d-0154-4297-8705-e0047b13a007</LastChangesUserId>
<LastInfected>2026-01-30T16:39:50.0301072Z</LastInfected>
<LastPublicIP>95.28.104.104</LastPublicIP>
<LastScanSeq>570038349</LastScanSeq>
<LastSeen>2025-11-30T16:39:50.0301072Z</LastSeen>
<LicenseKey>E79A-B8BC-5D04-43A2-BD2D</LicenseKey>
<MACAddress>CD-78-20-A3-F0-E0</MACAddress>
<Mac>false</Mac>
<MachineId>5A1FFF27159D48ACAC45EBFE2289F2A0:::A515E22DDEC84DA1942716BDAFBC59EE:::A515E22DDEC84DA1942716BDAFBC59EE</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-04-23T16:39:50.0301072Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>de35c349-4db0-422f-b0a6-0a54fdef1365</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>