Skip to main content
PUT
/
v1
/
playbook_tasks
/
{id}
Update a playbook task
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": "102e6e25-f33e-44ee-b6b6-1044da03d374",
    "type": "playbook_tasks",
    "attributes": {
      "playbook_id": "3aac5368-38ee-47df-84b6-df9c070e16d0",
      "task": "Task updated",
      "description": "Task description updated",
      "position": 2,
      "created_at": "2026-02-03T20:02:50.480-08:00",
      "updated_at": "2026-02-03T20:02:51.298-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json
data
object
required

Response

playbook_task updated

data
object
required