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/1B7C-1D10-C0BA-4CBA-A469/sites/7b2a2726-ebd9-45c8-ada2-b15f2a5e8612/endpoints/f7876c3a-ad57-4da2-875f-5b9eaed30049
|
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": "09cb690d-54c3-45c3-9fe9-b1639cb8427b",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-06-06T19:05:37.2097392Z",
"LastSeen": "2025-06-06T19:05:37.2097392Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "348C-24CD-CB65-4725-9D21",
"Expired": false,
"LastChangesUserId": "37fb226b-8159-40f2-a2ea-efe4f71732c0",
"MachineId": "551518A3A743491FAE4142CD12FDAEA6:::ED810C54FDA94139BB35DB790B519A6F:::ED810C54FDA94139BB35DB790B519A6F",
"PolicyId": "fe1da701-5076-4186-b584-46d994550e53",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "ed5d6da1-5206-4b0a-a62b-51e2cd2106a0",
"PolicyName": "Test Policy",
"LastInfected": "2025-08-06T19:05:37.2097392Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.86.159.59",
"MACAddress": "A7-72-47-4F-99-59",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.190.165.170",
"Deactivated": false,
"LastScanSeq": "1683544033",
"ModifiedDate": "2025-10-30T19:05:37.2097392Z",
"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>09cb690d-54c3-45c3-9fe9-b1639cb8427b</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-06-06T19:05:37.2097392Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>ed5d6da1-5206-4b0a-a62b-51e2cd2106a0</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.86.159.59</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>37fb226b-8159-40f2-a2ea-efe4f71732c0</LastChangesUserId>
<LastInfected>2025-08-06T19:05:37.2097392Z</LastInfected>
<LastPublicIP>95.190.165.170</LastPublicIP>
<LastScanSeq>1683544033</LastScanSeq>
<LastSeen>2025-06-06T19:05:37.2097392Z</LastSeen>
<LicenseKey>348C-24CD-CB65-4725-9D21</LicenseKey>
<MACAddress>A7-72-47-4F-99-59</MACAddress>
<Mac>false</Mac>
<MachineId>551518A3A743491FAE4142CD12FDAEA6:::ED810C54FDA94139BB35DB790B519A6F:::ED810C54FDA94139BB35DB790B519A6F</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2025-10-30T19:05:37.2097392Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>fe1da701-5076-4186-b584-46d994550e53</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>