1. Integrations
  2. Events

Integrations

Events

Integration error events are emitted when error counts exceed the organization's configured thresholds. Unlike standard events, these are internal notification events and are not dispatched to webhook endpoints. They are used exclusively to trigger email notifications to subscribed users.

Outgoing Integration Events

Event Description
outgoing_integration__error Outgoing integration errors exceeded the configured failure_limit within the interval

Event Data

        {
  "object": "outgoing_integration",
  "id": "out_int_abc123",
  "organization_id": "org_xyz789",
  "error_count": 5
}

      
Field Type Description
object string Always "outgoing_integration"
id string The ID of the outgoing integration record that triggered the event
organization_id string The organization where the errors occurred
error_count integer The total number of errors counted in the current interval

Incoming Webhook Events

Event Description
incoming_webhook__error Incoming webhook errors exceeded the configured failure_limit within the interval

Event Data

        {
  "object": "incoming_webhook",
  "id": "inc_whk_abc123",
  "organization_id": "org_xyz789",
  "error_count": 10
}

      
Field Type Description
object string Always "incoming_webhook"
id string The ID of the incoming webhook record that triggered the event
organization_id string The organization where the errors occurred
error_count integer The total number of errors counted in the current interval