Skip to main content
PATCH
/
v1
/
orgs
/
{org_id}
/
playbooks
/
{id}
Update a playbook (bumps version on content change)
curl --request PATCH \
  --url http://localhost:3000/v1/orgs/{org_id}/playbooks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "content": "<string>",
  "is_active": true,
  "metadata": {}
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org_id
string
required
id
string<uuid>
required

Body

application/json
name
string | null
Maximum string length: 200
content
string
Required string length: 1 - 500000
is_active
boolean
metadata
object

Response

200

Default Response