- Home
- API MCP Server
- tools
- marketplace
- Addon Service
Addon Service
Retrieves addon service information for the given addon service name.
| Tool | Description |
|---|---|
f5xc-api-marketplace-addon-service-get | GET Addon Service Details. |
f5xc-api-marketplace-addon-service-list | List Addon Service. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
name | Name | - |
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
label_filter | A LabelSelectorType expression that every item in list response will satisfy. | - |
report_fields | The report_fields parameter | - |
report_status_fields | The report_status_fields parameter | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Addon Service resources:
List Addon Services
Section titled “List Addon Services”“List all addon-services in the ‘production’ namespace”
Get Addon Service Details
Section titled “Get Addon Service Details”“Get details of the addon-service named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/addon_services" \ -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}/addon_services/<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}/addon_services" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @addon_service.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/addon_services/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"