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": "e76dc57d-839d-4098-a89b-a7f14bf1b84a",
    "type": "playbook_tasks",
    "attributes": {
      "playbook_id": "6ea854a7-3f5f-42cc-b365-91476cc72bbc",
      "task": "Task updated",
      "description": "Task description updated",
      "position": 2,
      "created_at": "2025-05-29T17:46:56.002-07:00",
      "updated_at": "2025-05-29T17:46:58.069-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.