Skip to content

getUser

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

Returns the user profile for a user including the username, full name, first name, last name, email, groups, roles, privileges associated with the user, and thumbnail. Only users that are associated to a group that are associated to a Workflow Manager role are returned.

Query parameters

NameTypeRequired
tokenstring¦null

Path parameters

NameTypeRequired
usernamestring
orgIdstring
itemIdstring

Response status

StatusMeaningDescriptionSchema
200OK

success

User
404Not Found

error

WorkflowExceptionDTO

Examples

Request

Use dark colors for code blocksCopy
1
2
3
# You can also use wget
curl -X GET /{orgId}/{itemId}/community/users/{username} \
  -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
14
15
16
17
18
19
20
{
  "username": "string",
  "fullName": "string",
  "firstName": "string",
  "lastName": "string",
  "email": "string",
  "groups": [
    "string"
  ],
  "groupsOwned": [
    "string"
  ],
  "roles": [
    "string"
  ],
  "privileges": [
    "string"
  ],
  "thumbnail": "string"
}

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