Back to Integrations
Integration Setup
Connect Google Ads to 365 RND CRM
Capture Google Ads leads without any manual copy-pasting.
Source Key: google_adsWebhook Ready
How To Connect
1
Use Google Ads lead form extensions with a webhook-compatible middleware or automation.
2
Forward each submission to the CRM webhook URL for `google_ads`.
3
Include campaign context in `message`, `campaign`, or `campaign_name` so the CRM keeps the source detail.
4
Review the CRM lead after a test submit before turning the automation on for all campaigns.
What CRM Does After Capture
Ad responses arrive in the CRM immediately with source `google_ads`.
Campaign context can be stored inside notes for later analysis.
No one has to manually export CSV leads from the ads dashboard.
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/google_ads" \
-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.