DELETE/v2/outages/{outage_uuid}

Delete a manual incident

Deletes a manual incident from your project.

⚠️Warning

This action is irreversible. Only manual incidents can be deleted. Monitor-based outages cannot be deleted.

Request

Path Parameters
outage_uuidstringrequired
The unique identifier of the manual incident to delete
Example:"outage_abc123"

Response

Returns a confirmation message when successful.

RequestcURL
curl -X DELETE https://api.hyperping.io/v2/outages/outage_abc123 \
  -H "Authorization: Bearer ${API_TOKEN}"
200 OKJSON
{
  "message": "Outage deleted"
}