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/204B-C3B6-F5A3-4691-9E54/sites/73218871-847e-43a8-a162-38102e8f6931/endpoints/40d6f4ed-635a-4f29-bc12-dadc7a57d2cc
|
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": "5f375ca2-84bb-4abe-adee-8db0050b5e11",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-11-08T07:14:34.4530544Z",
"LastSeen": "2025-11-08T07:14:34.4530544Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "56BB-31D9-0501-40B3-86C9",
"Expired": false,
"LastChangesUserId": "6c270e6e-6796-45fb-ba50-896ecee3c8bc",
"MachineId": "BE54410D94DF4824910410F743DC5576:::471A65BD089941F2BB8E4EF7103DEFCE:::471A65BD089941F2BB8E4EF7103DEFCE",
"PolicyId": "34688718-3d56-4831-9498-eada4efd02e8",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "e44c5014-a662-4bab-b475-65c5ab76fc1d",
"PolicyName": "Test Policy",
"LastInfected": "2026-01-08T07:14:34.4530544Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.117.121.227",
"MACAddress": "88-FE-7E-DB-FB-33",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.243.207.44",
"Deactivated": false,
"LastScanSeq": "1988123505",
"ModifiedDate": "2026-04-01T07:14:34.4530544Z",
"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>5f375ca2-84bb-4abe-adee-8db0050b5e11</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-11-08T07:14:34.4530544Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>e44c5014-a662-4bab-b475-65c5ab76fc1d</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.117.121.227</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>6c270e6e-6796-45fb-ba50-896ecee3c8bc</LastChangesUserId>
<LastInfected>2026-01-08T07:14:34.4530544Z</LastInfected>
<LastPublicIP>95.243.207.44</LastPublicIP>
<LastScanSeq>1988123505</LastScanSeq>
<LastSeen>2025-11-08T07:14:34.4530544Z</LastSeen>
<LicenseKey>56BB-31D9-0501-40B3-86C9</LicenseKey>
<MACAddress>88-FE-7E-DB-FB-33</MACAddress>
<Mac>false</Mac>
<MachineId>BE54410D94DF4824910410F743DC5576:::471A65BD089941F2BB8E4EF7103DEFCE:::471A65BD089941F2BB8E4EF7103DEFCE</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-04-01T07:14:34.4530544Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>34688718-3d56-4831-9498-eada4efd02e8</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>