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/6B9B-4CE6-3E24-4FCD-80D2/sites/56085969-a7c7-4490-832a-400201386512/endpoints/dcffb5ff-d924-41f6-b19f-2c4683d14cfa
|
Body Parameters
None.
Response Information
Resource Description
Information about the desired endpoints.
GetEndpointsResponseModelName | 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": "07f7f124-c63e-4571-9863-faa530da6afc", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2025-04-07T02:53:20.4527245Z", "LastSeen": "2025-04-07T02:53:20.4527245Z", "AgentVersion": "9.0.13.58", "LicenseKey": "016D-1A1D-9CEB-4C30-B23E", "Expired": false, "LastChangesUserId": "78ef59b3-1719-4bb1-80e4-d5a138387ec6", "MachineId": "10C02CF655CD4267AEAA004396B1B905:::C69816EDE2C24F0AA28FB62703701A8B:::C69816EDE2C24F0AA28FB62703701A8B", "PolicyId": "8d708f1d-2007-4e7e-b9e3-bec595a8e0ad", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "698ce9b1-3a17-4c64-a156-9bdf4c8908e4", "PolicyName": "Test Policy", "LastInfected": "2025-06-07T02:53:20.4527245Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.124.248.214", "MACAddress": "AF-63-FF-79-9A-76", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.170.2.182", "Deactivated": false, "LastScanSeq": "259808324", "ModifiedDate": "2025-08-31T02:53:20.4527245Z", "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>07f7f124-c63e-4571-9863-faa530da6afc</EndpointId> <Expired>false</Expired> <FirstSeen>2025-04-07T02:53:20.4527245Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>698ce9b1-3a17-4c64-a156-9bdf4c8908e4</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.124.248.214</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>78ef59b3-1719-4bb1-80e4-d5a138387ec6</LastChangesUserId> <LastInfected>2025-06-07T02:53:20.4527245Z</LastInfected> <LastPublicIP>95.170.2.182</LastPublicIP> <LastScanSeq>259808324</LastScanSeq> <LastSeen>2025-04-07T02:53:20.4527245Z</LastSeen> <LicenseKey>016D-1A1D-9CEB-4C30-B23E</LicenseKey> <MACAddress>AF-63-FF-79-9A-76</MACAddress> <Mac>false</Mac> <MachineId>10C02CF655CD4267AEAA004396B1B905:::C69816EDE2C24F0AA28FB62703701A8B:::C69816EDE2C24F0AA28FB62703701A8B</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-08-31T02:53:20.4527245Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>8d708f1d-2007-4e7e-b9e3-bec595a8e0ad</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>