Skip to main content
POST
/
v1
/
orgs
/
{org_id}
/
playbooks
Create a playbook
curl --request POST \
  --url http://localhost:3000/v1/orgs/{org_id}/playbooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "name": "<string>",
  "is_active": true,
  "file_name": "<string>",
  "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

Body

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

Response

200

Default Response