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": "c3861239-aa40-4d27-b353-168bc3c39850",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "06744fda-b0e1-41e7-966a-9a6bbc252681",
"task": "Task updated",
"description": "Task description updated",
"priority": "medium",
"created_at": "2025-12-15T09:03:07.738-08:00",
"updated_at": "2025-12-15T09:03:08.909-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_role_tasks incident_role_task updated
Show child attributes
Unique ID of the incident task
incident_role_tasks Show child attributes
The task of the incident task
Date of creation
Date of last update
The description of incident task
The priority of the incident task
high, medium, low 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": "c3861239-aa40-4d27-b353-168bc3c39850",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "06744fda-b0e1-41e7-966a-9a6bbc252681",
"task": "Task updated",
"description": "Task description updated",
"priority": "medium",
"created_at": "2025-12-15T09:03:07.738-08:00",
"updated_at": "2025-12-15T09:03:08.909-08:00"
}
}
}