telli is an innovative platform that provides AI-powered voice agents capable of making calls and performing tasks tailored to specific customer use cases. These AI voice-agents can handle a wide range of communication tasks, from appointment scheduling to customer support, with remarkable efficiency and natural conversation flow.
This template is designed for businesses and organizations looking to automate their outbound calling processes using telli's AI voice-agents in conjunction with Airtable as their CRM. It solves the problem of manual call scheduling and data transfer between your CRM and calling system, saving time and reducing human error.
n8n Setup:
telli API Configuration:
Workflow Configuration:
/add-contact
endpoint./schedule-call
endpoint.Data Mapping:
Testing and Activation:
https://api.telli.com/v1/add-contact
Authorization: YOUR-API-KEY
Content-Type: application/json
{
"external_contact_id": "string",
"salutation": "string",
"first_name": "string",
"last_name": "string",
"phone_number": "string",
"email": "[email protected]",
"contact_details": {},
"timezone": "string"
}
https://api.telli.com/v1/schedule-call
Authorization: YOUR-API-KEY
Content-Type: application/json
{
"contact_id": TELLI-CONTACT-ID,
"agent_id": "string",
"max_retry_days": 123,
"call_details": {
"message": "Hello, this is your friendly reminder!",
"questions": [
{
"fieldName": "email",
"neededInformation": "email of the customer",
"exampleQuestion": "What is your email address?",
"responseFormat": "email string"
}
]
},
"override_from_number": "string"
}
This template is versatile and can be applied to various scenarios, including:
- Lead Qualification: Automatically schedule calls to new leads entered in your CRM.
- Appointment Reminders: Set up calls to remind clients of upcoming appointments.
- Customer Feedback: Schedule follow-up calls after product deliveries or service completions.
For bulk operations, you have two options:
Loop Node: Include a Loop node in your n8n workflow to process multiple contacts sequentially.
Batch Endpoints: Instead of /add-contact
and /schedule-call
, use telli's batch endpoints:
/add-contacts-batch
: Add multiple contacts within an array./schedule-calls-batch
: Schedule multiple calls at once.Example of batch endpoint usage:
{
"contacts": [
{"name": "John Doe", "phone": "+1234567890"},
{"name": "Jane Smith", "phone": "+1987654321"}
]
}
By leveraging this template, you can seamlessly integrate your Airtable CRM with telli's powerful AI voice-agents, automating your outbound calling process and enhancing your customer communication strategy.