Webhook Field

Webhooks allow you to automatically send your Jamform submission data to third-party applications like Zapier.

What is a Webhook?

A webhook is a third-party application URL where Jamform sends a POST request with form submission data each time it receives a submission. This is useful for triggering additional processing or actions beyond Jamform's scope.

Setting Up a Webhook

  1. In your form, add a hidden input field with the name _webhook.
  2. Set the value of this field to the desired webhook URL.
  3. Upon successful submission, Jamform will forward submission data to the specified webhook URL.

Example HTML:

<form action="YOUR_JAMFORM_ENDPOINT" method="post">
  <!-- Other form elements -->
  <input type="hidden" name="_webhook" value="https://your-webhook-url.com" />
  <button type="submit">Submit</button>
</form>

_Notes:

  • The _webhook field will not show up in submission emails or webhook data.