Forms placed on an AIUNIFY Funnels Landing Page can collect visitor-submitted information and store the resulting submission as a Lead.
Each successful Landing Page form submission is associated with the Landing Page that received it.
The public form workflow sends a submission to the Landing Page form-submission operation using the Landing Page's unique code.
This lets AIUNIFY Funnels identify which Landing Page should own the submitted Lead information.
The confirmed public form-submission route is protected by an application throttle of 60 requests per minute.
This is an application-level traffic control. It should not be treated as a substitute for thoughtful form design or other appropriate anti-abuse protections.
When processing a form submission, AIUNIFY Funnels first searches for the Landing Page using the supplied Landing Page code.
If that Landing Page cannot be found, the submission workflow returns:
Not found page id
AIUNIFY Funnels collects submitted visitor fields by their form field names.
If the form does not submit usable named fields, the application can return:
Not found any fields submit. You need config name for fields in builder
When creating or editing a form in the Builder, make sure each field that should be captured has an appropriate field name.
The submission workflow excludes several technical request values from the visitor information saved as Lead fields.
The confirmed excluded field names are:
_browser_os_lang_timezone_tokenThe remaining named fields are treated as submitted Lead information.
AIUNIFY Funnels specifically recognizes these submitted email field names:
emailEmailEMAILThese are normalized to the stored field key:
email
For the most predictable workflow, use email as the form field name.
If the form sends field names but all collected field values are empty, AIUNIFY Funnels returns:
Not found any fields submit. Please enter some fields
Design forms so that the fields required for the campaign are clearly marked and validated appropriately for the visitor.
When a submitted form contains an email field, AIUNIFY Funnels checks existing Landing Page FormData for the same email address on that same Landing Page.
If that email has already been captured for the Landing Page, the form submission can return:
Your Email existed!
This duplicate check is tied to the specific source Landing Page rather than being described by the confirmed workflow as a global account-wide email prohibition.
When the form contains usable submitted information, AIUNIFY Funnels creates a Lead/FormData record with the confirmed data structure below.
| Name | The source Landing Page's name. |
| Type | landingpage |
| Source ID | The internal ID of the Landing Page that received the submission. |
| User ID | The user who owns the source Landing Page. |
| Field Values | The visitor-submitted named form fields and their values. |
| Browser | The detected browser family. |
| OS | The detected operating-system/platform family. |
| Device | The device classification returned by the application's tracking helper. |
The form-submission controller invokes the application's browser-detection workflow when creating the Lead.
This is why the Leads workspace can display Browser, OS, and Device information separately from the form fields entered directly by the visitor.
Browser, OS, and Device information are stored as Lead record attributes rather than as ordinary visitor-created form field keys.
For example, a visitor may submit fields such as:
The Browser, OS, and Device values are then maintained separately by the application.
After a Lead record has been created, AIUNIFY Funnels checks whether the Landing Page's Autoresponder configuration qualifies for processing.
The Autoresponder requires the configured values to be present and a valid submitted email field.
When those conditions are satisfied, the application dispatches its Landing Page Autoresponder job.
The application also checks whether a mailing integration is configured and whether the Lead contains a valid email address.
When the integration rules qualify, AIUNIFY Funnels dispatches its Landing Page integration job.
This is why the internal Lead record, Autoresponder, and mailing-platform contact are related but distinct parts of the submission workflow.
A Lead may be successfully stored inside AIUNIFY Funnels before the configured mailing-platform operation is processed.
When testing Mailchimp, Acellemail, or Mailwizz, verify both:
After successful Lead creation and the applicable background-job checks, the submission response returns the Landing Page's configured:
The public page uses this information for the visitor's configured post-submission journey.
Normal Landing Page form submissions use the form-submission workflow documented here.
Payment components use the separate ecommerce order-submission workflow covered later in this manual.
Do not assume that testing one automatically validates the other.
email for the email field when email-based processing is required.Operating principle: A reliable Landing Page form requires correctly named fields, meaningful submitted values, and end-to-end verification in both AIUNIFY Funnels and any connected email system.