getUser

Click to copy

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

token

string

Path parameters

NameTypeRequired

username

string

orgId

string

itemId

string

Examples

Request

Use dark colors for code blocksCopy
1
2
3
4
# You can also use wget
curl -X GET /{orgId}/{itemId}/community/users/{username} \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

Response

200 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"
}
StatusMeaningDescriptionSchema

200

OK

success

User

404

Not Found

error

WorkflowExceptionDTO

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