- Home
- API MCP Server
- tools
- virtual
- other
- Unlink Ticket
Unlink Ticket
Remove the Ticket from vulnerability in XC platform External ticket systems will continue to have the record.
| Tool | Description |
|---|---|
f5xc-api-virtual-unlink-ticket-create | Unlink Tickets. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
name | Virtual Host Name | - |
namespace | Namespace | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
unlink_choice
Section titled “unlink_choice”| Option | Description | Recommended |
|---|---|---|
label_filter | - | |
ticket_uid | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Unlink Ticket resources:
Create Unlink Ticket
Section titled “Create Unlink Ticket”“Create a unlink-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}/unlink_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}/unlink_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}/unlink_tickets" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @unlink_ticket.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/unlink_tickets/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"