Back to Integrations
Integration Setup
Connect Just Dial to 365 RND CRM
Connect Just Dial to get every enquiry routed into your CRM.
Source Key: just_dialWebhook Ready
How To Connect
1
Receive Just Dial enquiries via email parser, middleware, or direct lead connector.
2
Convert the payload to JSON and push it to the CRM webhook URL.
3
Keep phone and lead name mandatory; add requirement text inside `message`.
4
Assign a specific owner when needed using `assigned_to`.
What CRM Does After Capture
Just Dial responses become searchable CRM leads instead of being buried in email.
Lead ownership and reminders stay inside the same system.
The source key `just_dial` remains available for future dashboards and reports.
Supported Fields
namephoneemailcompany_namemessageassigned_tofollow_up_date
The backend also normalizes common aliases like `full_name`, `mobile`, `company`, `notes`, and nested `data.*` webhook fields.
Example Payload
{
"name": "Aman Sharma",
"phone": "+91 98765 43210",
"email": "aman@example.com",
"company_name": "RND Prospect",
"message": "Interested in a demo and pricing details.",
"assigned_to": "clerk_user_id_or_internal_user_id"
}Sample Request
curl -X POST "http://localhost:3072/api/integrations/webhook/just_dial" \
-H "Content-Type: application/json" \
-H "x-integration-secret: <your-secret>" \
-d '{
"name": "Aman Sharma",
"phone": "+91 98765 43210",
"email": "aman@example.com",
"company_name": "RND Prospect",
"message": "Interested in a demo and pricing details.",
"assigned_to": "clerk_user_id_or_internal_user_id"
}'Need a custom mapping?
If the source sends unusual field names, we can extend the mapping layer in the backend without changing your sales workflow.