{
"id": "QXBp1001",
"name": "CI pipeline key",
"key_type": "user",
"status": "active",
"key": "ak-abc123def456ghi789jkl012mno345pqr678stu901vwx234yz",
"redacted_key": "ak-abc...xyz",
"created_by_user_id": "Usr1001",
"created_at": "2024-01-15T10:30:00Z",
"expires_at": "2025-01-15T10:30:00Z"
}Atomically revoke an existing API key and issue a replacement with the same metadata (name, description, and key type).
The old key is invalidated and the new key is activated in a single transaction —
there is no window where neither key is valid. The full new key value (key) is
only returned once in the response. Store it securely.
Authorization:
developer user permission flag. Returns 403 when this flag is absent.SERVICE_KEY_CREATE permission and must be the creator of the key.Expiry behaviour: Supply expires_at in the request body to set an expiration
on the replacement key. Omit expires_at (or send an empty body {}) to create
the replacement key with no expiration (infinite lifetime).
{
"id": "QXBp1001",
"name": "CI pipeline key",
"key_type": "user",
"status": "active",
"key": "ak-abc123def456ghi789jkl012mno345pqr678stu901vwx234yz",
"redacted_key": "ak-abc...xyz",
"created_by_user_id": "Usr1001",
"created_at": "2024-01-15T10:30:00Z",
"expires_at": "2025-01-15T10:30:00Z"
}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.
Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format
The unique API key identifier (base64) A universally unique identifier (base64-encoded opaque string).
"RW50aXR5OjEyMzQ1"
Optional body for overriding expiry on a refreshed API key.
Expiration timestamp for the refreshed key. If omitted, the refreshed key has no expiration (infinite lifetime).
"2027-01-01T00:00:00Z"
API key successfully created or refreshed. The raw key is only returned once.
Unique identifier for the API key.
User-defined name for the API key.
Type of the API key.
user, service Current status of the API key.
active, deleted Redacted version of the key suitable for display (e.g., "ak-abc...xyz").
Timestamp when the key was created.
ID of the user who created the key.
The full API key value. Only returned once at creation or refresh time. Store it securely — it cannot be retrieved again.
Optional user-defined description for the API key.
Optional timestamp when the key will expire.
Was this page helpful?
Suggestions