GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/endpoints/{endpointId}

Gets information about an endpoint.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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/1973-094C-A50E-4F41-9861/sites/12146619-f51f-4105-9f9b-fe888b9a0955/endpoints/57f892a8-8014-4d3f-8954-8b8b1b3e23dc

Body Parameters

None.

Response Information

Resource Description

Information about the desired endpoints.

GetEndpointsResponseModel
NameDescriptionTypeAdditional 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": "95ca0ea1-35ca-4b06-bba6-37916a24fce0",
      "HostName": "MyComputer1",
      "GroupName": "Test Group",
      "FirstSeen": "2023-11-20T01:58:35.3878008Z",
      "LastSeen": "2023-11-20T01:58:35.3878008Z",
      "AgentVersion": "9.0.13.58",
      "LicenseKey": "2D82-25ED-2FFE-488C-873E",
      "Expired": false,
      "LastChangesUserId": "71842ee3-d70c-4f58-a0ef-59f7a8e3a9c8",
      "MachineId": "981FFA9FDC274533BD4B034EBE1DBB50:::C3DC2899C7E046E7805319A458B73BF3:::C3DC2899C7E046E7805319A458B73BF3",
      "PolicyId": "4b1cd031-20ea-4694-aa92-a9f4085b1257",
      "VM": false,
      "AgentLanguage": "en",
      "FriendlyPCName": "",
      "GroupId": "1d73f61d-c08d-4973-b1a1-a8869302fb18",
      "PolicyName": "Test Policy",
      "LastInfected": "2024-01-20T01:58:35.3878008Z",
      "InfectedNow": false,
      "NumUsers": 1,
      "MaxUsers": 2,
      "InternalIP": "10.89.145.29",
      "MACAddress": "23-59-CE-3E-A5-86",
      "ADDomain": "domain.webroot.com",
      "ADOU": "Webroot.Computers",
      "Workgroup": "WORKGROUP",
      "CurrentUser": "Paul",
      "Mac": false,
      "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit",
      "LastPublicIP": "95.236.62.112",
      "Deactivated": false,
      "LastScanSeq": "1313412683",
      "ModifiedDate": "2024-04-13T01:58:35.3878008Z"
    }
  ]
}                    
<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>
      <AgentLanguage>en</AgentLanguage>
      <AgentVersion>9.0.13.58</AgentVersion>
      <CurrentUser>Paul</CurrentUser>
      <Deactivated>false</Deactivated>
      <EndpointId>95ca0ea1-35ca-4b06-bba6-37916a24fce0</EndpointId>
      <Expired>false</Expired>
      <FirstSeen>2023-11-20T01:58:35.3878008Z</FirstSeen>
      <FriendlyPCName></FriendlyPCName>
      <GroupId>1d73f61d-c08d-4973-b1a1-a8869302fb18</GroupId>
      <GroupName>Test Group</GroupName>
      <HostName>MyComputer1</HostName>
      <InfectedNow>false</InfectedNow>
      <InternalIP>10.89.145.29</InternalIP>
      <LastChangesUserId>71842ee3-d70c-4f58-a0ef-59f7a8e3a9c8</LastChangesUserId>
      <LastInfected>2024-01-20T01:58:35.3878008Z</LastInfected>
      <LastPublicIP>95.236.62.112</LastPublicIP>
      <LastScanSeq>1313412683</LastScanSeq>
      <LastSeen>2023-11-20T01:58:35.3878008Z</LastSeen>
      <LicenseKey>2D82-25ED-2FFE-488C-873E</LicenseKey>
      <MACAddress>23-59-CE-3E-A5-86</MACAddress>
      <Mac>false</Mac>
      <MachineId>981FFA9FDC274533BD4B034EBE1DBB50:::C3DC2899C7E046E7805319A458B73BF3:::C3DC2899C7E046E7805319A458B73BF3</MachineId>
      <MaxUsers>2</MaxUsers>
      <ModifiedDate>2024-04-13T01:58:35.3878008Z</ModifiedDate>
      <NumUsers>1</NumUsers>
      <PolicyId>4b1cd031-20ea-4694-aa92-a9f4085b1257</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>