Settings
Configure how leads flow into this app.
Inbound webhook
Point a Pabbly Connect workflow (or any automation that watches your Meta Lead Ads forms) at this app's webhook endpoint to create leads here automatically.
/webhook/meta?key=d401bf8bd8a7538c2df1ae351c54ffa59e60
Full URL: take the address you use to open this app in your browser and append the
path above, e.g. https://your-app-domain/webhook/meta?key=d401bf8bd8a7538c2df1ae351c54ffa59e60.
Expected payload
Send a JSON POST body with any of these fields — all are optional except at least one of name, email or phone:
{
"full_name": "Jane Doe",
"email": "[email protected]",
"phone": "+1 555 0100",
"company": "Acme Inc.",
"campaign_name": "Summer Promo",
"ad_name": "Ad Set 1",
"form_name": "Get a quote"
}
Meta's raw field_data array format (as forwarded by many
automation tools) is also accepted:
{
"campaign_name": "Summer Promo",
"form_name": "Get a quote",
"field_data": [
{ "name": "full_name", "values": ["Jane Doe"] },
{ "name": "email", "values": ["[email protected]"] },
{ "name": "phone_number", "values": ["+1 555 0100"] }
]
}