Skip to content

View Preference

GET view preference gets view preference for specific user.

ToolDescription
f5xc-api-tenantandidentity-view-preference-listGET view preference.
f5xc-api-tenantandidentity-view-preference-updateSet view preference.

Ask Claude to help you work with View Preference resources:

“List all view-preferences in the ‘production’ namespace”

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