POST/v2/outages/{outage_uuid}/unacknowledge

Remove an acknowledgment

Removes an acknowledgment from an outage. Only the user who acknowledged can remove it.

Request

Path Parameters
outage_uuidstringrequired
The unique identifier of the outage
Example:"outage_abc123"

Response

Returns a confirmation message when successful.

RequestcURL
curl -X POST https://api.hyperping.io/v2/outages/outage_abc123/unacknowledge \
  -H "Authorization: Bearer ${API_TOKEN}"
200 OKJSON
{
  "message": "Acknowledgment removed"
}