Spaces method and path for this operation:
post /s/{space_id}/api/alerting/v2/action_policies/{id}/_unsnooze
Refer to Spaces for more information.
Remove the snooze from an action policy.
[Required authorization] Route required privileges: manage_alerting-v2-action-policies.
Responses
-
Returns the unsnoozed action policy.
-
Indicates the request failed schema validation.
-
Indicates the request was not authenticated.
-
Indicates the user does not have the required privileges to perform the request.
-
Indicates an action policy with the given ID does not exist.
-
Indicates the action policy was concurrently updated by another caller.
-
Indicates an unexpected server-side error.
-
Indicates the alerting engine is disabled by the
alerting:v2:enabledadvanced setting.
POST
/api/alerting/v2/action_policies/{id}/_unsnooze
curl \
--request POST 'https://localhost:5601/api/alerting/v2/action_policies/{id}/_unsnooze' \
--header "Authorization: $API_KEY" \
--header "kbn-xsrf: true"
Response examples (200)
{
"auth": {
"created_by_user": true,
"owner": "elastic"
},
"created_at": "2026-01-15T12:00:00.000Z",
"created_by": "elastic",
"description": "Sends a workflow notification when matching host alerts fire.",
"destinations": [
{
"id": "workflow-1",
"type": "workflow"
}
],
"enabled": true,
"group_by": null,
"grouping_mode": "per_episode",
"id": "action-policy-1",
"matcher": "host.name: \"web-*\"",
"name": "Notify on host alerts",
"snoozed_until": null,
"tags": [
"production"
],
"throttle": {
"interval": null,
"strategy": "on_status_change"
},
"updated_at": "2026-01-15T12:00:00.000Z",
"updated_by": "elastic",
"version": "WzAsMV0="
}
Response examples (400)
{
"code": "BAD_REQUEST",
"details": {
"errors": {
"errors": [],
"properties": {
"page": {
"errors": [
"Too small: expected number to be >=1"
]
}
}
}
},
"error": "Bad Request",
"message": "page: Too small: expected number to be >=1"
}
Response examples (401)
{
"code": "UNAUTHORIZED",
"error": "Unauthorized",
"message": "Authentication required to access this API."
}
Response examples (403)
{
"code": "FORBIDDEN",
"error": "Forbidden",
"message": "The current user does not have the required privileges for this request."
}
Response examples (404)
{
"code": "ACTION_POLICY_NOT_FOUND",
"details": {
"action_policy_id": "action-policy-1"
},
"error": "Not Found",
"message": "Action policy with id \"action-policy-1\" not found"
}
Response examples (409)
{
"code": "ACTION_POLICY_VERSION_CONFLICT",
"details": {
"action_policy_id": "action-policy-1"
},
"error": "Conflict",
"message": "Action policy with id \"action-policy-1\" has already been updated by another user"
}
Response examples (500)
{
"code": "INTERNAL_SERVER_ERROR",
"error": "Internal Server Error",
"message": "An unexpected error occurred."
}
Response examples (503)
{
"code": "ALERTING_DISABLED",
"error": "Service Unavailable",
"message": "Alerting is disabled."
}