GET
/{orgId}/{itemId}/community/groups/{groupId}
Get the organization group information from the workflow system. It returns a list of roles that are assigned to the organization group.
Query parameters
Name | Type | Required |
---|---|---|
token | string¦null |
Path parameters
Name | Type | Required |
---|---|---|
group | string | |
org | string | |
item | string |
Response status
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | success | GroupRoleMembership |
404 | Not Found | error | WorkflowExceptionDTO |
Examples
Request
# You can also use wget
curl -X GET /{orgId}/{itemId}/community/groups/{groupId} \
-H 'Authorization: Bearer <YOUR_TOKEN>'
Response
{
"roles": [
"string"
]
}