- Home
- API MCP Server
- tools
- marketplace
- Activation Statu
Activation Statu
GET current subscription status for an addon service. Response can indicate whether the service was successfully subscribed or in pending state.
| Tool | Description |
|---|---|
f5xc-api-marketplace-activation-statu-list | Addon Service Activation Status. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
addon_service | Addon_service | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Activation Statu resources:
List Activation Status
Section titled “List Activation Status”“List all activation-status in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/activation_status" \ -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}/activation_status/<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}/activation_status" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @activation_statu.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/activation_status/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"