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/0A59-7587-9E72-48A8-89ED/sites/da6a0cc7-6054-4e48-9abf-c4a067f7504b/groups/b86b0025-abd9-475f-94db-dd79c08e820b
|
Body Parameters
None.
Response Information
Resource Description
Information about the desired group.
GetGroupsResponseModel| Name | 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": 32,
"GroupCode": "-114891538",
"GroupId": "ab914d56-4da0-41bc-a9fb-176193a6ae8a",
"GroupName": "Test Group 1",
"GroupDescription": "Description of test group 1",
"GroupPolicyId": "04b078e2-223d-4e8f-b074-140f88a2e80b",
"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>32</Endpoints>
<GroupCode>-114891538</GroupCode>
<GroupDescription>Description of test group 1</GroupDescription>
<GroupId>ab914d56-4da0-41bc-a9fb-176193a6ae8a</GroupId>
<GroupName>Test Group 1</GroupName>
<GroupPolicyId>04b078e2-223d-4e8f-b074-140f88a2e80b</GroupPolicyId>
<GroupPolicyName>Test Policy 1</GroupPolicyName>
</GetGroupsResponseModel_Group>
</Groups>
<TotalCount>1</TotalCount>
</GetGroupsResponseModel>