- Home
- API MCP Server
- tools
- tenant-and-identity
- identity
- View Preference
View Preference
GET view preference gets view preference for specific user.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-view-preference-list | GET view preference. |
f5xc-api-tenantandidentity-view-preference-update | Set view preference. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with View Preference resources:
List View Preferences
Section titled “List View Preferences”“List all view-preferences in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/view_preferences/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"