User Role Assignments
List users
List all users in the account.
get/cloud/v1/users
Query parameters
limitinteger
Limit the number of returned items. Falls back to default of 1000 if not specified. Limited by max limit value of 1000
Example:100
Limit the number of returned items. Falls back to default of 1000 if not specified. Limited by max limit value of 1000
offsetinteger
Offset value is used to exclude the first set of records from the result
Offset value is used to exclude the first set of records from the result
user_idinteger
User ID for filtering
Example:123
User ID for filtering
Response
OK
Example response
{
"count": 1,
"results": [
{
"activated": true,
"email": "johnsmith@gmail.com",
"id": 123,
"is_admin": true,
"name": "John"
}
]
}