Retrieve a paginated list of monitoring alerts for failed monitorings.
GET
/monitoring-alerts
page_size
(integer, optional) - Number of alerts per page
next_token
(string, optional) - Pagination token for next pageonly_unacknowledged
(boolean, optional) - If true, returns only unacknowledged alertsacknowledged
(boolean, optional) - If true, returns only acknowledged alertsexecution_time_before
(ISO8601 string, optional) - Only include alerts executed before this timeexecution_time_after
(ISO8601 string, optional) - Only include alerts executed after this timeitems
(array) - List of alert objects
id
(string) - Unique identifier for the alertmonitoring_id
(string) - ID of the monitoring that triggered this alertcustomer_id
(string) - ID of the customer that owns this monitoringexecution_result_id
(string) - ID of the execution resultwebsite
(string) - URL of the monitored websitefailed_checks
(array) - List of checks that failed
check
(string) - The type of check that failedexplanation
(string) - Explanation of the failuremethod_used
(string) - Method used for checkingstatus
(string) - Status of the checkexecution_time
(string) - ISO8601 timestamp of when the monitoring was executedcreated_at
(string) - ISO8601 timestamp of when the alert was createdacknowledged_at
(string|null) - ISO8601 timestamp of when the alert was acknowledged, or null if not acknowledgedexternal_id
(string, optional) - External reference IDunacknowledged_count
(integer) - Number of unacknowledged alerts for the customernext_token
(string|null) - Token for next page (null if no more pages){ "error": "page_size must be a positive integer between 1 and 100" }
next_token
next_token
from the previous responsenext_token
will be null
Number of alerts per page (1-100, default 10)
1 <= x <= 100
Pagination token for next page (Base64-encoded)
If 'true', returns only unacknowledged alerts
true
, false
If 'true', returns only acknowledged alerts
true
, false
Only include alerts executed before this time (ISO8601)
Only include alerts executed after this time (ISO8601)
OK
The response is of type object
.