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/628B-B426-2399-409B-BB35/sites/3a25cc5f-b5e3-4ecb-9f09-ad00c1f02619/endpoints/cf4064a9-d6e7-47b6-a412-32f4d1319725
|
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": "b4fdff3f-6a6a-4e97-b351-cc0bfa992ac3",
"HostName": "MyComputer1",
"GroupName": "Test Group",
"FirstSeen": "2025-10-10T18:45:56.8221692Z",
"LastSeen": "2025-10-10T18:45:56.8221692Z",
"AgentVersion": "9.0.13.58",
"LicenseKey": "3D91-44B6-73B7-49FE-9D4F",
"Expired": false,
"LastChangesUserId": "4fbe0252-695f-40f9-a889-04117335116b",
"MachineId": "16CE49FB263C4922B954C3E82765091F:::EBA8F280B4C342B6852BCDC6153BC6DC:::EBA8F280B4C342B6852BCDC6153BC6DC",
"PolicyId": "6bb41744-793b-457e-993a-0cba39febf36",
"VM": false,
"AgentLanguage": "en",
"FriendlyPCName": "",
"GroupId": "c508e67f-96ad-4b2b-8446-d603a63231fe",
"PolicyName": "Test Policy",
"LastInfected": "2025-12-10T18:45:56.8221692Z",
"InfectedNow": false,
"NumUsers": 1,
"MaxUsers": 2,
"InternalIP": "10.20.117.161",
"MACAddress": "AF-28-03-1E-DF-DF",
"ADDomain": "domain.webroot.com",
"ADOU": "Webroot.Computers",
"Workgroup": "WORKGROUP",
"CurrentUser": "Paul",
"Mac": false,
"WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
"LastPublicIP": "95.157.253.186",
"Deactivated": false,
"LastScanSeq": "2051631897",
"ModifiedDate": "2026-03-03T18:45:56.8221692Z",
"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>b4fdff3f-6a6a-4e97-b351-cc0bfa992ac3</EndpointId>
<Expired>false</Expired>
<FirstSeen>2025-10-10T18:45:56.8221692Z</FirstSeen>
<FriendlyPCName></FriendlyPCName>
<GroupId>c508e67f-96ad-4b2b-8446-d603a63231fe</GroupId>
<GroupName>Test Group</GroupName>
<HostName>MyComputer1</HostName>
<InfectedNow>false</InfectedNow>
<InternalIP>10.20.117.161</InternalIP>
<IsolationStatus>UNISOLATED</IsolationStatus>
<LastChangesUserId>4fbe0252-695f-40f9-a889-04117335116b</LastChangesUserId>
<LastInfected>2025-12-10T18:45:56.8221692Z</LastInfected>
<LastPublicIP>95.157.253.186</LastPublicIP>
<LastScanSeq>2051631897</LastScanSeq>
<LastSeen>2025-10-10T18:45:56.8221692Z</LastSeen>
<LicenseKey>3D91-44B6-73B7-49FE-9D4F</LicenseKey>
<MACAddress>AF-28-03-1E-DF-DF</MACAddress>
<Mac>false</Mac>
<MachineId>16CE49FB263C4922B954C3E82765091F:::EBA8F280B4C342B6852BCDC6153BC6DC:::EBA8F280B4C342B6852BCDC6153BC6DC</MachineId>
<MaxUsers>2</MaxUsers>
<ModifiedDate>2026-03-03T18:45:56.8221692Z</ModifiedDate>
<NumUsers>1</NumUsers>
<PolicyId>6bb41744-793b-457e-993a-0cba39febf36</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>