Skip to main content
PUT
Error
This endpoint is available in Bifrost Enterprise only.
Required Permissions How permissions work

Authorizations

Authorization
string
header
required

Management API authentication for /api/* endpoints. Use the Authorization header with Bearer <token>, where <token> is one of:

  • a Bifrost management API key,
  • a dashboard session token issued by POST /api/session/login,
  • base64 of <admin-username>:<admin-password> (legacy equivalent of BasicAuth).

Virtual keys (sk-bf-*) and the x-api-key header are not accepted on management APIs - the sole exception is GET /api/governance/virtual-keys/quota, which is virtual-key-only.

Authentication alone is not sufficient in Bifrost Enterprise: each operation page shows a Required Permissions table (Resource:Operation, for example Dashboard:View) above its Authorizations section, and the caller's RBAC role or management API key scopes must include what it lists, otherwise the request is rejected with 403 Forbidden.

A local admin — authenticated with the admin password, or any caller on a deployment with dashboard auth disabled — bypasses these checks and can call every management endpoint. See Required permissions for how permissions are derived and which endpoints are exempt.

Path Parameters

id
integer<uint>
required

API key id.

Body

application/json

Update body for a management API key. Every field is optional; the key value itself can never be changed here.

name
string

New name for the key. Omit it, or send an empty string, to keep the current name.

description
string | null

Note about what the key is for. This field is always applied, so omitting it clears any existing description — send the current value to preserve it.

scopes
integer<uint>[]

Replaces the key's scopes in full. Omit to leave the current scopes unchanged. Permission ids come from GET /api/governance/rbac/permissions, and you can only grant permissions you hold yourself.

expires_at

New expiry. Send an RFC3339 timestamp to set one, an empty string to remove an existing expiry, or omit the field to leave it unchanged.

Response

The updated API key

api_key
object

A management API key. The key value itself is never returned after creation — only the truncated key_prefix is, so keys can be told apart in a list.