Skip to content

Support Ticket

Return list of support tickets for a given child tenant Note: Direct API access is restricted. Client needs to use the /managed_tenant/<mt_identifier>/ prefix in the URL to GET the support ticket list for child tenant.

ToolDescription
f5xc-api-support-support-ticket-createList of support tickets created for a child tenant.

Ask Claude to help you work with Support Ticket resources:

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

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