Submit a form
Submits an active form. The request body is a free-form object keyed by the form’s field names (as returned by GET /forms/{slug}); values are validated dynamically against each field’s definition (required/nullable, email format, in: for select/radio, array for checkbox, date for date fields). Include the honeypot field _hp_name as an empty string — if it is filled the submission is rejected as spam. Depending on the form type the submission may also create a contact message, subscribe the customer to a marketing list, and trigger notifications.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your API token.
Path Parameters
URL-friendly identifier of the form.
Body
Object keyed by the form's field names. Keys and validation rules are determined by the form definition.
Honeypot field. Must be left empty; a non-empty value causes the submission to be rejected as spam.

