GET
/{orgId}/{itemId}/community/users/{username}
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
Name | Type | Required |
---|---|---|
token | string¦null |
Path parameters
Name | Type | Required |
---|---|---|
username | string | |
org | string | |
item | string |
Response status
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | success | User |
404 | Not Found | error | WorkflowExceptionDTO |
Examples
Request
# You can also use wget
curl -X GET /{orgId}/{itemId}/community/users/{username} \
-H 'Authorization: Bearer <YOUR_TOKEN>'
Response
{
"username": "string",
"fullName": "string",
"firstName": "string",
"lastName": "string",
"email": "string",
"groups": [
"string"
],
"groupsOwned": [
"string"
],
"roles": [
"string"
],
"privileges": [
"string"
],
"thumbnail": "string"
}