Skip to content

Plan Transition

API to GET plan transition details by a plan transition request uid returned from InitiatePlanTransition. For now this one returns only current State.

ToolDescription
f5xc-api-billingandusage-plan-transition-createInitiatePlanTransition.
f5xc-api-billingandusage-plan-transition-listGetPlanTransition.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
idID of the plan transition request.-

Ask Claude to help you work with Plan Transition resources:

“Create a plan-transition named ‘example’ in the ‘production’ namespace”

“List all plan-transitions in the ‘production’ namespace”

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