Webhooks Integration Paid Plan

webhooks screen

Paid users able to setup webhooks endpoint URL to receive submission data when a new submission is stored.

The payload will include x-hapi-forms signature in the HTTP headers. You may change it at your preference on the form settings page.

Here's the example of the payload.

{
  "data": {
    "submission": {
      "id": 1,
      "data": {
        "name": "John Doe",
        "email": "[email protected]"
      },
      "ip_address": "172.19.0.1",
      "user_agent": "insomnia/2021.4.1",
      "referer": null,
      "is_test": false,
      "created_at": "2021-04-24T10:39:04.000000Z",
      "updated_at": "2021-04-24T10:39:04.000000Z"
    }
  }
}