Users
List Users
Retrieves information about all users on the authenticated account.
get/v1/users
Response
OK. Returns a list of User resources containing information about users on the account.
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"
}
}
]