cURL
curl --request PUT \ --url http://{host}:{port}/{contextPath}/group/{id} \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "id": "sales", "name": "Sales", "type": "Organizational Unit" } '
{ "type": "<string>", "message": "<string>", "code": 123 }
Updates a given group by id.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The id of the group.
The name of the group.
The type of the group.
Request successful. No content.