Skip to main content
POST
/
playbooks
Create a playbook
curl --request POST \
  --url https://app.gc.ai/api/external/v1/playbooks \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Vendor NDA review",
  "description": "<string>",
  "guide": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "description": "<string>",
  "guide": "<string>",
  "is_official": true,
  "created_at": "<string>",
  "updated_at": "<string>"
}

Authorizations

Authorization
string
header
required

API key for authentication. Format: gcai_xxxxxxxxx

Create API keys in the GC AI app under Settings → API.

Body

application/json
title
string
required

Playbook title (required, non-empty).

Minimum string length: 1
Example:

"Vendor NDA review"

description
string | null

Optional human-facing description.

guide
string | null

Optional free-text guidance applied across the whole playbook when it runs.

Response

Playbook created

id
string<uuid>
required

Unique playbook identifier

title
string
required

Playbook title

description
string | null
required

Playbook description, or null if unset

guide
string | null
required

Free-text guidance applied across the whole playbook when it runs, or null if unset.

is_official
boolean
required

Whether this is an official GC AI playbook

status
enum<string>
required

Playbook processing status

Available options:
draft,
processing,
completed,
failed
created_at
string | null
required

ISO 8601 creation timestamp

updated_at
string | null
required

ISO 8601 last-update timestamp