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/1FE7-F70B-AC19-430E-AF10/sites/b0ae61db-186a-4983-aed2-93789b4a3e15/groups/40d26e87-9431-4cf7-8074-1fa9146e8592
|
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": 88,
"GroupCode": "-397060172",
"GroupId": "91bae49a-9e87-47e6-8ffd-a2a1e5fa2935",
"GroupName": "Test Group 1",
"GroupDescription": "Description of test group 1",
"GroupPolicyId": "b6825cc5-ff32-44e6-ac73-60a8ce9fce34",
"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>88</Endpoints>
<GroupCode>-397060172</GroupCode>
<GroupDescription>Description of test group 1</GroupDescription>
<GroupId>91bae49a-9e87-47e6-8ffd-a2a1e5fa2935</GroupId>
<GroupName>Test Group 1</GroupName>
<GroupPolicyId>b6825cc5-ff32-44e6-ac73-60a8ce9fce34</GroupPolicyId>
<GroupPolicyName>Test Policy 1</GroupPolicyName>
</GetGroupsResponseModel_Group>
</Groups>
<TotalCount>1</TotalCount>
</GetGroupsResponseModel>