POST
/
v1
/
playbooks
/
{playbook_id}
/
playbook_tasks
curl --request POST \
  --url https://api.rootly.com/v1/playbooks/{playbook_id}/playbook_tasks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "playbook_tasks",
    "attributes": {
      "task": "<string>",
      "description": "<string>",
      "position": 123
    }
  }
}'
{
  "data": {
    "id": "1a74b4f9-3c39-48a1-bae6-9d0cfa60d6bd",
    "type": "playbook_tasks",
    "attributes": {
      "playbook_id": "08900879-1613-4a1b-bac6-cf696c14f36a",
      "task": "New task",
      "description": "New task description",
      "position": 1,
      "created_at": "2025-05-08T00:23:13.764-07:00",
      "updated_at": "2025-05-08T00:23:13.764-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

playbook_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json
playbook_task created

The response is of type object.