Skip to content

Catalog

Medium Risk

Some operations on this resource may modify or delete data.

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

Tools

Tool Description
f5xc-api-statistics-catalog-update List

Side Effects

Operations on this resource may have the following effects:

Modifies:

  • catalog

Example Usage

Ask Claude to help you work with Catalog resources:

CURL Examples

# 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}"