Credentials
credentials
Methods
post/v5/credentials
Create a new credential for storing sensitive data like API keys, tokens, or other secrets.
get/v5/credentials/{credential_id}
Retrieve a specific credential by its unique identifier.
get/v5/credentials/name/{credential_name}
Retrieve a specific credential by its name.
post/v5/credentials/{credential_id}/secret
Retrieve the plaintext payload of a credential by its ID.
path Parameters
credential_id: string
Response fields
Request example
200Example
post/v5/credentials/name/{credential_name}/secret
Retrieve the plaintext payload of a credential by its name.
get/v5/credentials
Retrieve a paginated list of all credentials for the current account with optional name filtering.
patch/v5/credentials/{credential_id}
Update an existing credential's properties including name, description, type, payload, and metadata.
Delete Credential -> { id, deleted, object }
delete/v5/credentials/{credential_id}
Permanently delete a credential and all its associated data.
Domain types
Credential = { id, created_at, created_by_identity_type, 7 more... }
CredentialSecret = { result, object }