Settings
Why You Would Use This
Section titled “Why You Would Use This”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.
Console Workflow
Section titled “Console Workflow”- Open Settings.
- In Display Preferences, set timezone and date format.
- In Notification Preferences, choose enabled alert types.
- Configure thresholds for supported alerts (for example failure rate and pending backlog).
- Save changes.
API Workflow
Section titled “API Workflow”# Get personalizationcurl https://api.hookbridge.io/v1/settings/personalization \ -H "Authorization: Bearer YOUR_API_KEY"
# Update personalizationcurl -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 preferencescurl https://api.hookbridge.io/v1/settings/notifications \ -H "Authorization: Bearer YOUR_API_KEY"
# Update notification preferencescurl -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.