Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create and manage API access tokens
GET /api/v1/api-tokens
[ { "id": "tok_a1b2c3d4", "name": "ci-deploy", "scopes": ["apps:write"], "last_used_at": "2024-01-20T15:00:00Z", "created_at": "2024-01-15T10:30:00Z" } ]
POST /api/v1/api-tokens
{ "name": "ci-deploy", "scopes": ["apps:read", "apps:write"] }
201 Created
{ "id": "tok_a1b2c3d4", "name": "ci-deploy", "token": "dkc_live_abc123def456...", "scopes": ["apps:read", "apps:write"], "created_at": "2024-01-15T10:30:00Z" }
token
DELETE /api/v1/api-tokens/{id}