Connect 99acres to 365 RND CRM
Sync property leads from 99acres straight into your pipeline.
How To Connect
Use 99acres lead forwarding or your middleware automation to call the CRM webhook.
Send contact name and phone at minimum; add property details in `message` or `notes`.
Use `assigned_to` to route specific properties or projects to dedicated agents.
Validate one test enquiry so the team sees the lead appear with the correct owner.
Include your workspace UUID via `x-tenant-id` (header) or `tenant_id` (body/query) — required for multi-tenant routing.
What CRM Does After Capture
Supported Fields
The backend also normalizes common aliases like `full_name`, `mobile`, `company`, `notes`, and nested `data.*` webhook fields.
Example Payload
{
"name": "Rahul Verma",
"phone": "+91 90000 12345",
"email": "rahul@example.com",
"company_name": "Home Buyer",
"message": "Interested in 2 BHK near Ahmedabad. Budget 65L.",
"assigned_to": "clerk_user_id_or_internal_user_id"
}Sample Request
curl -X POST "https://voogyo.com/api/integrations/webhook/99acres" \
-H "Content-Type: application/json" \
-H "x-integration-secret: <your-secret>" \
-H "x-tenant-id: <your-tenant-uuid>" \
-d '{
"name": "Rahul Verma",
"phone": "+91 90000 12345",
"email": "rahul@example.com",
"company_name": "Home Buyer",
"message": "Interested in 2 BHK near Ahmedabad. Budget 65L.",
"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.