Delete a specific incident event service by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_event_services/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7633e163-e623-417a-850c-f6aae13960b3",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "acf4c126-7bef-4e8c-8bcd-52567c876ccc",
"service_id": "dedb1fce-5348-472c-a346-26dee2fd9999",
"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_services/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "7633e163-e623-417a-850c-f6aae13960b3",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "acf4c126-7bef-4e8c-8bcd-52567c876ccc",
"service_id": "dedb1fce-5348-472c-a346-26dee2fd9999",
"status": "partial_outage"
}
}
}