This template automates the process of receiving and acting upon real-time call event data from telli, an AI-powered voice agent platform. It solves the challenge of manually updating CRM records and initiating follow-up actions based on call outcomes. By leveraging webhooks and n8n's powerful workflow capabilities, this template enables businesses to instantly update their Airtable CRM and trigger appropriate follow-up actions, enhancing efficiency and responsiveness in customer interactions.
Create an Airtable base with the following table and fields:
Table: Contacts
Webhook Configuration in telli:
n8n Workflow Setup:
Parse Webhook Data:
Decision Logic:
Airtable Integration:
Follow-up Actions:
Testing and Activation:
Below is an example of the payload you might receive from telli when a call ends:
{
"event": "call_ended",
"call": {
"call_id": "b4a05730-2abc-4eb0-8066-2e4d23b53ba9",
"attempt": 1,
"from_number": "+17755719467",
"to_number": "+16506794960",
"external_contact_id": "external-123",
"contact_id": "6bd1e7e0-6d00-4c0b-ad5b-daa72457a27d",
"agent_id": "d8931604-92ad-45cf-9071-d9cd2afbad0c",
"triggered_at": 1731956924302,
"started_at": 1731956932264,
"booked_slot_for": "2025-02-24T15:30:00Z",
"ended_at": 1731957002078,
"call_length_min": 2,
"call_status": "COMPLETED",
"transcript": "Agent: Hello...",
"transcriptObject": [
{
"role": "agent",
"content": "Hello..."
}
],
"call_analysis": {
"summary": {
"value": true,
"details": "A call between an agent and a customer talking about buying an ice cream machine"
},
"appointment": {
"value": true,
"details": "2025-02-18T15:30:00Z"
},
"interest": {
"value": true,
"details": "The customer is interested in buying an ice cream machine"
}
}
}
}
In this example, you can see that the call resulted in a booked appointment and showed customer interest. Your n8n workflow would process this data, updating the Airtable CRM and triggering any necessary follow-up actions.
By implementing this template, businesses can automate their post-call processes, ensuring timely follow-ups and accurate CRM updates. This real-time integration between telli's AI voice agents and your Airtable CRM streamlines operations, improves customer engagement, and increases the efficiency of your sales and support teams.