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/86BF-12CE-C35A-4EC0-81A5/sites/c4cef4c5-dc9d-4fd7-aeee-9147bac91fd2/endpoints/2f28b3e9-7293-4604-8a6b-c3611d4201fb
|
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": "2a6eb766-185c-4044-8a4e-f711c638246c",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-08-07T00:43:15.9529875Z",
"LastSeen": "2025-08-07T00:43:15.9529875Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "FEF7-E016-751D-428B-BF95",
"Expired": false,
"LastChangesUserId": "718a7b4f-f4c0-41b1-8daf-5bdaa10cab43",
"MachineId": "C99996F41BE1409B947DC7A41D5CA416:::4FAC539D7BE24D4E80BE39333BBD9DD6:::4FAC539D7BE24D4E80BE39333BBD9DD6",
"PolicyId": "df6a0df9-836b-47dc-8b8e-8e7d738aaf89",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "94b61df3-d412-4a9d-b3f0-ce0c9a411749",
"PolicyName": "Test Policy",
"LastInfected": "2025-10-07T00:43:15.9529875Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.165.92.69",
"MACAddress": "E4-58-C7-B8-57-BD",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.0.65.192",
"Deactivated": false,
"LastScanSeq": "405902549",
"ModifiedDate": "2025-12-31T00:43:15.9529875Z",
"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>2a6eb766-185c-4044-8a4e-f711c638246c</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-08-07T00:43:15.9529875Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>94b61df3-d412-4a9d-b3f0-ce0c9a411749</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.165.92.69</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>718a7b4f-f4c0-41b1-8daf-5bdaa10cab43</LastChangesUserId>
<LastInfected>2025-10-07T00:43:15.9529875Z</LastInfected>
<LastPublicIP>95.0.65.192</LastPublicIP>
<LastScanSeq>405902549</LastScanSeq>
<LastSeen>2025-08-07T00:43:15.9529875Z</LastSeen>
<LicenseKey>FEF7-E016-751D-428B-BF95</LicenseKey>
<MACAddress>E4-58-C7-B8-57-BD</MACAddress>
<Mac>false</Mac>
<MachineId>C99996F41BE1409B947DC7A41D5CA416:::4FAC539D7BE24D4E80BE39333BBD9DD6:::4FAC539D7BE24D4E80BE39333BBD9DD6</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2025-12-31T00:43:15.9529875Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>df6a0df9-836b-47dc-8b8e-8e7d738aaf89</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>