Skip to content

Catalog

Retrieves service catalog tailor for the currently logged-in user.

ToolDescription
f5xc-api-statistics-catalog-updateList

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
use_case_filter-
workspace_filter-

Ask Claude to help you work with Catalog resources:

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