Skip to main content
POST
/
v1
/
workspaces
/
{workspace_id}
/
credentials
Store a credential in the workspace vault
curl --request POST \
  --url https://api.usezombie.com/v1/workspaces/{workspace_id}/credentials \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "data": {}
}
'
{
  "name": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.usezombie.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Obtain a token via the CLI auth flow (POST /v1/auth/sessions) or GitHub OAuth

Path Parameters

workspace_id
string<uuid>
required

UUIDv7 of the workspace.

Body

application/json
name
string
required

Credential identifier referenced from a zombie's credentials: list.

Maximum string length: 64
data
object
required

JSON object whose top-level keys are the field names a skill references via ${secrets.<name>.<field>}. The runtime never inspects the schema — this is opaque to the platform.

Response

Created

name
string