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/A7B5-7A32-6826-491D-9D6A/sites/54e543c3-f3a5-4c3d-9ca7-5781a8fffd91/groups/133bd638-6aa3-4549-8660-0c59b9c71dfd
|
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": 64,
"GroupCode": "-469311863",
"GroupId": "32c84576-0e25-4076-a15e-17d87126e03e",
"GroupName": "Test Group 1",
"GroupDescription": "Description of test group 1",
"GroupPolicyId": "f6d33e14-f3d0-449d-8c8c-85ca5c398e6f",
"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>64</Endpoints>
<GroupCode>-469311863</GroupCode>
<GroupDescription>Description of test group 1</GroupDescription>
<GroupId>32c84576-0e25-4076-a15e-17d87126e03e</GroupId>
<GroupName>Test Group 1</GroupName>
<GroupPolicyId>f6d33e14-f3d0-449d-8c8c-85ca5c398e6f</GroupPolicyId>
<GroupPolicyName>Test Policy 1</GroupPolicyName>
</GetGroupsResponseModel_Group>
</Groups>
<TotalCount>1</TotalCount>
</GetGroupsResponseModel>