Skip to content

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)

ToolDescription
f5xc-api-tenantandidentity-admin-notification-listGET admin ntfn preferences.
f5xc-api-tenantandidentity-admin-notification-updateUpdate admin ntfn preferences.

Ask Claude to help you work with Admin Notification resources:

“List all admin-notifications in the ‘production’ namespace”

Terminal window
# List resources
curl -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 resource
curl -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 resource
curl -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 resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/admin_notifications/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"