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": "9c841ccb-8fe7-4910-908d-7b0325eac41f",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "2cd9d177-59e0-4192-bb21-ab873d0f6e93",
"functionality_id": "d02e5565-5d48-4ad1-a2e6-7e39d8a9f508",
"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": "9c841ccb-8fe7-4910-908d-7b0325eac41f",
"type": "incident_event_functionalities",
"attributes": {
"incident_event_id": "2cd9d177-59e0-4192-bb21-ab873d0f6e93",
"functionality_id": "d02e5565-5d48-4ad1-a2e6-7e39d8a9f508",
"status": "partial_outage"
}
}
}