Webhooks

Webhooks

Receive real-time HTTP notifications when events occur in your SellAIBots account. Configure webhook endpoints from your dashboard settings.

Available Events

EventDescription
conversation.startedA new conversation was initiated by a visitor.
conversation.endedA conversation was completed or timed out.
lead.capturedThe bot captured a lead (name, email, phone).
bot.errorThe bot encountered an error during a conversation.

Payload Format

{
  "event": "lead.captured",
  "timestamp": "2026-03-24T12:00:00Z",
  "data": {
    "bot_id": "bot_abc123",
    "conversation_id": "conv_xyz789",
    "lead": {
      "name": "Jane Doe",
      "email": "jane@example.com"
    }
  }
}