Skip to content

Payment Method

Creates a new payment method with a specific role.

ToolDescription
f5xc-api-billingandusage-payment-method-createCreate payment method specification.
f5xc-api-billingandusage-payment-method-deleteDELETE the specified payment method.
ParameterDescriptionExample
namespaceNamespace-
nameName-

Ask Claude to help you work with Payment Method resources:

“Create a payment-method named ‘example’ in the ‘production’ namespace”

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