AccountUsersResponse
Response schema for multiple account users
data object[]
The account users details
String representing the object's type.
Possible values: [account_user]
Whether this user is passive. Passive users do not receive direct email notifications (e.g., OAuth reconnection notices).
roles object[]required
The roles assigned to the user in this account.
Unique identifier for the role.
Possible values: Value must match regular expression ^role_\w{12}$
The name of the role.
String representing the object's type.
Possible values: [role]
The type of the role.
Possible values: [admin, staff, developer, superuser, custom]
user objectrequired
This is an object representing a user of the app.
Time at which the object was created.
The user's email address.
The user's first name.
Unique identifier for the object.
Possible values: Value must match regular expression ^user_\w{12}$
The user's last name.
String representing the object's type.
Possible values: [user]
Time at which the object was last updated.
{
"data": [
{
"object": "account_user",
"passive": false,
"roles": [
{
"id": "role_123456789012",
"name": "Admin",
"object": "role",
"type": "admin"
}
],
"user": {
"created_at": "2025-03-15T13:01:08Z",
"email": "avery@tendermedical.com",
"first_name": "Avery",
"id": "user_d025a96ac0c6",
"last_name": "Evans",
"object": "user",
"updated_at": "2025-03-15T13:01:08Z"
}
}
]
}