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/7D61-640C-8FD3-44A8-BF7C/sites/3cdf4f73-1fd5-4668-923a-3b2b5e2687c4/groups/70fd3c86-f4dd-4dce-b486-bc24d4fbd75e
|
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": 59,
"GroupCode": "-267426245",
"GroupId": "01040dc8-63a9-4b5e-aae3-818520d4de76",
"GroupName": "Test Group 1",
"GroupDescription": "Description of test group 1",
"GroupPolicyId": "9d5fd5e8-258a-4415-9eba-759f12661eb8",
"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>59</Endpoints>
<GroupCode>-267426245</GroupCode>
<GroupDescription>Description of test group 1</GroupDescription>
<GroupId>01040dc8-63a9-4b5e-aae3-818520d4de76</GroupId>
<GroupName>Test Group 1</GroupName>
<GroupPolicyId>9d5fd5e8-258a-4415-9eba-759f12661eb8</GroupPolicyId>
<GroupPolicyName>Test Policy 1</GroupPolicyName>
</GetGroupsResponseModel_Group>
</Groups>
<TotalCount>1</TotalCount>
</GetGroupsResponseModel>