- Sync to your own database — a waitlist form pushes each signup directly into your backend, calculates a queue position based on referral count, and sends a personalized confirmation email
- Trigger a workflow — a booking form fires your internal scheduling logic the moment someone submits, rather than waiting for a nightly sync
- Connect to any tool — send submissions to a CRM, Slack channel, data warehouse, or any system that accepts HTTP, without being limited to pre-built integrations
- Filter before processing — use conditions to only fire the webhook when specific criteria are met, so your backend only receives the submissions it cares about

Create a Webhook

1
Open form settings
Open your form and go to Settings → Integrations.
2
Add a webhook
Click Add connection and select Webhook.
3
Enter your endpoint URL
Paste your server’s URL into the Webhook URL field. Click Test to send a sample request and verify your endpoint is reachable.
4
Choose trigger events
Check one or both events:
- Submission Created — fires when a new entry is submitted
- Submission Updated — fires when an existing entry is edited
5
Add conditions (optional)
Toggle Only trigger when conditions matched to filter which submissions fire the webhook. For example, only notify your backend when
Role is Founder or Developer.6
Review push fields
Expand Push fields to see exactly which fields and API codes will be included in the payload. All fields are pushed by default.
7
Create
Click Create. The webhook appears in My connections and starts firing immediately.
Trigger Events
Payload Format
FormHug sends aPOST request with Content-Type: application/json. The body follows this structure:
Entry fields
The exact API codes for your form fields (
field_1, field_2, etc.) are listed in the Push fields table inside the webhook configuration dialog.Receiving the Webhook
Your endpoint must return a2xx response. Here is a minimal example in Node.js:
Manage Webhooks
Active webhooks appear in My connections on the Integrations page.
Related
Google Sheets
Sync submissions to a spreadsheet automatically
Notion
Create Notion database pages from form submissions
Slack
Post submission alerts to a channel or direct message
Zapier
Automate workflows across CRM, email, and productivity apps
Stripe Collect Payments
Collect payments directly inside your form
Submissions
View and manage all entries in FormHug