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/8B50-526A-7801-4E1B-A791/sites/be178429-c9ae-4f54-b4c3-4d8138178485/groups/ddd6a21a-416d-4a5e-86a3-5f9a30db2866
|
Body Parameters
None.
Response Information
Resource Description
Information about the desired group.
GetGroupsResponseModelName | 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": 84, "GroupCode": "-732812663", "GroupId": "4e90e84a-f13d-416d-935c-d66cfe492d46", "GroupName": "Test Group 1", "GroupDescription": "Description of test group 1", "GroupPolicyId": "5776880b-eee3-4340-918f-d1ab429c3263", "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>84</Endpoints> <GroupCode>-732812663</GroupCode> <GroupDescription>Description of test group 1</GroupDescription> <GroupId>4e90e84a-f13d-416d-935c-d66cfe492d46</GroupId> <GroupName>Test Group 1</GroupName> <GroupPolicyId>5776880b-eee3-4340-918f-d1ab429c3263</GroupPolicyId> <GroupPolicyName>Test Policy 1</GroupPolicyName> </GetGroupsResponseModel_Group> </Groups> <TotalCount>1</TotalCount> </GetGroupsResponseModel>