POST
/{orgId}/{itemId}/community/groups/{groupId}Update the information of an organization group. Workflow Manager roles can be added to or deleted from an organization group. The adminAdvanced privilege is required.
Query parameters
| Name | Type | Required |
|---|---|---|
token | string¦null |
Body parameters
Supported content types: application/json
Type: GroupRoleMembershipChanges
Updated information to be applied to the organization group.
| Name | Type | Required |
|---|---|---|
adds | GroupRoleMembership | |
deletes | GroupRoleMembership |
Path parameters
| Name | Type | Required |
|---|---|---|
group | string | |
org | string | |
item | string |
Response status
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | success | Success |
| 404 | Not Found | error | WorkflowExceptionDTO |
Examples
Request
# You can also use wget
curl -X POST /{orgId}/{itemId}/community/groups/{groupId} \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR_TOKEN>' \
--data '{"adds":{"roles":["string"]},"deletes":{"roles":["string"]}}'Response
{
"success": true
}