Skip to content

To Event

Allows customers to link alerts with events. This helps with tracking of any mitigation activity and event investigation.

ToolDescription
f5xc-api-ddos-to-event-updateLink Alert to Event.
ParameterDescriptionExample
alert_idAlert ID-
namespaceNamespace-

Ask Claude to help you work with To Event resources:

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/to_events" \
-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}/to_events/<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}/to_events" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @to_event.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/to_events/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"