Update a specific incident_role task by id
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": "6fd9978d-9658-4584-8240-f3dda48e7c2c",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "fb024295-60d4-4589-970f-d140c03b87e9",
"task": "Task updated",
"description": "Task description updated",
"priority": "medium",
"created_at": "2026-01-14T09:27:12.149-08:00",
"updated_at": "2026-01-14T09:27:13.062-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_role_task updated
Show child attributes
Was this page helpful?
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": "6fd9978d-9658-4584-8240-f3dda48e7c2c",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "fb024295-60d4-4589-970f-d140c03b87e9",
"task": "Task updated",
"description": "Task description updated",
"priority": "medium",
"created_at": "2026-01-14T09:27:12.149-08:00",
"updated_at": "2026-01-14T09:27:13.062-08:00"
}
}
}