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/868B-DA01-823C-4B7F-8E00/sites/d04f1711-ab4a-4887-8b4d-1d293755ee39/endpoints/3b33fabc-f65b-46b5-9718-944572e30162
|
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": "bb7bbfa6-c912-47ad-9516-f3e4f2721dda",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2026-01-09T22:08:09.8411443Z",
"LastSeen": "2026-01-09T22:08:09.8411443Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "E898-F676-4F4D-4694-8574",
"Expired": false,
"LastChangesUserId": "efb10556-a400-4c24-bfc2-8f64f52958ce",
"MachineId": "FF26F7189E7B4EC9AD48CB818316EA9C:::D82A696F08884BC585B9E7837D6CA796:::D82A696F08884BC585B9E7837D6CA796",
"PolicyId": "37bf9cec-e0d0-4966-bb9c-e31e75e33a67",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "3324a6bb-5f7e-46b9-a3d0-cb776b985742",
"PolicyName": "Test Policy",
"LastInfected": "2026-03-09T22:08:09.8411443Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.32.89.64",
"MACAddress": "1F-F4-59-31-2F-47",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.50.116.86",
"Deactivated": false,
"LastScanSeq": "1858711846",
"ModifiedDate": "2026-06-02T22:08:09.8411443Z",
"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>bb7bbfa6-c912-47ad-9516-f3e4f2721dda</EndpointId>
<Expired>false</Expired>
<FirstSeen>2026-01-09T22:08:09.8411443Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>3324a6bb-5f7e-46b9-a3d0-cb776b985742</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.32.89.64</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>efb10556-a400-4c24-bfc2-8f64f52958ce</LastChangesUserId>
<LastInfected>2026-03-09T22:08:09.8411443Z</LastInfected>
<LastPublicIP>95.50.116.86</LastPublicIP>
<LastScanSeq>1858711846</LastScanSeq>
<LastSeen>2026-01-09T22:08:09.8411443Z</LastSeen>
<LicenseKey>E898-F676-4F4D-4694-8574</LicenseKey>
<MACAddress>1F-F4-59-31-2F-47</MACAddress>
<Mac>false</Mac>
<MachineId>FF26F7189E7B4EC9AD48CB818316EA9C:::D82A696F08884BC585B9E7837D6CA796:::D82A696F08884BC585B9E7837D6CA796</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-06-02T22:08:09.8411443Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>37bf9cec-e0d0-4966-bb9c-e31e75e33a67</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>