Skip to content

Form Triggers

Form triggers let you create hosted forms that trigger a workflow when submitted. QuickFlo includes a full drag-and-drop form builder with live preview, field validation, branding options, and optional password protection — no external form tools needed.

Each form gets a unique public URL that you can share with anyone. When someone submits the form, QuickFlo starts the workflow with the submitted values as input data.

  1. Open a workflow in the builder

  2. In the Library sidebar under Triggers, click Form

  3. A form trigger node appears on the canvas — click it to configure

Workflow builder showing the Form trigger option in the Library sidebar and a Form node on the canvas

Once added, you should provide a unique form name. QuickFlo will generate a unique URL for the form using the name you provide. Click the trigger node to see the URL, edit the form, or open it in a new tab.

Edit Form Trigger dialog showing the form name, public URL, title, and field count
FieldDescription
NameHuman-readable identifier for the trigger (optional)
Form URLThe public URL where the form is hosted — share this with users
TitleThe form title shown at the top of the page
FieldsSummary of configured fields

Click Edit Form to open the form builder.

The form builder is a visual drag-and-drop editor with three panels:

Form builder with field palette on the left, form layout in the center, and live preview on the right

Fields palette (left) — drag field types onto the form:

CategoryField Types
Basic InputsText, Long Text, Number, Email, Phone, Password
SelectionDropdown, Multi-Select, Checkbox
SpecialFile Upload, Date

Form layout (center) — arrange fields, set labels, mark fields as required, and configure field IDs. The field ID is the key used to access the value in your workflow (e.g., a field with ID first_name is accessed as {{ initial.first_name }}).

Live preview (right) — see exactly what the form looks like to end users as you build it. The preview updates in real-time as you add and configure fields.

Click any field in the form layout to configure it:

  • Label — the display name shown to users
  • Field ID — the key used in template expressions (auto-generated from the label, or set manually)
  • Required — whether the field must be filled before submission
  • Placeholder — hint text shown inside the input
  • Default value — pre-filled value (optional)

For Dropdown and Multi-Select fields, you also define the list of options.

Click the settings gear icon in the form builder toolbar to open Form Settings.

Form Settings showing branding options, access control with credential authentication, bulk upload toggle, and error handling

Customize the look of your hosted form page:

FieldDescription
Logo URLURL of an image displayed at the top of the form
Page TitleCustom browser tab title (defaults to the form title)
Favicon URLCustom favicon for the hosted form page
  • Success message — shown to users after a successful submission (or use a Return step to control the response dynamically)
  • Error message — custom message shown when submission fails

Enable bulk upload mode to let users upload a CSV file to submit multiple entries at once. Each row in the CSV becomes a separate workflow execution.

Toggle Expose detailed error messages to control whether users see the actual error message from the workflow or a generic error. Keep this off in production to avoid leaking internal details.


By default, forms are public — anyone with the URL can submit them. To restrict access, you can require users to sign in with credentials before seeing the form.

Form users are managed as Form Auth connections. Each connection represents a username/password credential.

  1. Navigate to Connections in the QuickFlo sidebar

  2. Click New Connection and select Form Auth

  3. Fill in the credentials:

    Form Auth connection dialog with username, password, and optional metadata fields
    FieldDescription
    UsernameThe user’s identifier (email, username, etc.)
    PasswordPassword for form access
    MetadataOptional key-value pairs passed to the workflow on submission (e.g., department, role, permissions)
  4. Click Save

You can create as many Form Auth connections as you need — each represents a different user who can access the form.

  1. Open the form builder and click the settings gear icon

  2. Under Access Control, change Authentication to Require credentials

  3. In Authorized Users, select the Form Auth connections that should have access

  4. Optionally add a Login Hint — a message displayed on the sign-in screen (e.g., “Use your company email and the password provided by your admin”)

  5. Close settings and save the workflow

Now when someone visits the form URL, they’ll see a login screen before the form loads. Only users with matching Form Auth credentials can access it.


When a form is submitted, the field values are available in the workflow via {{ initial.* }}:

{{ initial.first_name }}
{{ initial.email }}
{{ initial.group }}

The form context object provides submission metadata:

{{ initial.form.formName }}
{{ initial.form.submittedAt }}
{{ initial.form.triggerId }}

For authenticated forms, the user’s identity is also available:

{{ initial.form.authenticatedUser.username }}
{{ initial.form.authenticatedUser.connectionName }}
{{ initial.form.authenticatedUser.metadata.department }}

By default, users see a generic success message after submitting. To customize the response, add a Return step to your workflow — the step editor shows a Form Response tab when the workflow has a form trigger.

Return step Form Response tab showing response type, message, description, redirect URL, response details, and action buttons
FieldDescriptionExample
Response TypeThe visual style of the response screenSuccess, Error, Warning, Info
MessageMain heading shown to the user — supports templatesThanks, {{ initial.name }}! Your submission was received.
DescriptionOptional subtitle below the headingWe'll review your submission and get back to you shortly.
Redirect URLIf set, redirects the user instead of showing a message — supports templateshttps://example.com/thank-you?ref={{ initial.email }}

All text fields support template expressions, so you can personalize the response with the submitted form data or values from earlier workflow steps.

The Response Type dropdown controls the icon and color theme of the response screen:

Response Type dropdown showing Success, Error, Warning, and Info options with colored icons
TypeIconUse Case
SuccessGreen checkmarkSubmission processed successfully
ErrorRed exclamationSubmission failed or was rejected
WarningYellow triangleSubmission accepted with caveats
InfoBlue infoInformational acknowledgment

Add key-value pairs that are displayed below the message as a structured data table. This is useful for showing the user results from the workflow — like a reference number, a summary of what was processed, or data fetched from an API.

LabelValue
leads{{ http-get-leads.body }}
Reference ID{{ $util.uuid }}

Click + Add Detail to add more rows. Objects and arrays are rendered as formatted tables automatically.

Add buttons to the response screen for follow-up actions. Each button has a label, URL, mode, and style.

Action Buttons configuration showing two buttons with label, URL, mode, and style fields
FieldDescription
LabelButton text — supports templates
URLThe target URL — supports templates (e.g., https://my-crm.com/orders/{{ http-create-order.body.orderId }})
ModeOpen Link opens the URL in a new tab. Send Request fires an HTTP request to the URL without navigating away — useful for triggering another webhook or workflow.
StylePrimary (filled button) or Outline (bordered button)

Click + Add Action Button to add more. Buttons appear at the bottom of the response screen in the order you define them.

Successful submission — the response screen shows the message, response details as a formatted table, action buttons, and a “Make Another Submission” link:

Form success response showing a green checkmark, thank you message, Leads data table, and View Order Details and Submit Notification action buttons

Failed submission — if the workflow errors and “Expose detailed error messages” is enabled in form settings, the user sees the error message along with the execution ID for debugging:

Form error response showing a red icon, Submission Failed heading, error message, execution ID, and Try Again button