Documentation Index
Fetch the complete documentation index at: https://arize-ax.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
The
users functions are currently in ALPHA. The API may change without notice. A one-time warning is emitted on first use.List Users
Results are sorted by creation date ascending (oldest first). Requires account admin role, member role, orUSER_READ permission.
Create a User
Create a new account user with explicit invite control. Idempotent onemail when inviteMode !== "none". Requires account admin role or USER_CREATE permission.
Invite Modes
| Mode | Behavior |
|---|---|
none | Pre-provision the user directly (no invitation email). For SSO-only accounts. |
email_link | Send a verification link via email. |
temporary_password | Issue a one-time password returned in the response. User must reset it on first login. |
Get a User
Requires account admin role, member role, orUSER_READ permission.
Update a User
Update the display name and/or developer permission. At least one ofname or isDeveloper must be provided. Requires account admin role or USER_UPDATE permission.
Delete a User
Permanently blocks the user from the account (sets status toinactive, a terminal state). Cascades to organization memberships, space memberships, API keys, and role bindings. Blocked users cannot be re-invited. Callers cannot delete themselves. Requires account admin role or USER_DELETE permission.
Resend Invitation
Regenerate the verification token and resend the invitation email. The target user must be in theinvited state. Returns 400 if the user has already verified their account or if SAML/IdP login is enforced. Requires account admin role or USER_CREATE permission.
Reset Password
Trigger a password-reset email for a user. Generates a reset token and sends an email with a 30-minute link. Returns 400 if the user authenticates via SSO/SAML or has not yet verified their account. Requires account admin role orUSER_UPDATE permission.