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/4A6C-EAFC-FFE1-4E46-8B77/sites/b98ff1c5-3f6f-461d-bfd6-2e82dbae355e/endpoints/298629c2-7138-40c2-8a8e-fd25b526ec46
|
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": "9425de27-3a8a-47a6-96e7-c9263103f9f9", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2025-04-18T16:58:41.3916958Z", "LastSeen": "2025-04-18T16:58:41.3916958Z", "AgentVersion": "9.0.13.58", "LicenseKey": "147E-B291-29B6-4A0A-8090", "Expired": false, "LastChangesUserId": "e25c1e69-704c-4642-aaf8-66246a4d3346", "MachineId": "FDDC21E59F474CEDAE84C2F60C216619:::606D38EC60A9409588B033B7CED98AB5:::606D38EC60A9409588B033B7CED98AB5", "PolicyId": "b9670aaa-4b09-4639-9006-be95baf6de2f", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "737a18fa-5a5d-4e64-b044-70d233c9b9e0", "PolicyName": "Test Policy", "LastInfected": "2025-06-18T16:58:41.3916958Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.52.175.67", "MACAddress": "63-7B-52-B6-75-B8", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.212.26.10", "Deactivated": false, "LastScanSeq": "94333810", "ModifiedDate": "2025-09-11T16:58:41.3916958Z", "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>9425de27-3a8a-47a6-96e7-c9263103f9f9</EndpointId> <Expired>false</Expired> <FirstSeen>2025-04-18T16:58:41.3916958Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>737a18fa-5a5d-4e64-b044-70d233c9b9e0</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.52.175.67</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>e25c1e69-704c-4642-aaf8-66246a4d3346</LastChangesUserId> <LastInfected>2025-06-18T16:58:41.3916958Z</LastInfected> <LastPublicIP>95.212.26.10</LastPublicIP> <LastScanSeq>94333810</LastScanSeq> <LastSeen>2025-04-18T16:58:41.3916958Z</LastSeen> <LicenseKey>147E-B291-29B6-4A0A-8090</LicenseKey> <MACAddress>63-7B-52-B6-75-B8</MACAddress> <Mac>false</Mac> <MachineId>FDDC21E59F474CEDAE84C2F60C216619:::606D38EC60A9409588B033B7CED98AB5:::606D38EC60A9409588B033B7CED98AB5</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-09-11T16:58:41.3916958Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>b9670aaa-4b09-4639-9006-be95baf6de2f</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>