Skip to main content

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

  1. A user submits a published form.
  2. Formidable fires the Form Submitted trigger.
  3. The workflow delivers the submission data to every connected webhook endpoint in parallel.
  4. Each delivery is signed with HMAC-SHA256 so your server can verify authenticity.
tip

Start with a single webhook endpoint for testing. You can add more endpoints later without changing existing ones.

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