Skip to main content
POST
/
v1
/
deploy-tokens
curl -X POST https://api.quintai.dev/v1/deploy-tokens \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_SUPABASE_JWT" \
  -d '{"name": "dev-machine-01"}'
{
  "id": "a1b2c3d4-5678-9012-abcd-ef3456789012",
  "name": "dev-machine-01",
  "token": "qt_deploy_9f8e7d6c5b4a3f2e1d0c9b8a7f6e5d4c",
  "created_at": "2026-04-12T14:00:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://quintsecurity.mintlify.app/llms.txt

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

Requires Authorization: Bearer header with a Supabase JWT.
The raw deploy token value is returned only once in the response. It is SHA-256 hashed before storage and cannot be retrieved again. Save it immediately.

Request Body

name
string
required
Human-readable name for this token (e.g., dev-machine-01, production-fleet).

Response

id
string
Token record UUID.
name
string
The name assigned to this token.
token
string
The raw deploy token (with qt_deploy_ prefix). Save this immediately — it will not be shown again.
created_at
datetime
When the token was created.
curl -X POST https://api.quintai.dev/v1/deploy-tokens \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_SUPABASE_JWT" \
  -d '{"name": "dev-machine-01"}'
{
  "id": "a1b2c3d4-5678-9012-abcd-ef3456789012",
  "name": "dev-machine-01",
  "token": "qt_deploy_9f8e7d6c5b4a3f2e1d0c9b8a7f6e5d4c",
  "created_at": "2026-04-12T14:00:00Z"
}