Update a user
Update a user’s display name and/or developer permission.
Payload Requirements
- At least one of
nameoris_developermust be provided. namemust be 1–255 characters. Leading and trailing whitespace is stripped before validation; whitespace-only values (e.g." ") are rejected with 400.- Setting
is_developerto its current value is a no-op (idempotent).
Example valid requests:
{ "name": "Jane Smith" }
{ "is_developer": true }
{ "name": "Jane Smith", "is_developer": false }
Example invalid requests:
{}— at least one field must be provided{ "name": " " }— name cannot be whitespace only
Updating name requires account admin role or USER_UPDATE permission.
Updating is_developer requires account admin role. Callers without account admin that include
is_developer in the body receive 403.
Authorizations
Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format
Path Parameters
The unique user identifier (base64) A universally unique identifier (base64-encoded opaque string).
"RW50aXR5OjEyMzQ1"
Body
Body containing user update parameters. At least one field must be provided.
Response
An account user object
An account user represents a member of the account. Users can be listed, updated, or removed from the account.
A universally unique identifier (base64-encoded opaque string).
"RW50aXR5OjEyMzQ1"
Display name of the user
An email address
"user@example.com"
Timestamp for when the user was created
Current status of the user in the account.
active: User has verified their email and can access the platform.invited: User has been invited and their verification token is still valid.expired: User was invited but their verification token has expired or is missing. A new invite is required.
active, invited, expired An account-level role assignment. Discriminated by type:
predefined: one of the predefined roles (admin,member,annotator)custom: a custom RBAC role identified by its ID
Note: custom role assignments are not yet supported and are reserved for future use.
- Option 1
- Option 2
Whether the user has developer permissions (can use the Arize API)