MonitorsImap pop monitors
Get IMAP/POP Monitor Incident History
Returns incidents for a single IMAP/POP monitor (latest 100), including a computed duration.
GET /api/imap-pop-monitors/:imapPopMonitorPublicId/incident-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/incident-history" \
-H "Authorization: Bearer $TOKEN" \
-H "Accept: application/json"Example Response
{
"incidents": [
{
"id": 123,
"type": "downtime",
"status": "resolved",
"startedAt": "Feb 26, 2026, 12:10:00",
"endedAt": "Feb 26, 2026, 12:12:30",
"duration": "2m 30s"
}
],
"total": 1
}type reflects the failure category for this monitor; status is active (ongoing) or resolved. Ongoing incidents have a null endedAt.
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
Get IMAP/POP Monitor Alert History
Returns notification/escalation attempts (alert history) for incidents of a IMAP/POP monitor.
Get IMAP/POP Monitor Details
Consolidated endpoint that returns the IMAP/POP monitor detail page payload in a single call (latest check, uptime stats, incidents, alert history, maintenance windows, chart data, etc.).