Webhooks & Workflows
Webhooks let you push form submission data to external systems automatically. Every time someone submits a published form, Formidable sends an HTTP POST request to the URLs you configure.
Workflows are the visual editor where you connect a form's submission trigger to one or more webhook endpoints. Open the Workflow tab on any published form to configure which endpoints receive data when submissions arrive.
How it works
- A user submits a published form.
- Formidable fires the Form Submitted trigger.
- The workflow delivers the submission data to every connected webhook endpoint in parallel.
- Each delivery is signed with HMAC-SHA256 so your server can verify authenticity.
Current scope
- One trigger type: form submission.
- One action type: webhook (HTTP POST).
- Fan-out: a single trigger can deliver to multiple webhook endpoints simultaneously.
Next steps
- Setting Up Webhooks: create endpoints, connect them to a trigger, save and activate.
- Payload & Signature Verification: payload format, signing algorithm, and verification code samples.