POST/v2/outages/{outage_uuid}/acknowledge

Acknowledge an outage

Acknowledges an ongoing outage, indicating that someone is aware and working on it.

Request

Path Parameters
uuidstringrequired
The unique identifier of the outage to acknowledge
Example:"outage_abc123"

Response

Returns acknowledgment details including the user who acknowledged.

RequestcURL
curl -X POST https://api.hyperping.io/v2/outages/outage_abc123/acknowledge \
  -H "Authorization: Bearer ${API_TOKEN}"
200 OKJSON
{
  "message": "Outage acknowledged",
  "acknowledgedAt": "2026-01-21T10:35:00.000Z",
  "acknowledgedBy": {
    "uuid": "user_xyz",
    "email": "john@example.com",
    "name": "John Doe",
    "profilePictureUrl": "https://...",
    "ssoPictureUrl": null
  }
}

Remove Acknowledgment

To remove an acknowledgment, use the unacknowledge endpoint. Only the user who acknowledged can remove it.

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