Update a specific playbook task by id
curl --request PUT \
--url https://api.rootly.com/v1/playbook_tasks/{id} \
--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": "43fb5a99-cbac-4fd4-9a85-40d5a2da8a48",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "8a16ceb5-5009-4797-a105-11986d7822af",
"task": "Task updated",
"description": "Task description updated",
"position": 2,
"created_at": "2025-09-10T23:03:30.954-07:00",
"updated_at": "2025-09-10T23:03:32.323-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
playbook_task updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/playbook_tasks/{id} \
--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": "43fb5a99-cbac-4fd4-9a85-40d5a2da8a48",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "8a16ceb5-5009-4797-a105-11986d7822af",
"task": "Task updated",
"description": "Task description updated",
"position": 2,
"created_at": "2025-09-10T23:03:30.954-07:00",
"updated_at": "2025-09-10T23:03:32.323-07:00"
}
}
}