Connect Boosterpack Forms to Zapier
Send form submissions to any of Zapier's 7,000+ apps — Google Sheets, Slack, HubSpot, Notion, Mailchimp, and more. No code required. Just paste a webhook URL.
Setup Guide
Works with any Zapier plan, including Free.
In Zapier, create a new Zap. For the trigger, search for Webhooks by Zapier and select Catch Hook.
Zapier will give you a unique webhook URL that looks like:
https://hooks.zapier.com/hooks/catch/12345/abcdef/
Copy this URL — you'll need it in step 3.
Add an action step in Zapier — this is where submissions go. Popular choices:
- •Google Sheets → Create Spreadsheet Row
- •Slack → Send Channel Message
- •Notion → Create Database Item
- •HubSpot → Create Contact
- •Mailchimp → Add Subscriber
In your Boosterpack Forms dashboard, edit your form and set the Webhook URL to the Zapier 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://hooks.zapier.com/hooks/catch/12345/abcdef/" }'Submit your form once. Go back to Zapier and click Test trigger — it should pick up the submission. You'll see the fields (name, email, message, etc.) available to map in your action step.
Map the fields to your action (e.g. fields.name → Sheets column "Name"), test the action, and publish your Zap.
Field Mapping
When mapping fields in Zapier, you'll find your form fields nested under fields:
{
"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"
}
}In Zapier's field mapping, select Fields Name, Fields Email, Fields Message, etc. Zapier automatically flattens the nested fields object for you.
Email + Zapier: You still receive submissions via email as usual. The webhook to Zapier runs alongside email delivery — you get both.
Multiple destinations: Want to send to Sheets AND Slack? Add multiple action steps in the same Zap. Zapier handles the fan-out for you.
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