Zapier · Make · Pabbly
One webhook step connects thousands of apps to your lead board. The pattern is identical everywhere: trigger on a new form entry, then POST JSON to your Atlas webhook URL.
{token} as a placeholder; your real URL never appears on this public site.Zapier#
1. Trigger: your form app (Typeform, Google Forms, Facebook Lead Ads, JotForm, …) → “New entry”.
2. Action: Webhooks by Zapier → Custom Request (or POST). Method POST, URL = your webhook URL, Data Pass-Through off, data = the JSON below with your trigger's fields inserted, and a headerContent-Type: application/json.
3. Test — the sample lead appears on your board within seconds.
Make (Integromat)#
1. Trigger module:your form app's “Watch responses”.
2. Action module: HTTP → Make a request. Method POST, URL = your webhook URL, Body type Raw, Content type JSON (application/json), request content = the JSON below with mapped fields.
Pabbly Connect#
1. Trigger: your form app.
2. Action: API by Pabbly → POST. URL = your webhook URL, payload type JSON, then add the fields below as key/value rows.
The JSON to send (all three)#
{
"name": "{{name from your trigger}}",
"phone": "{{phone from your trigger}}",
"email": "{{email from your trigger}}",
"destination": "{{destination, if your form asks}}",
"message": "{{message / comments}}",
"source": "website"
}