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/6450-D23E-C6F0-4BA9-87E4/sites/f3c822a5-e46a-4562-8c0a-147f80c58820/endpoints/0a86f3f0-e133-4bdf-aa53-6a18c22a79fa
|
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": "8446ea80-4557-4abb-aedc-a4389a1a3f8d", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2025-02-02T18:03:36.5402619Z", "LastSeen": "2025-02-02T18:03:36.5402619Z", "AgentVersion": "9.0.13.58", "LicenseKey": "6697-87D9-23E0-4480-BCA9", "Expired": false, "LastChangesUserId": "a7e18340-b400-4890-b473-5def0c7e7f43", "MachineId": "4A1845D4CCFF43FCAB187B11A19403AC:::B80C9CB57AC04E91957227C6F001B2FF:::B80C9CB57AC04E91957227C6F001B2FF", "PolicyId": "8d43be34-dd52-4f0a-b16b-df6872281bc9", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "41e871b1-d9a2-42d4-ae8e-a293a4fc0490", "PolicyName": "Test Policy", "LastInfected": "2025-04-02T18:03:36.5402619Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.235.53.95", "MACAddress": "6D-3A-A0-D1-B9-1B", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.15.129.181", "Deactivated": false, "LastScanSeq": "1477523932", "ModifiedDate": "2025-06-25T18:03:36.5402619Z", "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>8446ea80-4557-4abb-aedc-a4389a1a3f8d</EndpointId> <Expired>false</Expired> <FirstSeen>2025-02-02T18:03:36.5402619Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>41e871b1-d9a2-42d4-ae8e-a293a4fc0490</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.235.53.95</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>a7e18340-b400-4890-b473-5def0c7e7f43</LastChangesUserId> <LastInfected>2025-04-02T18:03:36.5402619Z</LastInfected> <LastPublicIP>95.15.129.181</LastPublicIP> <LastScanSeq>1477523932</LastScanSeq> <LastSeen>2025-02-02T18:03:36.5402619Z</LastSeen> <LicenseKey>6697-87D9-23E0-4480-BCA9</LicenseKey> <MACAddress>6D-3A-A0-D1-B9-1B</MACAddress> <Mac>false</Mac> <MachineId>4A1845D4CCFF43FCAB187B11A19403AC:::B80C9CB57AC04E91957227C6F001B2FF:::B80C9CB57AC04E91957227C6F001B2FF</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-06-25T18:03:36.5402619Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>8d43be34-dd52-4f0a-b16b-df6872281bc9</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>