Webhooks#
Use FormBeep webhooks to receive WhatsApp notifications from any platform that supports outgoing webhooks — no embed script needed.
Each webhook has its own unique URL, name, platform type, and can be assigned to specific WhatsApp numbers on your account.
Jump to:
Create a webhook#
- Go to the FormBeep Dashboard → Webhooks
- Click + Create webhook
- Give it a name (e.g. “Contact form”), choose the platform (Webflow or Custom), and select which WhatsApp numbers should be notified
- Click Create — your webhook URL appears in the list
- Copy the URL and paste it into your form platform
If no numbers are selected, notifications go to all numbers on your account.
Webflow#
Works on all Webflow plans including free.
Step 1: Create a Webflow webhook in FormBeep
Follow the steps above, selecting Webflow as the platform.
Step 2: Add the webhook in Webflow
- Open your Webflow project
- Go to Pages → select the page with your form
- Click on your form element
- In the right panel, click the Settings gear icon on the form
- Scroll to the Send to section
- Click the ➕ icon and select Webhook
- Paste your FormBeep webhook URL
- Ignore the secret message field
- Publish your site
Step 3: Test
Submit a form on your published site. You’ll receive a WhatsApp notification with the submitted field values. Webhooks do not fire in Webflow’s preview mode.
Custom#
Use this for Jotform, Tally, or any platform that sends form data as JSON.
Step 1: Create a Custom webhook in FormBeep
Follow the steps above, selecting Custom / Other as the platform.
Step 2: Add the webhook in your platform
Paste the URL wherever your platform asks for a webhook endpoint. Common locations:
- Jotform: Form → Settings → Integrations → Webhooks → Add
- Tally: Form → Integrations → Webhooks → Add endpoint
- Other: any “Webhook URL” or “Outgoing webhook” setting
Payload format
FormBeep expects a flat JSON object with your form fields as top-level key-value pairs:
{
"name": "Jane Smith",
"email": "jane@example.com",
"message": "Hello"
}Nested objects, arrays, and common metadata keys (event, eventId, createdAt, webhookId, timestamp) are ignored automatically.
Step 3: Test
Submit a test form. You’ll receive a WhatsApp notification with the field values.
Need help? Reach out at hello@formbeep.com or message @rishikeshs on Discord.