Webhooks
Webhooks
Receive real-time HTTP notifications when events occur in your SellAIBots account. Configure webhook endpoints from your dashboard settings.
Available Events
| Event | Description |
|---|---|
| conversation.started | A new conversation was initiated by a visitor. |
| conversation.ended | A conversation was completed or timed out. |
| lead.captured | The bot captured a lead (name, email, phone). |
| bot.error | The 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"
}
}
}