Delete a specific playbook task by id
curl --request DELETE \
--url https://api.rootly.com/v1/playbook_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b5d66e37-3da8-4dfa-a3a0-22e116e8def6",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "0203a35d-2d87-4c64-9b55-f90bb72307aa",
"task": "Labore repudiandae eius et.",
"description": "Ea et in delectus.",
"position": 3,
"created_at": "2025-09-04T12:41:42.103-07:00",
"updated_at": "2025-09-04T12:41:43.932-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
playbook_task deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/playbook_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b5d66e37-3da8-4dfa-a3a0-22e116e8def6",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "0203a35d-2d87-4c64-9b55-f90bb72307aa",
"task": "Labore repudiandae eius et.",
"description": "Ea et in delectus.",
"position": 3,
"created_at": "2025-09-04T12:41:42.103-07:00",
"updated_at": "2025-09-04T12:41:43.932-07:00"
}
}
}