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": "5aadc0b7-fd4d-492a-aaa6-ec6b089e7f9e",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "f18638aa-169c-4853-912c-d20b3746f74e",
"task": "Eaque voluptates qui tempore.",
"description": "Numquam similique qui voluptas.",
"priority": "medium",
"created_at": "2025-09-03T02:22:50.721-07:00",
"updated_at": "2025-09-03T02:22:52.662-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": "5aadc0b7-fd4d-492a-aaa6-ec6b089e7f9e",
"type": "incident_role_tasks",
"attributes": {
"incident_role_id": "f18638aa-169c-4853-912c-d20b3746f74e",
"task": "Eaque voluptates qui tempore.",
"description": "Numquam similique qui voluptas.",
"priority": "medium",
"created_at": "2025-09-03T02:22:50.721-07:00",
"updated_at": "2025-09-03T02:22:52.662-07:00"
}
}
}