GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/groups/{groupId}

Gets information about a group.

Request Information

URI Parameters

NameDescriptionTypeAdditional 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/2DB0-5F0A-2741-4BE6-8C60/sites/4a8f0676-81b4-47a2-a761-c01648bdda5b/groups/d1828256-4830-4417-b4ad-6eb22753269e

Body Parameters

None.

Response Information

Resource Description

Information about the desired group.

GetGroupsResponseModel
NameDescriptionTypeAdditional 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": 10,
      "GroupCode": "-721335154",
      "GroupId": "69fc8b1c-f650-4d55-8c6a-e2d43cedfcb7",
      "GroupName": "Test Group 1",
      "GroupDescription": "Description of test group 1",
      "GroupPolicyId": "a132c95e-e558-48c9-895c-363805d1b7a0",
      "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>10</Endpoints>
      <GroupCode>-721335154</GroupCode>
      <GroupDescription>Description of test group 1</GroupDescription>
      <GroupId>69fc8b1c-f650-4d55-8c6a-e2d43cedfcb7</GroupId>
      <GroupName>Test Group 1</GroupName>
      <GroupPolicyId>a132c95e-e558-48c9-895c-363805d1b7a0</GroupPolicyId>
      <GroupPolicyName>Test Policy 1</GroupPolicyName>
    </GetGroupsResponseModel_Group>
  </Groups>
  <TotalCount>1</TotalCount>
</GetGroupsResponseModel>