- Home
- API MCP Server
- tools
- ddos
- infrastructure-protection
- To Event
To Event
Allows customers to link alerts with events. This helps with tracking of any mitigation activity and event investigation.
| Tool | Description |
|---|---|
f5xc-api-ddos-to-event-update | Link Alert to Event. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
alert_id | Alert ID | - |
namespace | Namespace | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with To Event resources:
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/to_events/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"