Subscribe to Form Submissions

View as Markdown
### **Overview** Registers a new REST Hook. Once subscribed, KiwiForm will push real-time submission data to your `hookUrl` every time the specified form is completed. ### **Request Body (JSON)** | Field | Type | Required | Description | | --- | --- | --- | --- | | `hookUrl` | `string` | **Yes** | The destination URL where POST requests will be sent. | | `form_id` | `string` | **Yes** | The ID of the form you want to monitor. | ### **Example Webhook Payload** ``` json { "id": "res_abc123", "event": "form_submission", "form_id": "form_xyz456", "Email": "[email protected]" } ```

Request

This endpoint expects an object.
hookUrlstringRequired
form_idstringRequired

Response

OK
idstring