Skip to content

getWorkflowGroups

GET
Use dark colors for code blocksCopy
1
/{orgId}/{itemId}/community/groups
Get all organization groups associated with Workflow Manager roles.

Get all organization groups associated with Workflow Manager roles and indicates whether the current user can assign work based on their Workflow Manager assignment privileges.

  • If the user has the jobAssignAny privilege, all groups associated with Workflow Manager roles will be assignable.
  • If the user has jobAssignGroup or jobAssignIndividual privileges, all the groups that the user is a member of and are associated with Workflow Manager roles will be assignable.

Query parameters

NameTypeRequired
tokenstring¦null

Path parameters

NameTypeRequired
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

success

inline
404Not Found

invalid role

WorkflowExceptionDTO

Response details

Status Code 200

Groups

NameTypeRequiredDescription
groups[Group]

Examples

Request

Use dark colors for code blocksCopy
1
2
3
# You can also use wget
curl -X GET /{orgId}/{itemId}/community/groups \
  -H 'Authorization: Bearer <YOUR_TOKEN>'

Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
{
  "groups": [
    {
      "id": "string",
      "name": "string",
      "isAssignable": true,
      "thumbnail": "string"
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.