Webhooks

You may forward your submissions to other services via custom webhooks. To set up a webhook go to the Webhooks dashboard, enter your webhook name and URL in the form and click Save. That's it. You may also temporary disable and re-enable already added webhooks.

We will forward all non-spam submissions received to an endpoint with a configured webhook URL. If the webhook fails, we will retry up to 3 times with 5 minutes period between retries. After the 3rd fail webhook will be temporary disabled and you'll receive an email about it. The format of payload sent to webhooks will be exactly what we receive on the inital form submission.

For example, if your form looks like this:

<form action="" id="contact-form" method="POST" accept-charset="UTF-8">
  <input type="text" name="name">
  <input type="email" name="email">

  <button type="submit">Send</button>
</form>

Then the payload we will send to your webhook would be like this:

{
  name: "John Doe",
  email: "mail@example.com"
}
Note: Only submissions that are not flagged as spam will trigger a webhook.