Back to Integrations
Integration Setup

Connect Facebook Lead to 365 RND CRM

Pull Facebook Lead Ads directly into your CRM in real time.

Source Key: facebookWebhook ReadyMost Popular

How To Connect

1

Open Facebook Lead Ads or your automation tool for the page or campaign.

2

Configure a webhook or automation action that posts each lead to your RND CRM webhook URL.

3

Send the shared integration secret in the `x-integration-secret` header or as a bearer token.

4

Map the lead name and mobile number at minimum, then pass email, company, and notes when available.

What CRM Does After Capture

Each lead lands in the CRM with source `facebook`.
The lead is assigned to the mapped user or falls back to your default CRM owner.
Raw webhook payloads are logged for troubleshooting.

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