Webhooks allow you to automatically send your Jamform submission data to third-party applications like Zapier.
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.
_webhook
.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:
_webhook
field will not show up in submission emails or webhook data.