Webhooks make it easy to send your form submissions exactly where they need to go, the moment they’re submitted. Instead of manually moving data around, you can automatically pass it to another app or your own server in real time. With Jotform, setting up a webhook is straightforward and quick, helping you streamline your workflow and keep all your systems perfectly in sync without extra work.
Sending Submission Data via a Webhook
Configuring a webhook on your form is simple and doesn’t take much time. You’ll be able to send your submission data exactly where it needs to go as soon as someone fills out your form. Here’s how to set it up:
- In Form Builder, in the orange navigation bar at the top of the page, click on Settings.
- Click on Integrations in the menu on the left side of the page.
- In the search bar, enter Webhooks, and then click on the Webhooks icon.
- Now, enter your endpoint or webhook URL in the Add WebHook field. To add more endpoints, click on Add New Webhook.
- Once done, click on Complete Integration.
- Finally, click on Finish.
That’s it. Your form is now all set to send submission data to your chosen endpoint automatically. If you ever need to make changes, you can easily update or remove the webhook anytime by heading back to the Integrations tab and clicking the Webhooks icon. This gives you full control to adjust your setup as your workflow evolves.
Notes
- The Webhooks integration has a 30-second request timeout, so make sure your endpoint can process the data quickly.
- If your form is encrypted, only encrypted data can be sent through the webhook.
- Keep in mind that your endpoint might have limitations that could prevent the request from going through. This could include things like:
- The connection is timing out before the request is fully processed.
- A maximum data size limit that’s smaller than your submission.
- Firewall or security rules that block the request.
Here’s an example PHP script you can use as a test endpoint for your webhook. It will save incoming form submissions to a text file, making it easy to debug and see exactly what data your form is sending:
<?php
// convert JSON to PHP
$data = json_decode($_REQUEST['rawRequest'], true);
// write data to a file
file_put_contents('webhook_test.txt', print_r($data, true), FILE_APPEND);
?>
We also have a related guide about How to Send Submission Data via a POST Request that you can check out.




Send Comment:
13 Comments:
331 days ago
Is it possible to use a dynamic token from our website within the Jotform platform to include it in API call headers?
More than a year ago
Hi,
My name is Dan,
Can I get your tutorial on email hacking using Weebly links for my project?
Here's how far I have gone on it, I created a Weebly website and created the link and it works fine for me, But I don't know how to capture the login data when someone opens the link and login, this is where I am having issues. Can you help or suggest the tools I need to do it correctly?
Dan.
More than a year ago
Hola Alguien me puede ayudar como enviar a make automatizar tareas
More than a year ago
Hi Team,
Is there any possibility to use POST method API's webhook integration. Ex: Body will have JSON parameter values.
More than a year ago
How do I authenticate my webhook url.
More than a year ago
how do i get webhook url
More than a year ago
This method does not provide a JSON output, rather it provides a form-data output
More than a year ago
I want to use a webhook to connect to my custom Mendix app, to send the form submission. I understand that I should just need to provide the Mendix defined webhook address (i.e., like the Zapier example above) to send the form data in JSON string format...
More than a year ago
If the webhook was not delivered, for example, downtime on the receiving end, will Jotform keep trying? If yes, how many times and with what interval between tries?
More than a year ago
So, we must send this a a server where we can use the data and manipulate it? So unless we have a php server to manipulate data you recomend use an automation platform?
Suppose i want to send to bubble database, do i need to use an automation platform right? bubble cant just automatiaccly update any row i suppose
More than a year ago
Please mera id hack Ho Gaya usko recover karne ke liye madad karo
More than a year ago
Hello. How can use an authenticated webhook?
More than a year ago
How to setup this with Discord webhook? I've tried once but it didn't work.