Spaces method and path for this operation:
post /s/{space_id}/api/alerting/v2/action_policies/_bulk_enable
Refer to Spaces for more information.
[Required authorization] Route required privileges: manage_alerting-v2-action-policies.
Responses
-
Returns the result of the bulk enable 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.
POST
/api/alerting/v2/action_policies/_bulk_enable
curl \
--request POST 'https://localhost:5601/api/alerting/v2/action_policies/_bulk_enable' \
--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}"'
Request example
{
"ids": [
"action-policy-1",
"action-policy-2"
]
}
Response examples (200)
{
"affected_count": 2,
"errors": []
}
Response examples (400)
{
"code": "BAD_REQUEST",
"details": {
"errors": {
"errors": [],
"properties": {
"ids": {
"errors": [
"Invalid input: expected array, received undefined"
]
}
}
}
},
"error": "Bad Request",
"message": "ids: Invalid input: expected array, 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."
}