Skip to content

Detail

Returns a list of event details. The list contains event details entered by customer and the SOC team members, mitigation annotations and any attachments.

ToolDescription
f5xc-api-ddos-detail-createAdd Event Detail.
f5xc-api-ddos-detail-listList of event details.
f5xc-api-ddos-detail-updateEdit event detail.
f5xc-api-ddos-detail-deleteDELETE event detail.
ParameterDescriptionExample
event_idEvent ID-
namespaceNamespace-
event_detail_idEvent Detail ID-

Ask Claude to help you work with Detail resources:

“Create a detail named ‘example’ in the ‘production’ namespace”

“List all details in the ‘production’ namespace”

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