enquiry.createdSent when the AI Assistant captures a handover enquiry and pushes the visitor into human follow-up.
When it fires
This fires after the visitor submits their details for sales or support handover.
Why it matters
Use it to create or update a lead in your CRM, notify a human agent quickly, or kick off a fast welcome sequence while intent is still hot.
Payload
| Field | Type | Description |
|---|---|---|
| data.enquiry_id | string | The saved enquiry UUID. |
| data.session_id | string | The related chat session UUID. |
| data.crm_contact_id | string | null | CRM contact UUID if one was linked. |
| data.enquiry_kind | 'general' | 'specialist' | 'purchase' | The kind of handover the assistant classified. |
| data.name | string | Visitor name from the handover form. |
| data.email | string | Visitor email address. |
| data.phone | string | null | Visitor phone number if supplied. |
| data.company | string | null | Visitor company if supplied. |
{
"event": "enquiry.created",
"organization_id": "org_uuid",
"occurred_at": "2026-07-28T09:08:57.192Z",
"data": {
"enquiry_id": "enquiry_uuid",
"session_id": "session_uuid",
"crm_contact_id": "contact_uuid",
"enquiry_kind": "purchase",
"name": "Jane Doe",
"email": "jane@example.com",
"phone": "+27 82 555 0101",
"company": "Acme Studio"
}
}