GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/groups/{groupId}
Gets information about a group.
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
gsmKey |
The GSM console keycode. |
string |
Required |
siteId |
The site identifier. |
string |
Required |
groupId |
The group identifier. |
string |
Required |
URI Sample(s)
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/A491-AC8D-4283-440E-B8A7/sites/1910498d-02cd-4e14-8543-6b8732f53e0a/groups/9831818d-fbe8-49da-8264-15a3e6b65f3f
|
Body Parameters
None.
Response Information
Resource Description
Information about the desired group.
GetGroupsResponseModelName | Description | Type | Additional Information |
---|---|---|---|
TotalCount |
Total number of groups available. |
integer |
None. |
Groups |
List of group details records. |
Collection of GetGroupsResponseModel_Group |
None. |
Sample Response
{ "TotalCount": 1, "Groups": [ { "Endpoints": 28, "GroupCode": "-202398181", "GroupId": "51d7b3f8-ef4c-433e-998b-2beced9b4eda", "GroupName": "Test Group 1", "GroupDescription": "Description of test group 1", "GroupPolicyId": "bf7de36c-8191-4f61-ae7e-4fe469ab5c39", "GroupPolicyName": "Test Policy 1" } ] }
<GetGroupsResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <Groups> <GetGroupsResponseModel_Group> <Endpoints>28</Endpoints> <GroupCode>-202398181</GroupCode> <GroupDescription>Description of test group 1</GroupDescription> <GroupId>51d7b3f8-ef4c-433e-998b-2beced9b4eda</GroupId> <GroupName>Test Group 1</GroupName> <GroupPolicyId>bf7de36c-8191-4f61-ae7e-4fe469ab5c39</GroupPolicyId> <GroupPolicyName>Test Policy 1</GroupPolicyName> </GetGroupsResponseModel_Group> </Groups> <TotalCount>1</TotalCount> </GetGroupsResponseModel>