Modify information about a user group with the specified ID.
/uam/acmUserGroup/{id}
Path parameters | |
---|---|
id |
User group ID.
Long integer type. Required. No default value. |
<acmUserGroup>
<description>Test user group.</description>
<operator>1</operator>
<operator>2</operator>
<operator>3</operator>
</acmUserGroup>
acmUserGroup sub-elements | |
---|---|
description |
User group description
String type. Optional. No default value. The string cannot exceed 127 characters.
|
operator |
ID of the operator who has the privilege to the current user group
Long integer type. Optional. No default value. For an operator who has the privilege to all user groups, the operator has the privilege to the current group by default even if the operator is not specified for the group.
|
Error codes | |
---|---|
69404 | The operator does not exist. |
Modify information about the user group with ID 4.
PUT http://inc_host:8080/imcrs/uam/acmUserGroup/4 accept: application/xml ... <acmUserGroup>
<name>test</name>
<description>Test user group.</description>
<parentId>2</parentId>
<operator>1</operator>
<operator>2</operator>
<operator>3</operator>
</acmUserGroup>
HTTP/1.1 204 No Content ...