Skip to content

Export

Low Risk

Operations on this resource are generally safe.

Export Zone File.

Tools

Tool Description
f5xc-api-dns-export-list Export Zone File.

Parameters

Path Parameters

Parameter Description Example
dns_zone_name Name -
namespace Namespace -

Example Usage

Ask Claude to help you work with Export resources:

List Exports

"List all exports in the 'production' namespace"

CURL Examples

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

# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/exports/<name>" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}"