Back to Integrations
Integration Setup
Connect Housing.com to 365 RND CRM
Import property enquiries from Housing.com automatically.
Source Key: housingWebhook Ready
How To Connect
1
Use Housing.com lead forwarding or an external automation connector.
2
Post incoming enquiries to the CRM webhook with the integration secret.
3
Pass property and project context in `message`, `project`, or `property_name`.
4
Test the route with one enquiry and confirm assignment in the CRM before going live.
What CRM Does After Capture
Housing leads are tagged with source `housing` in the CRM.
Your team can work property portals from one follow-up workflow.
The stored webhook logs help trace missing fields quickly.
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/housing" \
-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.