Skip to content

Combined Notification

Medium Risk

Some operations on this resource may modify or delete data.

GET combined ntfn preferences gets user-ntfn-preferences and admin-ntfn-preferences and returns combined result.

Tools

Tool Description
f5xc-api-tenantandidentity-combined-notification-list GET combined ntfn preferences.
f5xc-api-tenantandidentity-combined-notification-update Update combined ntfn preferences.

Side Effects

Operations on this resource may have the following effects:

Modifies:

  • combined-notification

Example Usage

Ask Claude to help you work with Combined Notification resources:

List Combined Notifications

"List all combined-notifications in the 'production' namespace"

CURL Examples

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