- Home
- API MCP Server
- tools
- support
- tenant-management
- Support Ticket
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.
| Tool | Description |
|---|---|
f5xc-api-support-support-ticket-create | List of support tickets created for a child tenant. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Support Ticket resources:
Create Support Ticket
Section titled “Create Support Ticket”“Create a support-ticket named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/support_tickets/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"