MonitorsImap pop monitors
Get IMAP/POP Monitor Alert History
Returns notification/escalation attempts (alert history) for incidents of a IMAP/POP monitor.
GET /api/imap-pop-monitors/:imapPopMonitorPublicId/alert-history
Authentication
Requires a valid session.
- Header:
Authorization: Bearer <token>
Parameters
imapPopMonitorPublicId(Path, required): IMAP/POP monitor public UUID.
Example (cURL)
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"
curl -X GET "$BASE_URL/api/imap-pop-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 IMAP/POP monitor public ID (UUID) requiredif:imapPopMonitorPublicIdis invalid401 Unauthorizedif you are not authenticated403 Forbiddenif you do not have access to the monitor