Skip to content

Alert Receiver

Replaces the content of an Alert Receiver object.

ToolDescription
f5xc-api-statistics-alert-receiver-createCreate Alert Receiver.
f5xc-api-statistics-alert-receiver-getGET Alert Receiver.
f5xc-api-statistics-alert-receiver-listList Alert Receiver.
f5xc-api-statistics-alert-receiver-updateReplace Alert Receiver.
f5xc-api-statistics-alert-receiver-deleteDELETE Alert Receiver.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.email-
spec.opsgenie-
spec.pagerduty-
spec.slack-
spec.sms-
spec.webhook-
OptionDescriptionRecommended
spec.opsgenie.api_key.blindfold_secret_info-
spec.opsgenie.api_key.clear_secret_info-
OptionDescriptionRecommended
spec.webhook.http_config.auth_token-
spec.webhook.http_config.basic_auth-
spec.webhook.http_config.client_cert_obj-
spec.webhook.http_config.no_authorization-
OptionDescriptionRecommended
spec.webhook.http_config.no_tls-
spec.webhook.http_config.use_tls-
OptionDescriptionRecommended
spec.webhook.http_config.use_tls.use_server_verification-
spec.webhook.http_config.use_tls.volterra_trusted_ca-
OptionDescriptionRecommended
spec.webhook.http_config.use_tls.disable_sni-
spec.webhook.http_config.use_tls.sni-

Ask Claude to help you work with Alert Receiver resources:

“Create a alert-receiver named ‘example’ in the ‘production’ namespace”

“List all alert-receivers in the ‘production’ namespace”

“Get details of the alert-receiver named ‘example’ in namespace ‘production‘“

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/alert_receivers" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/alert_receivers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/alert_receivers" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @alert_receiver.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/alert_receivers/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"