PUT /service/api/console/gsm/{gsmKey}/sites/{siteId}/groups/{groupId}
Edits 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 |
| groupId |
The group identifier. |
string |
Required |
URI Sample(s)
|
PUT
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/87F8-8781-5E4A-46EF-A6F6/sites/751d1d0f-7fa5-42a5-9109-2aefa0b94043/groups/1b5a8a06-7698-42a8-86c5-fb2d793de9cc
|
Body Parameters
Additional information for editing a group.
EditGroupRequestModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| Inheritance |
Value defining which policy should take effect, if a policy is specified.
|
integer |
None. |
| GroupName |
The name of the group. |
string |
None. |
| GroupDescription |
The description of the group. |
string |
None. |
| PolicyId |
The id of the policy that should be applied to the group. |
string |
None. |
Sample Request
{
"Inheritance": 0,
"GroupName": "Renamed test group",
"GroupDescription": "Description of renamed test group",
"PolicyId": "e8f30ca0-feba-4e79-ae41-840bd9f16350"
}
<EditGroupRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <GroupDescription>Description of renamed test group</GroupDescription> <GroupName>Renamed test group</GroupName> <Inheritance>0</Inheritance> <PolicyId>e8f30ca0-feba-4e79-ae41-840bd9f16350</PolicyId> </EditGroupRequestModel>
Response Information
Resource Description
None. If successful, this API action does not return any data and the response status code will be 204 (No Content).