FormSubmissions
Fetches submission data for specified forms, useful for analyzing form performance and lead generation.
Table Specific Information
SELECT
When selecting form submissions, they can only be filtered by FormGUID. For example:
SELECT * FROM FormSubmissions WHERE FormGUID = '123456789'
SELECT * FROM FormSubmissions WHERE FormGUID IN ('123456789', '121314515')
Columns
| Name | Type | References | Description |
| FormGUID | String | Unique identifier key assigned to the form from which the submission was made. | |
| PageUrl | String | URL of the page where the form was submitted. | |
| SubmittedAt | Datetime | Timestamp indicating when the form submission occurred. | |
| Name | String | Name of the form field submitted. | |
| Value | String | Value entered or selected for the form field submission. |