POST /service/api/console/gsm/{gsmKey}/sites/{siteId}/groups
Creates a group under a given GSM site.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| gsmKey |
The GSM console keycode. |
string |
Required |
| siteId |
The site identifier. |
string |
Required |
URI Sample(s)
|
POST
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/45A5-6FA6-6762-4803-99B9/sites/7146a1b0-761b-408f-b9c2-3a55c31c4d18/groups
|
Body Parameters
Additional information for creating a new group.
CreateGroupRequestModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| GroupName |
The name of the group. Maximum of 50 characters is allowed. |
string |
Required |
| GroupDescription |
The description of the group. Maximum of 50 characters is allowed. |
string |
Required |
| PolicyId |
The id of the policy applied to the group. If not specified, the default policy will be applied. |
string |
None. |
Sample Request
{
"GroupName": "Test Group",
"GroupDescription": "Description of test group",
"PolicyId": "3b23e756-b1bf-4a2a-9304-437b37fb0aa6"
}
<CreateGroupRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <GroupDescription>Description of test group</GroupDescription> <GroupName>Test Group</GroupName> <PolicyId>3b23e756-b1bf-4a2a-9304-437b37fb0aa6</PolicyId> </CreateGroupRequestModel>
Response Information
Resource Description
Information about the created group.
CreateGroupResponseModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| GroupId |
The id of the group that has been created. |
string |
None. |
Sample Response
{
"GroupId": "5c01ec78-607d-466c-9e62-b337b8ccc208"
}
<CreateGroupResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <GroupId>5c01ec78-607d-466c-9e62-b337b8ccc208</GroupId> </CreateGroupResponseModel>