Delete a specific incident event functionality by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_event_functionalities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3e5d3f61-e772-433c-bff7-38b2357a8c35",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "f15b6d02-1068-4fef-ac32-26a24c3f71bd",
"functionality_id": "c911631f-8285-4ad4-9897-42a7a48306e9",
"status": "partial_outage"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_event deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_event_functionalities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3e5d3f61-e772-433c-bff7-38b2357a8c35",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "f15b6d02-1068-4fef-ac32-26a24c3f71bd",
"functionality_id": "c911631f-8285-4ad4-9897-42a7a48306e9",
"status": "partial_outage"
}
}
}