PUT
/
v1
/
playbook_tasks
/
{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": "1499528c-54fa-48d4-8e59-38b5f284e5f5",
    "type": "playbook_tasks",
    "attributes": {
      "playbook_id": "9090f8a9-2a56-421c-ab1b-18021e852186",
      "task": "Task updated",
      "description": "Task description updated",
      "position": 2,
      "created_at": "2025-06-19T02:42:45.716-07:00",
      "updated_at": "2025-06-19T02:42:47.905-07: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

Response

200
application/vnd.api+json

playbook_task updated

The response is of type object.