Skip to content

Unlink Ticket

Remove the Ticket from vulnerability in XC platform External ticket systems will continue to have the record.

ToolDescription
f5xc-api-virtual-unlink-ticket-createUnlink Tickets.
ParameterDescriptionExample
nameVirtual Host Name-
namespaceNamespace-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
label_filter-
ticket_uid-

Ask Claude to help you work with Unlink Ticket resources:

“Create a unlink-ticket named ‘example’ in the ‘production’ namespace”

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