Skip to content

Events Summary

Return a list of available event (suitable for an alert)

ToolDescription
f5xc-api-ddos-events-summary-listSimple events view.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
alert_idOptional - allows to filter events by alert so only relevant events are returned. If not provided, all user events are returned.-

Ask Claude to help you work with Events Summary resources:

“List all events-summarys in the ‘production’ namespace”

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