Skip to main content

Event Types

Drippi sends webhooks for the following automation events:

Common Payload Structure

All webhook events share a common base structure:

Base Fields

Event Details

cold_dm.sent

Triggered when a cold DM is successfully sent to a new lead.

followup.sent

Triggered when a follow-up message is sent to an existing lead.

reply.received

Triggered when a lead replies to your automation messages.

automation.paused

Triggered when an automation is automatically paused by the system (not by user action).
Pause Reasons:
  • automation paused - too many messages
  • automation paused - account is not verified
  • automation paused - daily_message_limit_reached
  • disconnected pause

automation.out_of_leads

Triggered when an automation runs out of available leads to contact.

Lead Data Structure

The lead_data field contains detailed Twitter profile information for the lead:

Handling Webhook Events

Example Event Handler

Idempotency

Implement idempotency to handle duplicate webhook deliveries:

Next Steps