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/22EE-CF10-6043-4ECC-918A/sites/31faba0d-0411-47ee-bc71-5fa713c07939/endpoints/c742c6b9-b055-4a7d-8f2e-290fd61f9140
|
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": "ee396508-1ec8-41af-86b6-24531ce3a00c", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2024-12-30T17:57:07.7254528Z", "LastSeen": "2024-12-30T17:57:07.7254528Z", "AgentVersion": "9.0.13.58", "LicenseKey": "AAA1-870F-F068-4A86-BDF9", "Expired": false, "LastChangesUserId": "a09bd9b0-877d-4045-b3cd-d48eae218eda", "MachineId": "4CD48470C0914547B61AD8C95EFA9103:::1BD3B343F0E841B7830094B45A113F8A:::1BD3B343F0E841B7830094B45A113F8A", "PolicyId": "6dc99bcb-daf8-4f97-a199-7884067701bf", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "ad1cc657-6f2d-47cb-9d9d-6cc27d949a6b", "PolicyName": "Test Policy", "LastInfected": "2025-02-28T17:57:07.7254528Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.32.144.118", "MACAddress": "D4-57-36-D0-CF-F2", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.169.148.55", "Deactivated": false, "LastScanSeq": "1532713264", "ModifiedDate": "2025-05-23T17:57:07.7254528Z", "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>ee396508-1ec8-41af-86b6-24531ce3a00c</EndpointId> <Expired>false</Expired> <FirstSeen>2024-12-30T17:57:07.7254528Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>ad1cc657-6f2d-47cb-9d9d-6cc27d949a6b</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.32.144.118</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>a09bd9b0-877d-4045-b3cd-d48eae218eda</LastChangesUserId> <LastInfected>2025-02-28T17:57:07.7254528Z</LastInfected> <LastPublicIP>95.169.148.55</LastPublicIP> <LastScanSeq>1532713264</LastScanSeq> <LastSeen>2024-12-30T17:57:07.7254528Z</LastSeen> <LicenseKey>AAA1-870F-F068-4A86-BDF9</LicenseKey> <MACAddress>D4-57-36-D0-CF-F2</MACAddress> <Mac>false</Mac> <MachineId>4CD48470C0914547B61AD8C95EFA9103:::1BD3B343F0E841B7830094B45A113F8A:::1BD3B343F0E841B7830094B45A113F8A</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-05-23T17:57:07.7254528Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>6dc99bcb-daf8-4f97-a199-7884067701bf</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>