Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
playbook_task created
Creates a new task from provided data
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": "d5ae99cf-550e-4323-9584-890069383194",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "c9689023-9de3-4ace-884c-d4c60e2991a7",
"task": "New task",
"description": "New task description",
"position": 1,
"created_at": "2025-11-14T13:16:57.631-08:00",
"updated_at": "2025-11-14T13:16:57.631-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
playbook_task created
Show child attributes
Was this page helpful?
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": "d5ae99cf-550e-4323-9584-890069383194",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "c9689023-9de3-4ace-884c-d4c60e2991a7",
"task": "New task",
"description": "New task description",
"position": 1,
"created_at": "2025-11-14T13:16:57.631-08:00",
"updated_at": "2025-11-14T13:16:57.631-08:00"
}
}
}