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/3BA4-78DF-DC64-4611-93DF/sites/f3dab4ef-3a45-439b-a7ec-30f6367e9626/endpoints/82dc01e4-d3ac-498f-a40d-63773ae02ea5
|
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": "e0e137fa-9a26-4e81-b6a7-bc0908b57265", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2022-09-09T05:27:24.0794867Z", "LastSeen": "2022-09-09T05:27:24.0794867Z", "AgentVersion": "9.0.13.58", "LicenseKey": "C9F8-F5FE-9FC0-4E41-85A9", "Expired": false, "LastChangesUserId": "9e2ad58a-e467-4f6f-bac9-dfc49911c2fe", "MachineId": "E9BFD1B03D2F49009BABDA47670B9174:::99E1C9F42CA245438EC2288BBBF41EB4:::99E1C9F42CA245438EC2288BBBF41EB4", "PolicyId": "7990d7e4-a61f-4897-8f09-f4b122e636b6", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "d41aefa0-02a5-4cc8-9256-5766005ad9ac", "PolicyName": "Test Policy", "LastInfected": "2022-11-09T05:27:24.0794867Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.88.22.62", "MACAddress": "B9-C9-9F-36-4A-1F", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.226.80.13", "Deactivated": false, "LastScanSeq": "505030234", "ModifiedDate": "2023-02-02T05:27:24.0794867Z" } ] }
<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>e0e137fa-9a26-4e81-b6a7-bc0908b57265</EndpointId> <Expired>false</Expired> <FirstSeen>2022-09-09T05:27:24.0794867Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>d41aefa0-02a5-4cc8-9256-5766005ad9ac</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.88.22.62</InternalIP> <LastChangesUserId>9e2ad58a-e467-4f6f-bac9-dfc49911c2fe</LastChangesUserId> <LastInfected>2022-11-09T05:27:24.0794867Z</LastInfected> <LastPublicIP>95.226.80.13</LastPublicIP> <LastScanSeq>505030234</LastScanSeq> <LastSeen>2022-09-09T05:27:24.0794867Z</LastSeen> <LicenseKey>C9F8-F5FE-9FC0-4E41-85A9</LicenseKey> <MACAddress>B9-C9-9F-36-4A-1F</MACAddress> <Mac>false</Mac> <MachineId>E9BFD1B03D2F49009BABDA47670B9174:::99E1C9F42CA245438EC2288BBBF41EB4:::99E1C9F42CA245438EC2288BBBF41EB4</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2023-02-02T05:27:24.0794867Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>7990d7e4-a61f-4897-8f09-f4b122e636b6</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>