Skip to main content
PUT
/
v1
/
incident_role_tasks
/
{id}
Update an incident role task
curl --request PUT \
  --url https://api.rootly.com/v1/incident_role_tasks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_role_tasks",
    "attributes": {
      "task": "<string>",
      "description": "<string>",
      "priority": "high"
    }
  }
}'
{
  "data": {
    "id": "4bc91f37-895f-494d-938b-f7f903b299d3",
    "type": "incident_role_tasks",
    "attributes": {
      "incident_role_id": "dff26baf-cc8b-42e7-ae68-84dcf40e16f8",
      "task": "Task updated",
      "description": "Task description updated",
      "priority": "medium",
      "created_at": "2025-10-07T00:19:42.890-07:00",
      "updated_at": "2025-10-07T00:19:43.966-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
data
object
required

Response

incident_role_task updated

data
object
required
I