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": {}
}
'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": {}
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response