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": "9422daed-b726-41ec-8556-02074cf38a70",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "421a1794-752d-4754-9dec-e9b7f4695234",
"functionality_id": "9e6d2247-7a58-4b21-aaa1-a36a0544177e",
"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": "9422daed-b726-41ec-8556-02074cf38a70",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "421a1794-752d-4754-9dec-e9b7f4695234",
"functionality_id": "9e6d2247-7a58-4b21-aaa1-a36a0544177e",
"status": "partial_outage"
}
}
}