Back to Integrations
Integration Setup

Connect TradeIndia to 365 RND CRM

Import B2B leads from TradeIndia with zero manual effort.

Source Key: tradeindiaWebhook Ready

How To Connect

1

Receive TradeIndia buyer enquiries through direct forwarding or an automation tool.

2

Forward each enquiry to the CRM webhook URL with the integration secret.

3

Capture buyer requirement text in `message` and company name in `company_name`.

4

After testing, point all new enquiries to the CRM endpoint.

What CRM Does After Capture

TradeIndia responses arrive with source `tradeindia`.
The sales team can assign tasks and reminders immediately after ingestion.
A single CRM pipeline now covers B2B and portal leads together.

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/tradeindia" \
  -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.