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/4EA5-E3F7-3797-4CDB-9A13/sites/6c83cf40-bad5-4d37-82a3-75170de9292e/groups/0f120f18-92d3-4826-b66e-31bbbab15e0d
|
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": 33, "GroupCode": "-547179378", "GroupId": "d9b72eab-a88c-4684-8722-193fd15de03b", "GroupName": "Test Group 1", "GroupDescription": "Description of test group 1", "GroupPolicyId": "45e2b64d-0c5d-4d69-b74e-39659efc1e7c", "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>33</Endpoints> <GroupCode>-547179378</GroupCode> <GroupDescription>Description of test group 1</GroupDescription> <GroupId>d9b72eab-a88c-4684-8722-193fd15de03b</GroupId> <GroupName>Test Group 1</GroupName> <GroupPolicyId>45e2b64d-0c5d-4d69-b74e-39659efc1e7c</GroupPolicyId> <GroupPolicyName>Test Policy 1</GroupPolicyName> </GetGroupsResponseModel_Group> </Groups> <TotalCount>1</TotalCount> </GetGroupsResponseModel>