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/5B57-16D2-A03E-4A14-A5F7/sites/9e58cbde-3f85-4587-8f7f-f0565c2c413f/groups/99369079-140c-4dd6-a95a-d12bbaf5d2f9
|
Body Parameters
Additional information for editing a group.
EditGroupRequestModelName | Description | Type | Additional Information |
---|---|---|---|
Inheritance |
Value defining which policy should take effect, if a policy is specified.
Note: Inheritance value 3 is no longer supported and behaves as if 0 was specified. If you used value 3 before, it is recommended to switch to value 0 instead. |
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": "e1b1c08a-60c8-4dce-bcbe-8078ff08e4a6" }
<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>e1b1c08a-60c8-4dce-bcbe-8078ff08e4a6</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).