Spaces method and path for this operation:
post /s/{space_id}/api/alerting/v2/action_policies/_match_for_rule
Refer to Spaces for more information.
Returns action policies that match a given rule, categorised as direct, global, or global-filtered.
[Required authorization] Route required privileges: read_alerting-v2-action-policies.
Responses
-
Indicates a successful call.
-
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.
POST
/api/alerting/v2/action_policies/_match_for_rule
curl \
--request POST 'https://localhost:5601/api/alerting/v2/action_policies/_match_for_rule' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--header "kbn-xsrf: true" \
--data '"{\n \"rule\": {\n \"id\": \"rule-1\",\n \"name\": \"Host CPU high\",\n \"tags\": [\n \"production\"\n ]\n }\n}"'
Request example
{
"rule": {
"id": "rule-1",
"name": "Host CPU high",
"tags": [
"production"
]
}
}
Response examples (200)
{
"items": [
{
"actionPolicy": {
"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="
},
"category": "global-filtered"
}
],
"total": 1
}
Response examples (400)
{
"code": "BAD_REQUEST",
"details": {
"errors": {
"errors": [],
"properties": {
"rule": {
"errors": [
"Invalid input: expected object, received undefined"
]
}
}
}
},
"error": "Bad Request",
"message": "rule: Invalid input: expected object, received undefined"
}
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 (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."
}