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/BF04-6B11-E8D9-43B9-A535/sites/210db5cd-3f98-435b-a6b4-0dff897461f3/endpoints/4038837a-ca74-4847-8ba3-6e2591e3f59b
|
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": "aced1f41-6e8a-4b06-a912-1f89892fd58d", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2024-12-09T18:11:25.597053Z", "LastSeen": "2024-12-09T18:11:25.597053Z", "AgentVersion": "9.0.13.58", "LicenseKey": "9D15-063A-47DB-456C-AF78", "Expired": false, "LastChangesUserId": "8767b14a-a4fc-49c8-8e07-04613bb9fb12", "MachineId": "DCB102DDE0424F2B9E5FE5D8ECF034F1:::69201873BBA748F7870A0CDC5A7B17A4:::69201873BBA748F7870A0CDC5A7B17A4", "PolicyId": "d9a97c1d-156d-439b-80b7-77bc17fd648e", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "c9aa67a4-8056-4daa-898d-cf4f26f42ef5", "PolicyName": "Test Policy", "LastInfected": "2025-02-09T18:11:25.597053Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.59.121.109", "MACAddress": "BC-87-95-B2-A5-21", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.143.15.148", "Deactivated": false, "LastScanSeq": "1496114622", "ModifiedDate": "2025-05-02T18:11:25.597053Z", "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>aced1f41-6e8a-4b06-a912-1f89892fd58d</EndpointId> <Expired>false</Expired> <FirstSeen>2024-12-09T18:11:25.597053Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>c9aa67a4-8056-4daa-898d-cf4f26f42ef5</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.59.121.109</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>8767b14a-a4fc-49c8-8e07-04613bb9fb12</LastChangesUserId> <LastInfected>2025-02-09T18:11:25.597053Z</LastInfected> <LastPublicIP>95.143.15.148</LastPublicIP> <LastScanSeq>1496114622</LastScanSeq> <LastSeen>2024-12-09T18:11:25.597053Z</LastSeen> <LicenseKey>9D15-063A-47DB-456C-AF78</LicenseKey> <MACAddress>BC-87-95-B2-A5-21</MACAddress> <Mac>false</Mac> <MachineId>DCB102DDE0424F2B9E5FE5D8ECF034F1:::69201873BBA748F7870A0CDC5A7B17A4:::69201873BBA748F7870A0CDC5A7B17A4</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-05-02T18:11:25.597053Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>d9a97c1d-156d-439b-80b7-77bc17fd648e</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>