AltScore
Nodes

Form List

Form List embeds full-screen native forms into conversations — forms that collect multiple fields at once. Instead of asking questions one by one, customers tap a button, fill out a multi-field form with built-in validation, and submit everything together. The system captures the response and maps individual fields to flow variables.

Forms are designed in a separate Form Builder tool, then referenced here by ID. This node presents a published form and waits for submission.

When to Use It

Form List fits scenarios where you need to collect several pieces of information efficiently. An onboarding flow that needs name, email, phone, and ID document can gather all four in a single form submission rather than four back-and-forth exchanges. Document collection benefits from native file upload UI. Multi-step applications can span several pages within one form.

The tradeoff is complexity: you need to design the form separately before using it here, and the customer experience shifts from conversational to form-filling.

Configuration

OptionDescription
formIdPublished form to display (selected from dropdown)
responseVariableVariable to store the entire form response as an object
variableMappingsMap individual form fields to flow variables
outOfFormMessageMessage sent when customer types instead of completing the form

Out-of-Form Message is sent when a customer types a regular message instead of submitting the form. The conversation stays on this node until the form is completed.

Form List configuration

Extracting Submitted Data

Data extraction is configured directly in the node — no separate Set Variable step required.

Response Variable saves the entire form response as a single object. All submitted fields are accessible under this variable (e.g., {{application_data.name}}, {{application_data.email}}).

Variable Mappings extract individual form fields into separate flow variables. Map name_responsecustomer_name, and subsequent nodes can reference {{customer_name}} directly. The mapping UI filters by type — an email field only shows email-type flow variables as targets.

Once extracted, use Customer Update to persist data to the borrower record, or Workflow Execute to trigger processing.

Output Handles

HandleWhen
SuccessCustomer submitted the form and data was extracted
ErrorForm not found, missing configuration, or API failure

Things to Know

Forms require separate setup. Design and publish forms in the Form Builder before referencing them here.

File fields are decrypted automatically. When customers upload documents through WhatsApp, the media arrives encrypted. The system decrypts it and delivers base64 data to your flow variables.

Customers must complete the form to proceed. Regular text messages while the form is pending trigger the out-of-form message but don't advance the conversation.

On this page