SigSentrySigSentry
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/settings

Response

200 OK

{
  "success": true,
  "data": {
    "defaultSeverityThreshold": "high"
  }
}
FieldTypeNotes
defaultSeverityThreshold'critical' | 'high' | 'medium' | 'low'The organization's default severity threshold

Error responses

Statuserror.codeWhen
401UNAUTHORIZEDMissing or invalid API key
403FORBIDDENKey lacks config:read

Example

curl https://api.sigsentry.com/v1/config/notifications/settings \
  -H "Authorization: Bearer ss_secret_..."