Skip to content

Settings

Settings let each user tune how HookBridge looks and when it sends operational alerts.

This is useful for reducing alert noise while keeping important incident signals visible.

  1. Open Settings.
  2. In Display Preferences, set timezone and date format.
  3. In Notification Preferences, choose enabled alert types.
  4. Configure thresholds for supported alerts (for example failure rate and pending backlog).
  5. Save changes.
Terminal window
# Get personalization
curl https://api.hookbridge.io/v1/settings/personalization \
-H "Authorization: Bearer YOUR_API_KEY"
# Update personalization
curl -X PUT https://api.hookbridge.io/v1/settings/personalization \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"timezone":"America/New_York","date_format":"MM/DD/YYYY"}'
# Get notification preferences
curl https://api.hookbridge.io/v1/settings/notifications \
-H "Authorization: Bearer YOUR_API_KEY"
# Update notification preferences
curl -X PUT https://api.hookbridge.io/v1/settings/notifications \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"enabled_alert_types": ["high_failure_rate", "pending_backlog"],
"failure_rate_threshold": 10,
"pending_backlog_threshold": 100
}'
Personalize Examples

Enter your credentials to populate code examples throughout the docs.