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 updated
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": "ccdbc1cf-6a9a-4611-b64b-fc21c77d0c29",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "876ec01c-8e2b-46b9-bdc7-4df67871c860",
"task": "Task updated",
"description": "Task description updated",
"position": 2,
"created_at": "2025-09-18T09:20:59.119-07:00",
"updated_at": "2025-09-18T09:21:01.172-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
playbook_task updated
Show child attributes
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": "ccdbc1cf-6a9a-4611-b64b-fc21c77d0c29",
"type": "playbook_tasks",
"attributes": {
"playbook_id": "876ec01c-8e2b-46b9-bdc7-4df67871c860",
"task": "Task updated",
"description": "Task description updated",
"position": 2,
"created_at": "2025-09-18T09:20:59.119-07:00",
"updated_at": "2025-09-18T09:21:01.172-07:00"
}
}
}