- Home
- API MCP Server
- tools
- tenant-and-identity
- identity
- Admin Notification
Admin Notification
GET admin ntfn preferences gets current admin notification preferences for user. It combines information from two sources:
-
explicitly set admin notification preferences in user settings object
-
default values from uam config (for those notifications which not explicitly set)
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-admin-notification-list | GET admin ntfn preferences. |
f5xc-api-tenantandidentity-admin-notification-update | Update admin ntfn preferences. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Admin Notification resources:
List Admin Notifications
Section titled “List Admin Notifications”“List all admin-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}/admin_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}/admin_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}/admin_notifications" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @admin_notification.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/admin_notifications/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"