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/E6CB-03A8-B43C-4688-8EC6/sites/38e8978f-ff5f-4c63-93e4-f3953a2becc4/groups/272988db-24c3-431a-ae7b-4353ad3440f2
|
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": 35, "GroupCode": "-282797041", "GroupId": "1661c725-6ede-4b19-9294-dfae6f617cea", "GroupName": "Test Group 1", "GroupDescription": "Description of test group 1", "GroupPolicyId": "1763f88b-e2c4-4aad-b6a9-f0cb24ff8a8c", "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>35</Endpoints> <GroupCode>-282797041</GroupCode> <GroupDescription>Description of test group 1</GroupDescription> <GroupId>1661c725-6ede-4b19-9294-dfae6f617cea</GroupId> <GroupName>Test Group 1</GroupName> <GroupPolicyId>1763f88b-e2c4-4aad-b6a9-f0cb24ff8a8c</GroupPolicyId> <GroupPolicyName>Test Policy 1</GroupPolicyName> </GetGroupsResponseModel_Group> </Groups> <TotalCount>1</TotalCount> </GetGroupsResponseModel>