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/94C7-7290-28E0-438F-9D9B/sites/93097da6-8f37-4168-8874-a8e0c232c97e/endpoints/af8bf207-2bb9-49e1-a50c-673204f0ccc3
|
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": "44cba758-bc58-41f7-9d0e-e22a7d6a7728", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2025-02-10T06:12:57.3829697Z", "LastSeen": "2025-02-10T06:12:57.3829697Z", "AgentVersion": "9.0.13.58", "LicenseKey": "247E-41C9-A881-4D21-9B2C", "Expired": false, "LastChangesUserId": "211a98fe-1689-4076-b69b-c0a371a67da3", "MachineId": "C8D554A0400348BCB4A4BB7B4B993633:::51272B2B0B8841059C0821D83C4088EC:::51272B2B0B8841059C0821D83C4088EC", "PolicyId": "1537278e-d3dd-41e8-be84-a61438c4ef05", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "5f8db312-60ca-4082-bf9c-4e8bba07cff4", "PolicyName": "Test Policy", "LastInfected": "2025-04-10T06:12:57.3829697Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.43.110.204", "MACAddress": "6B-62-98-18-C6-20", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.137.211.102", "Deactivated": false, "LastScanSeq": "562954920", "ModifiedDate": "2025-07-03T06:12:57.3829697Z", "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>44cba758-bc58-41f7-9d0e-e22a7d6a7728</EndpointId> <Expired>false</Expired> <FirstSeen>2025-02-10T06:12:57.3829697Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>5f8db312-60ca-4082-bf9c-4e8bba07cff4</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.43.110.204</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>211a98fe-1689-4076-b69b-c0a371a67da3</LastChangesUserId> <LastInfected>2025-04-10T06:12:57.3829697Z</LastInfected> <LastPublicIP>95.137.211.102</LastPublicIP> <LastScanSeq>562954920</LastScanSeq> <LastSeen>2025-02-10T06:12:57.3829697Z</LastSeen> <LicenseKey>247E-41C9-A881-4D21-9B2C</LicenseKey> <MACAddress>6B-62-98-18-C6-20</MACAddress> <Mac>false</Mac> <MachineId>C8D554A0400348BCB4A4BB7B4B993633:::51272B2B0B8841059C0821D83C4088EC:::51272B2B0B8841059C0821D83C4088EC</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-07-03T06:12:57.3829697Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>1537278e-d3dd-41e8-be84-a61438c4ef05</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>