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/E9C0-C8C1-8144-4558-B03A/sites/2724004b-820a-41f2-ade3-700a397e29f6/groups/090005ad-8eb9-4022-a698-d78b3e0d974a
|
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": 46, "GroupCode": "-963147158", "GroupId": "a3458c8e-723c-47c4-a1a6-b418521cb636", "GroupName": "Test Group 1", "GroupDescription": "Description of test group 1", "GroupPolicyId": "4ca6a0db-b104-4668-9b64-4248ec36280f", "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>46</Endpoints> <GroupCode>-963147158</GroupCode> <GroupDescription>Description of test group 1</GroupDescription> <GroupId>a3458c8e-723c-47c4-a1a6-b418521cb636</GroupId> <GroupName>Test Group 1</GroupName> <GroupPolicyId>4ca6a0db-b104-4668-9b64-4248ec36280f</GroupPolicyId> <GroupPolicyName>Test Policy 1</GroupPolicyName> </GetGroupsResponseModel_Group> </Groups> <TotalCount>1</TotalCount> </GetGroupsResponseModel>