Forms
Enables creation, management, and retrieval of HubSpot forms used for lead capture and contact data collection.
Table Specific Information
Forms represent the forms on your website that a user or contact can fill out, such as a survey.
SELECT
When selecting forms, they can only be filtered by GUID. For example:
SELECT * FROM Forms WHERE GUID = '123456789'
Columns
| Name | Type | ReadOnly | References | Description |
| GUID [KEY] | String | True |
Unique identifier key assigned to the form. | |
| Name | String | False |
Internal name of the form. | |
| Action | String | False |
Action or behavior executed when the form is submitted, such as sending data or triggering a workflow. | |
| CSSClass | String | False |
Cascading style sheet (CSS) class assigned to the form for styling purposes. | |
| IsDeletable | Boolean | False |
Boolean flag indicating whether the form can be deleted. | |
| EmbeddedCode | String | False |
Embedded JavaScript code included with the form. | |
| FollowUpId | String | False |
Identifier for a follow-up action or form, if applicable. | |
| IgnoreCurrentValues | Boolean | False |
Boolean flag indicating whether to ignore default or current values when the form is submitted. | |
| Method | String | False |
HTTP method (such as POST or GET) used when submitting the form. | |
| MigratedFrom | String | True |
Information about the original source of the form if it was migrated from another platform. | |
| NotifyRecipients | String | False |
Comma-separated list of email addresses to notify when the form is submitted. | |
| PerformableHTML | String | False |
HTML content that should be rendered or performed within the form. | |
| Redirect | String | False |
URL to redirect users to after successful form submission. | |
| SubmitText | String | False |
Text displayed on the submit button of the form. | |
| CreatedAt | Datetime | True |
Timestamp showing when the form was created. | |
| UpdatedAt | Datetime | True |
Timestamp showing when the form was last updated. | |
| FormFieldGroupsAggregate | String | False |
Collection of groups containing the fields available in the form. | |
| SelectedExternalOptionsAggregate | String | False |
Selected external options for the form, such as default lifecycle stages used to categorize companies and contacts. | |
| MetaDataAggregate | String | True |
Metadata details related to the form, including configurations and additional properties. | |
| ExtraUrlParameters | String | True |
Optional input-only property for specifying additional query parameters when retrieving form data. Format: 'param1=value1, param2=value2, param3=value3'. |