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/150C-3162-C697-45EF-A23F/sites/42dee52e-4791-491d-9f77-d7fc26e7cbad/endpoints/cc6dc144-7734-4286-8f96-2780cc24c7cd
|
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": "7618b061-e4de-482c-ada0-c7c080850d78",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-06-27T07:15:52.8210385Z",
"LastSeen": "2025-06-27T07:15:52.8210385Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "5596-EE1C-9237-4BBA-B1D3",
"Expired": false,
"LastChangesUserId": "40036a98-b7e3-43d5-96e2-f6c645f26edc",
"MachineId": "298C31AF7CB94613BBCFD4C624C838F7:::5F79C4D9A66A40EDAAEA8CB024B9E8CE:::5F79C4D9A66A40EDAAEA8CB024B9E8CE",
"PolicyId": "c998c199-1d6c-4bdb-ae93-e2f9d41e4141",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "65be27a7-9fa3-405e-b6ed-a59afcf76654",
"PolicyName": "Test Policy",
"LastInfected": "2025-08-27T07:15:52.8210385Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.94.233.44",
"MACAddress": "12-C0-14-72-B8-D5",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.178.102.186",
"Deactivated": false,
"LastScanSeq": "561285769",
"ModifiedDate": "2025-11-20T07:15:52.8210385Z",
"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>7618b061-e4de-482c-ada0-c7c080850d78</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-06-27T07:15:52.8210385Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>65be27a7-9fa3-405e-b6ed-a59afcf76654</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.94.233.44</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>40036a98-b7e3-43d5-96e2-f6c645f26edc</LastChangesUserId>
<LastInfected>2025-08-27T07:15:52.8210385Z</LastInfected>
<LastPublicIP>95.178.102.186</LastPublicIP>
<LastScanSeq>561285769</LastScanSeq>
<LastSeen>2025-06-27T07:15:52.8210385Z</LastSeen>
<LicenseKey>5596-EE1C-9237-4BBA-B1D3</LicenseKey>
<MACAddress>12-C0-14-72-B8-D5</MACAddress>
<Mac>false</Mac>
<MachineId>298C31AF7CB94613BBCFD4C624C838F7:::5F79C4D9A66A40EDAAEA8CB024B9E8CE:::5F79C4D9A66A40EDAAEA8CB024B9E8CE</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2025-11-20T07:15:52.8210385Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>c998c199-1d6c-4bdb-ae93-e2f9d41e4141</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>