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/D369-5380-C690-4981-834E/sites/7b5759ab-27e7-4ba6-a2cc-aad971c94354/groups/ceb20331-f3b7-488e-a70a-32cca248fbc3
|
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": 83, "GroupCode": "-558972317", "GroupId": "c7fc42d3-71c3-4363-b7e6-8adbf0828954", "GroupName": "Test Group 1", "GroupDescription": "Description of test group 1", "GroupPolicyId": "4e6bb943-a2bb-4807-9623-269ebd910626", "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>83</Endpoints> <GroupCode>-558972317</GroupCode> <GroupDescription>Description of test group 1</GroupDescription> <GroupId>c7fc42d3-71c3-4363-b7e6-8adbf0828954</GroupId> <GroupName>Test Group 1</GroupName> <GroupPolicyId>4e6bb943-a2bb-4807-9623-269ebd910626</GroupPolicyId> <GroupPolicyName>Test Policy 1</GroupPolicyName> </GetGroupsResponseModel_Group> </Groups> <TotalCount>1</TotalCount> </GetGroupsResponseModel>