Back to Integrations
Integration Setup
Connect IndiaMart to 365 RND CRM
Automatically import buyer enquiries from your IndiaMart listing.
Source Key: indiamartWebhook ReadyPopular
How To Connect
1
Use IndiaMart lead forwarding, a webhook bridge, or an automation platform that receives IndiaMart enquiries.
2
Forward the payload to the CRM webhook URL for the `indiamart` source.
3
Map buyer name and mobile number first, then include email, company, and requirement text.
4
Test with one real enquiry before enabling the automation for the whole account.
What CRM Does After Capture
Buyer enquiries are stored with source `indiamart` for easy filtering.
The sales team can track follow-ups, notes, reminders, and conversions from one place.
Webhook payloads are logged so failed mappings are easier to debug.
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/indiamart" \
-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.