Users
Get User
Retrieves information about the requested user. The requested user must be on the authenticated account.
get/v1/users/{id}
Path parameters
idnumber required
ID of the user to be retrieved.
Response
OK. Returns with a User resource containing information about the user.
Example response
{
"accountId": 100,
"enabled": true,
"email": "john-doe@example.com",
"name": "John Doe",
"userId": 101,
"username": "johndoe",
"roles": [
"billing-admin",
"team-admin"
],
"avatar": {
"type": "url",
"link": "https://www.gravatar.com/avatar/00000000000000000000000000000000?s=200&d=404"
}
}