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/743A-746D-5C7C-4D43-9A30/sites/254fc3b2-c9cb-4795-a134-455fdfdcbf3a/groups/9bfcd92c-235c-4a87-9b41-aceb0e659a19
|
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": 80, "GroupCode": "-264970614", "GroupId": "dea82e77-cf1c-4d59-b8e1-e419866fed95", "GroupName": "Test Group 1", "GroupDescription": "Description of test group 1", "GroupPolicyId": "e2fa9211-472e-4e26-8589-5f14447cc669", "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>80</Endpoints> <GroupCode>-264970614</GroupCode> <GroupDescription>Description of test group 1</GroupDescription> <GroupId>dea82e77-cf1c-4d59-b8e1-e419866fed95</GroupId> <GroupName>Test Group 1</GroupName> <GroupPolicyId>e2fa9211-472e-4e26-8589-5f14447cc669</GroupPolicyId> <GroupPolicyName>Test Policy 1</GroupPolicyName> </GetGroupsResponseModel_Group> </Groups> <TotalCount>1</TotalCount> </GetGroupsResponseModel>