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/DD79-70C4-C61B-4C73-839E/sites/71d00e0d-1d19-4c1c-b482-72553b4c7805/groups/ae6398e3-138a-4316-b88d-c4446981634f
|
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": 73,
"GroupCode": "-409136453",
"GroupId": "219b83b4-c168-43e5-a866-3a8effe427ad",
"GroupName": "Test Group 1",
"GroupDescription": "Description of test group 1",
"GroupPolicyId": "9daac18c-91ec-4d15-ba01-4b62fcbb257d",
"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>73</Endpoints>
<GroupCode>-409136453</GroupCode>
<GroupDescription>Description of test group 1</GroupDescription>
<GroupId>219b83b4-c168-43e5-a866-3a8effe427ad</GroupId>
<GroupName>Test Group 1</GroupName>
<GroupPolicyId>9daac18c-91ec-4d15-ba01-4b62fcbb257d</GroupPolicyId>
<GroupPolicyName>Test Policy 1</GroupPolicyName>
</GetGroupsResponseModel_Group>
</Groups>
<TotalCount>1</TotalCount>
</GetGroupsResponseModel>