MonitorsIcmp monitors
Get ICMP Monitor Alert History
Returns notification/escalation attempts (alert history) for incidents of a ICMP monitor.
GET /api/icmp-monitors/:icmpMonitorPublicId/alert-history
Authentication
Requires a valid session.
- Header:
Authorization: Bearer <token>
Parameters
icmpMonitorPublicId(Path, required): ICMP monitor public UUID.
Example (cURL)
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"
curl -X GET "$BASE_URL/api/icmp-monitors/11111111-1111-4111-8111-111111111111/alert-history" \
-H "Authorization: Bearer $TOKEN" \
-H "Accept: application/json"Example Response
{
"alerts": [
{
"id": 987,
"incidentId": 123,
"type": "slack",
"status": "sent",
"channelName": "Ops Slack",
"sentAt": "2026-02-26T12:11:00.000Z",
"errorMessage": null
}
],
"total": 1
}Each entry is one delivery attempt to one notification channel. status is sent or failed (with errorMessage set on failure); type is the channel type (e.g. email, slack, opsgenie).
Common Errors
400 ICMP monitor public ID (UUID) requiredif:icmpMonitorPublicIdis invalid401 Unauthorizedif you are not authenticated403 Forbiddenif you do not have access to the monitor