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/D1EB-F844-3121-40DA-87EA/sites/ab952370-c570-4e07-a170-21eca7b51dc6/endpoints/2dec6d53-858f-4411-ae33-f232979048e0
|
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": "2afa967c-2599-4dc6-861c-c4f68deff782", "HostName": "MyComputer1", "GroupName": "Test Group", "FirstSeen": "2025-03-17T14:11:47.4642092Z", "LastSeen": "2025-03-17T14:11:47.4642092Z", "AgentVersion": "9.0.13.58", "LicenseKey": "0C83-8C71-8987-4F34-BCC9", "Expired": false, "LastChangesUserId": "a7dce263-9f59-4b0b-9769-989d16105496", "MachineId": "670E8D4864BD4852A7DF12E67CC84356:::A6AA72C6F382483AA1A58FCA1EEBC4C4:::A6AA72C6F382483AA1A58FCA1EEBC4C4", "PolicyId": "3224e23d-f32d-4f77-8c1d-cd439bb2ff31", "VM": false, "AgentLanguage": "en", "FriendlyPCName": "", "GroupId": "67c7b8c4-4bf5-4c4b-9e48-1213b42cf84c", "PolicyName": "Test Policy", "LastInfected": "2025-05-17T14:11:47.4642092Z", "InfectedNow": false, "NumUsers": 1, "MaxUsers": 2, "InternalIP": "10.109.22.171", "MACAddress": "43-A6-7C-8C-5C-44", "ADDomain": "domain.webroot.com", "ADOU": "Webroot.Computers", "Workgroup": "WORKGROUP", "CurrentUser": "Paul", "Mac": false, "WindowsFullOS": "Windows 7 Service Pack 1 (Build 7601) 64bit", "LastPublicIP": "95.160.210.35", "Deactivated": false, "LastScanSeq": "459299175", "ModifiedDate": "2025-08-10T14:11:47.4642092Z", "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>2afa967c-2599-4dc6-861c-c4f68deff782</EndpointId> <Expired>false</Expired> <FirstSeen>2025-03-17T14:11:47.4642092Z</FirstSeen> <FriendlyPCName></FriendlyPCName> <GroupId>67c7b8c4-4bf5-4c4b-9e48-1213b42cf84c</GroupId> <GroupName>Test Group</GroupName> <HostName>MyComputer1</HostName> <InfectedNow>false</InfectedNow> <InternalIP>10.109.22.171</InternalIP> <IsolationStatus>UNISOLATED</IsolationStatus> <LastChangesUserId>a7dce263-9f59-4b0b-9769-989d16105496</LastChangesUserId> <LastInfected>2025-05-17T14:11:47.4642092Z</LastInfected> <LastPublicIP>95.160.210.35</LastPublicIP> <LastScanSeq>459299175</LastScanSeq> <LastSeen>2025-03-17T14:11:47.4642092Z</LastSeen> <LicenseKey>0C83-8C71-8987-4F34-BCC9</LicenseKey> <MACAddress>43-A6-7C-8C-5C-44</MACAddress> <Mac>false</Mac> <MachineId>670E8D4864BD4852A7DF12E67CC84356:::A6AA72C6F382483AA1A58FCA1EEBC4C4:::A6AA72C6F382483AA1A58FCA1EEBC4C4</MachineId> <MaxUsers>2</MaxUsers> <ModifiedDate>2025-08-10T14:11:47.4642092Z</ModifiedDate> <NumUsers>1</NumUsers> <PolicyId>3224e23d-f32d-4f77-8c1d-cd439bb2ff31</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>