POST/v2/outages/{outage_uuid}/resolve

Resolve a manual incident

Resolves a manual incident. Only manual incidents can be manually resolved; monitor-based outages are resolved automatically when the monitor recovers.

⚠️Manual Incidents Only

This endpoint only works for manual incidents created via the API or dashboard. Monitor-based outages cannot be manually resolved.

Request

Path Parameters
uuidstringrequired
The unique identifier of the manual incident to resolve
Example:"outage_abc123"

Response

Returns the resolution timestamp.

RequestcURL
curl -X POST https://api.hyperping.io/v2/outages/outage_abc123/resolve \
  -H "Authorization: Bearer ${API_TOKEN}"
200 OKJSON
{
  "message": "Outage resolved",
  "endDate": "2026-01-21T12:00:00.000Z"
}