Request
Path Parameters
uuidstringrequired
The unique identifier of the outage to acknowledge
Example:"outage_abc123"
Response
Returns acknowledgment details including the user who acknowledged.
Acknowledges an ongoing outage, indicating that someone is aware and working on it.
Returns acknowledgment details including the user who acknowledged.
curl -X POST https://api.hyperping.io/v2/outages/outage_abc123/acknowledge \
-H "Authorization: Bearer ${API_TOKEN}"{
"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
}
}To remove an acknowledgment, use the unacknowledge endpoint. Only the user who acknowledged can remove it.
curl -X POST https://api.hyperping.io/v2/outages/outage_abc123/unacknowledge \
-H "Authorization: Bearer ${API_TOKEN}"