UpdateAccountUserRequest
Request schema for updating a user in an account
emailstring<email>
The user's email address.
first_namestring
The user's first name.
last_namestring
The user's last name.
passiveboolean
Whether this user is passive. Passive users do not receive direct email notifications (e.g., OAuth reconnection notices). Use this for platform/headless scenarios where the platform handles user communication.
role_idsstring[]
List of role IDs to assign to the user. Replaces all existing role assignments.
Possible values: Value must match regular expression ^role_\w{12}$
time_zonestring
The user's time zone.
UpdateAccountUserRequest
{
"email": "john.doe@example.com",
"first_name": "John",
"last_name": "Doe",
"passive": true,
"role_ids": [
"role_abc123def456"
],
"time_zone": "America/Chicago"
}