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": "60eafb34-4e7b-430a-9953-ff1ce8ca6f07",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "f686b159-5f98-48af-abf2-18bd3c6c0586",
"task": "Task updated",
"description": "Task description updated",
"priority": "medium",
"created_at": "2026-02-03T13:44:14.699-08:00",
"updated_at": "2026-02-03T13:44:15.779-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": "60eafb34-4e7b-430a-9953-ff1ce8ca6f07",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "f686b159-5f98-48af-abf2-18bd3c6c0586",
"task": "Task updated",
"description": "Task description updated",
"priority": "medium",
"created_at": "2026-02-03T13:44:14.699-08:00",
"updated_at": "2026-02-03T13:44:15.779-08:00"
}
}
}