Make, Zapier, n8n, GHL - Integration Guide
Learn how to integrate Make, Zapier, n8n and GHL with your OmniDimension agent for powerful automation capabilities.
1. Overview
There are two ways you can integrate OmniDimension with automation platforms like Make, Zapier, n8n and GHL.
2. Webhook method : Send post call data to Make / Zapier / n8n / GHL
Configuring the Post-Call Webhook

Webhook payload setup with call summary , Full conversation, Sentiment Analysis and Extracted Variables

Sample Webhook Payload
Here is a sample of the JSON data sent from OmniDimension to your automation tool:
{
"call_id": 24877,
"bot_id": 551,
"bot_name": "Your Bot Name",
"phone_number": "+1234567890",
"call_date": "2025-05-22 05:02:54",
"user_email": "user@example.com",
"call_report": {
"summary": "Brief overview of the conversation...",
"sentiment": "Positive",
"extracted_variables": {
"name": "Ravi",
"appointment_type": "Dental Checkup"
},
"full_conversation": "Full transcript here...",
"interactions": [
{
"sequence": 1,
"user_query": false,
"bot_response": "Hello, how can I help you?",
"time": "2025-05-22 05:02:42"
},
{
"sequence": 2,
"user_query": "I want a dental appointment",
"bot_response": "Sure, I can help with that.",
"time": "2025-05-22 05:02:45"
}
]
}
}
Example - Add call logs into airtable database using Make.com
Here is an example of how to use Make.com to trigger an OmniDimension action for call dispatch
Make.com scenario that will add the call logs to airtable database

3. API method : Call OmniDimension Actions from Make / Zapier / n8n / GHL
Common OmniDim API Endpoints
Example - Call Dispatch using Make.com
Here is an example of how to use Make.com to trigger an OmniDimension action for call dispatch
API Call Using HTTP Module

Setting up Body for call Dispatch
