Notification Channels
GET /v1/config/notifications/settings
Read the organization's default notification severity threshold
Returns the organization-wide default severity threshold for notification channels. This is the threshold pre-filled when creating a new channel in the dashboard, and the fallback for channels that opt in to the org default.
For routing patterns and how the default interacts with per-channel overrides, see Severity thresholds.
Authentication
API key with config:read permission.
Endpoint
GET /v1/config/notifications/settingsResponse
200 OK
{
"success": true,
"data": {
"defaultSeverityThreshold": "high"
}
}| Field | Type | Notes |
|---|---|---|
defaultSeverityThreshold | 'critical' | 'high' | 'medium' | 'low' | The organization's default severity threshold |
Error responses
| Status | error.code | When |
|---|---|---|
| 401 | UNAUTHORIZED | Missing or invalid API key |
| 403 | FORBIDDEN | Key lacks config:read |
Example
curl https://api.sigsentry.com/v1/config/notifications/settings \
-H "Authorization: Bearer ss_secret_..."