Connect Boosterpack Forms to Make
Send form submissions to any of Make's 2,000+ apps — Google Sheets, Slack, Airtable, HubSpot, and more. Make (formerly Integromat) offers a generous free tier and powerful multi-step scenarios.
Setup Guide
Works with any Make plan, including the free tier.
In Make, create a new scenario. Add a Webhooks module and select Custom webhook.
Click Add to create a new webhook. Make will give you a unique URL that looks like:
https://hook.make.com/abc123xyz456
Copy this URL — you'll need it in step 3.
Add the next module(s) in your scenario — this is where submissions go. Popular choices:
- •Google Sheets → Add a Row
- •Slack → Create a Message
- •Airtable → Create a Record
- •HubSpot → Create a Contact
Make supports branching — you can send to multiple destinations in a single scenario.
In your Boosterpack Forms dashboard, edit your form and set the Webhook URL to the Make URL from step 1.
Or via the API:
curl -X PATCH "https://boosterpackforms.com/api/forms/<FORM_ID>" \
-H "Authorization: Bearer $BPF_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "addWebhookUrl": "https://hook.make.com/abc123xyz456" }'Submit your form once. In Make, click Re-determine data structure on the webhook module — it will detect your form fields automatically.
Map the fields (e.g. fields.name, fields.email) to your action module, and turn on the scenario.
Webhook Payload
This is the JSON that Boosterpack Forms sends to Make on every submission:
{
"event": "form.submission",
"formId": "a1b2c3d4-...",
"submittedAt": "2026-03-04T12:00:00.000Z",
"fields": {
"name": "Jane Smith",
"email": "jane@example.com",
"message": "Hi, I'd like to learn more."
},
"meta": {
"host": "example.com"
}
}Make will auto-detect the structure. You can then use fields.name, fields.email, etc. as variables in your action modules.
Email + Make: You still receive submissions via email as usual. The webhook to Make runs alongside email delivery — you get both.
Why Make over Zapier? Make's free tier includes 1,000 operations/month (vs Zapier's 100 tasks/month). If you're on a budget, Make gives you more room.
Webhooks are available on the Professional and Business plans. Email delivery works on all plans including Free.
Other integrations
Boosterpack Forms has native support for Slack, Discord, Teams, Google Chat, and Telegram — just paste the webhook URL. Connect to thousands more apps via Zapier, Make, n8n, Google Sheets, Notion, Airtable, and HubSpot.
Webhooks available on Professional & Business plans