Spaces method and path for this operation:
Refer to Spaces for more information.
[Required authorization] Route required privileges: manage_alerting-v2-action-policies.
Body
-
Explicit list of IDs to operate on.
At least
1but not more than100elements. Minimum length of each is1, maximum length of each is150. -
The ISO datetime until which the targeted action policies should be snoozed.
Format should match the following pattern:
^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$.
Responses
-
Returns the result of the bulk snooze operation.
-
Indicates an invalid schema or parameters.
-
Indicates the request was not authenticated.
-
Indicates the user does not have the required privileges to perform the request.
-
Indicates an unexpected server-side error.
-
Indicates the alerting engine is disabled by the
alerting:v2:enabledadvanced setting.
curl \
--request POST 'https://localhost:5601/api/alerting/v2/action_policies/_bulk_snooze' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--header "kbn-xsrf: true" \
--data '"{\n \"ids\": [\n \"action-policy-1\",\n \"action-policy-2\"\n ],\n \"snoozed_until\": \"2026-01-16T12:00:00.000Z\"\n}"'
{
"ids": [
"action-policy-1",
"action-policy-2"
],
"snoozed_until": "2026-01-16T12:00:00.000Z"
}
{
"affected_count": 2,
"errors": []
}
{
"code": "BAD_REQUEST",
"details": {
"errors": {
"errors": [],
"properties": {
"snoozed_until": {
"errors": [
"Invalid input: expected string, received undefined"
]
}
}
}
},
"error": "Bad Request",
"message": "snoozed_until: Invalid input: expected string, received undefined"
}
{
"code": "UNAUTHORIZED",
"error": "Unauthorized",
"message": "Authentication required to access this API."
}
{
"code": "FORBIDDEN",
"error": "Forbidden",
"message": "The current user does not have the required privileges for this request."
}
{
"code": "INTERNAL_SERVER_ERROR",
"error": "Internal Server Error",
"message": "An unexpected error occurred."
}
{
"code": "ALERTING_DISABLED",
"error": "Service Unavailable",
"message": "Alerting is disabled."
}