v49

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-261319281.7 MB

Update Credential

post/v1/vaults/{vault_id}/credentials/{credential_id}?beta=true

Path parameters

vault_idstring required

Path parameter vault_id

credential_idstring required

Path parameter credential_id

Headers

anthropic-versionstring
anthropic-betastring

Request body

display_namestring nullable

Updated human-readable name for the credential. 1-255 characters.

metadataobject nullable

Metadata patch. Set a key to a string to upsert it, or to null to delete it. Omitted keys are preserved.

Example request

{
  "display_name": "Example credential",
  "metadata": {
    "environment": "production"
  }
}

Response

Successful response (OK)

type'vault_credential' required
idstring required

Unique identifier for the credential.

vault_idstring required

Identifier of the vault this credential belongs to.

display_namestring nullable

Human-readable name for the credential.

metadataobject required

Arbitrary key-value metadata attached to the credential.

created_atstring date-time required

A timestamp in RFC 3339 format

updated_atstring date-time required

A timestamp in RFC 3339 format

archived_atstring date-time required

A timestamp in RFC 3339 format

Example response

{
  "type": "vault_credential",
  "id": "vcrd_011CZkZEMt8gZan2iYOQfSkw",
  "vault_id": "vlt_011CZkZDLs7fYzm1hXNPeRjv",
  "display_name": "Example credential",
  "metadata": {
    "environment": "production"
  },
  "created_at": "2026-03-15T10:00:00Z",
  "updated_at": "2026-03-15T10:00:00Z",
  "archived_at": null,
  "auth": {
    "type": "static_bearer",
    "mcp_server_url": "https://example-server.modelcontextprotocol.io/sse"
  }
}