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/5870-3B74-6767-4C6D-A352/sites/d89a4fd7-09d9-45b9-93a9-bc7c22eba888/endpoints/e04f573d-e9d1-4ba1-84db-e25aaf91c4fa
|
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": "f6a59de3-28b1-4820-af0f-f3f5a22b44f9", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2024-12-19T07:17:02.6480721Z", "LastSeen": "2024-12-19T07:17:02.6480721Z", "AgentVersion": "9.0.13.58", "LicenseKey": "9037-7D4E-C107-4480-B482", "Expired": false, "LastChangesUserId": "6936d54e-0242-4ba0-a296-a3a14d334091", "MachineId": "D6BE1DC9B57443A999D946E1A4B6EA0B:::F684265FDF3B4032B0934D801E9DBB07:::F684265FDF3B4032B0934D801E9DBB07", "PolicyId": "3018e999-e53d-4c9d-82cc-85390d3125b7", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "2f1f191e-1b44-4cf9-867d-94e0306f05da", "PolicyName": "Test Policy", "LastInfected": "2025-02-19T07:17:02.6480721Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.119.222.247", "MACAddress": "05-75-6B-8B-4B-FE", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.223.237.86", "Deactivated": false, "LastScanSeq": "354119390", "ModifiedDate": "2025-05-12T07:17:02.6480721Z", "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>f6a59de3-28b1-4820-af0f-f3f5a22b44f9</EndpointId> <Expired>false</Expired> <FirstSeen>2024-12-19T07:17:02.6480721Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>2f1f191e-1b44-4cf9-867d-94e0306f05da</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.119.222.247</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>6936d54e-0242-4ba0-a296-a3a14d334091</LastChangesUserId> <LastInfected>2025-02-19T07:17:02.6480721Z</LastInfected> <LastPublicIP>95.223.237.86</LastPublicIP> <LastScanSeq>354119390</LastScanSeq> <LastSeen>2024-12-19T07:17:02.6480721Z</LastSeen> <LicenseKey>9037-7D4E-C107-4480-B482</LicenseKey> <MACAddress>05-75-6B-8B-4B-FE</MACAddress> <Mac>false</Mac> <MachineId>D6BE1DC9B57443A999D946E1A4B6EA0B:::F684265FDF3B4032B0934D801E9DBB07:::F684265FDF3B4032B0934D801E9DBB07</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-05-12T07:17:02.6480721Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>3018e999-e53d-4c9d-82cc-85390d3125b7</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>