Features
Form Builder
Form Builder
Data Validation
Forms perform both client-side and server-side validation.
^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$.Webhook Payloads
When a form is submitted, we POST this JSON to configured webhooks:
{
"formId": "form_abc",
"submissionId": "sub_xyz",
"data": {
"email": "[email protected]",
"message": "Hello world"
},
"submittedAt": "ISO_DATE_STRING"
}

