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": "e4364728-bc1d-4c26-b831-d07e11319621",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "9ff2b5c2-e669-4453-b519-ca933d0e4f56",
"service_id": "3ace5cf0-e014-4d0d-8ee3-7a6fc8ff835c",
"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": "e4364728-bc1d-4c26-b831-d07e11319621",
"type": "incident_event_services",
"attributes": {
"incident_event_id": "9ff2b5c2-e669-4453-b519-ca933d0e4f56",
"service_id": "3ace5cf0-e014-4d0d-8ee3-7a6fc8ff835c",
"status": "partial_outage"
}
}
}