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/BEE9-D7B5-0FC1-4E8B-90E0/sites/037f5322-eda1-4b80-9e63-74a60fb8b1c3/endpoints/1c709f4c-7be1-4750-ad61-6b1888530175
|
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": "113b0459-2a98-46a9-b6ef-caa816ebc23c", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2024-11-19T01:44:52.7091495Z", "LastSeen": "2024-11-19T01:44:52.7091495Z", "AgentVersion": "9.0.13.58", "LicenseKey": "E03F-6A09-ED29-4404-843F", "Expired": false, "LastChangesUserId": "375ff299-16ec-4ec1-8612-d60e4fc0129b", "MachineId": "0C2F84BB008549D0B13156DFA2F38A4B:::898CEFEA561A43D2A833497847E3578E:::898CEFEA561A43D2A833497847E3578E", "PolicyId": "2b547153-5231-4cbe-b3b0-cb54f264f51e", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "214b4f81-4a6e-42e9-a8f4-7d6deb155d4f", "PolicyName": "Test Policy", "LastInfected": "2025-01-19T01:44:52.7091495Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.113.79.236", "MACAddress": "AC-CB-45-E7-02-87", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.24.211.184", "Deactivated": false, "LastScanSeq": "1331974801", "ModifiedDate": "2025-04-12T01:44:52.7091495Z", "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>113b0459-2a98-46a9-b6ef-caa816ebc23c</EndpointId> <Expired>false</Expired> <FirstSeen>2024-11-19T01:44:52.7091495Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>214b4f81-4a6e-42e9-a8f4-7d6deb155d4f</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.113.79.236</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>375ff299-16ec-4ec1-8612-d60e4fc0129b</LastChangesUserId> <LastInfected>2025-01-19T01:44:52.7091495Z</LastInfected> <LastPublicIP>95.24.211.184</LastPublicIP> <LastScanSeq>1331974801</LastScanSeq> <LastSeen>2024-11-19T01:44:52.7091495Z</LastSeen> <LicenseKey>E03F-6A09-ED29-4404-843F</LicenseKey> <MACAddress>AC-CB-45-E7-02-87</MACAddress> <Mac>false</Mac> <MachineId>0C2F84BB008549D0B13156DFA2F38A4B:::898CEFEA561A43D2A833497847E3578E:::898CEFEA561A43D2A833497847E3578E</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-04-12T01:44:52.7091495Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>2b547153-5231-4cbe-b3b0-cb54f264f51e</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>