Skip to content

Unlink Ticket

Medium Risk

Some operations on this resource may modify or delete data.

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

Tools

Tool Description
f5xc-api-virtual-unlink-ticket-create Unlink Tickets.

Parameters

Path Parameters

Parameter Description Example
name Virtual Host Name -
namespace Namespace -

Side Effects

Operations on this resource may have the following effects:

Creates:

  • unlink-ticket

Example Usage

Ask Claude to help you work with Unlink Ticket resources:

"Create a unlink-ticket named 'example' in the 'production' namespace"

CURL Examples

# 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}"