Delete a specific incident_role task by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_role_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3b707cbc-1814-470d-9156-1e6935945ff8",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "653a0c95-8828-4005-bf87-73bee8a3892e",
"task": "Ipsum est dolorem incidunt.",
"description": "Dolor sed pariatur iusto.",
"priority": "medium",
"created_at": "2025-07-23T09:44:37.418-07:00",
"updated_at": "2025-07-23T09:44:39.118-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_role_task deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_role_tasks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3b707cbc-1814-470d-9156-1e6935945ff8",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "653a0c95-8828-4005-bf87-73bee8a3892e",
"task": "Ipsum est dolorem incidunt.",
"description": "Dolor sed pariatur iusto.",
"priority": "medium",
"created_at": "2025-07-23T09:44:37.418-07:00",
"updated_at": "2025-07-23T09:44:39.118-07:00"
}
}
}