- Home
- API MCP Server
- tools
- tenant-and-identity
- identity
- Combined Notification
Combined Notification
GET combined ntfn preferences gets user-ntfn-preferences and admin-ntfn-preferences and returns combined result.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-combined-notification-list | GET combined ntfn preferences. |
f5xc-api-tenantandidentity-combined-notification-update | Update combined ntfn preferences. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Combined Notification resources:
List Combined Notifications
Section titled “List Combined Notifications”“List all combined-notifications in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/combined_notifications" \ -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}/combined_notifications/<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}/combined_notifications" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @combined_notification.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/combined_notifications/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"