- Home
- API MCP Server
- tools
- billing-and-usage
- Plan Transition
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.
| Tool | Description |
|---|---|
f5xc-api-billingandusage-plan-transition-create | InitiatePlanTransition. |
f5xc-api-billingandusage-plan-transition-list | GetPlanTransition. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
id | ID of the plan transition request. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Plan Transition resources:
Create Plan Transition
Section titled “Create Plan Transition”“Create a plan-transition named ‘example’ in the ‘production’ namespace”
List Plan Transitions
Section titled “List Plan Transitions”“List all plan-transitions in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/plan_transitions/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"