Skip to content

getWorkflowUsers

GET
Use dark colors for code blocksCopy
1
/{orgId}/{itemId}/community/users
Get all users available to a user in the workflow system

Get organization users associated with Workflow Manager roles, to which the current user can assign work based on their Workflow Manager assignment privileges. Returns the users' user name, full name, first name, last name, email, thumbnail, and whether they can be assigned work based on the current user's Workflow Manager assignment privileges.

  • If the user has jobAssignAny privilege all users associated with Workflow Manager roles will be returned and indicated as assignable.
  • If the user has jobAssignGroup privilege all the users from the groups that the user is a member of and are associated with Workflow Manager roles will be assignable.
  • If the user has jobAssignIndividual privilege the current user is indicated as assignable.

Query parameters

NameTypeRequired
tokenstring¦null

Path parameters

NameTypeRequired
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

List of assignable users for a user in the workflow system

inline
404Not Found

error

WorkflowExceptionDTO

Response details

Status Code 200

UserDescriptions

NameTypeRequiredDescription
users[UserDescription]

Examples

Request

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

Response

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "users": [
    {
      "username": "string",
      "fullName": "string",
      "firstName": "string",
      "lastName": "string",
      "email": "string",
      "thumbnail": "string",
      "isAssignable": true
    }
  ]
}

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