User by ID

Get a single User Profile by User ID

SecurityOAuth2
Request
path Parameters
userId
required
string <uuid> = 36 characters

The User Identifier to User Profile data for.

Example: 4e428628-2537-40b5-91a4-5393cbf167df
header Parameters
content-type
string
Example: application/json
Authorization
string
Example: Bearer <token>
Responses
200

Successful Request. Get User Profile Result Returned.

400

One or more required parameters are missing or invalid.

401

Authentication failed (unauthorized).

403

Forbidden. You do not have permissions to perform this action, or your connection information is not correct.

503

The server is too busy to handle the request.

get/users/{userId}
Request samples
Response samples
application/json
{
  • "id": "7d675ef0-f423-11e9-8071-89c0c4052141",
  • "username": "richard.hendricks",
  • "email": "richard@piedpiper.com",
  • "firstName": "Richard",
  • "lastName": "Hendricks",
  • "friendlyName": "Richard Hendricks",
  • "company": "Pied Piper",
  • "country": "USA",
  • "phone": "18884562317",
  • "contact": "Jian Yang",
  • "role": {
    },
  • "status": "enabled",
  • "accountType": "local",
  • "groups": [
    ]
}