Skip to main content

Overview

Webhooks allow you to receive real-time notifications when events occur in ScaleHouse, such as new gaps detected or connector status changes.

Setting Up Webhooks

1

Navigate to Settings

Go to Settings → Webhooks in your dashboard.
2

Create Webhook

Click “Create Webhook” and enter your endpoint URL.
3

Select Events

Choose which events to receive notifications for.
4

Save

Click “Save” to create the webhook.

Webhook Events

Gap Detected

New compliance gap detected

Connector Status

Connector status changed

Score Change

Compliance score changed significantly

Alert Triggered

Alert condition met

Webhook Payload

{
  "event": "gap.detected",
  "timestamp": "2024-01-01T12:00:00Z",
  "data": {
    "gap_id": "gap_123",
    "severity": "critical",
    "description": "..."
  }
}

Next Steps