Skip to main content
The Input Text node types text into form fields, text areas, and other editable elements.

Parameters

Examples

Basic Text Input

Type into a text field:

Using Input Variables

Type dynamic values from workflow inputs:

Submit After Input

Type and press Enter to submit:

Append Text Without Clearing

Add text to existing content:

Using LLM_VISION

Type into a field identified by AI:

Data Transformation

Transform data before typing using JSONata:
This converts a date from YYYY-MM-DD format to MM/DD/YYYY format.

Notes

  • By default, the input field is cleared before typing new text
  • Use do_not_clear: true when you need to append to existing content
  • The submit_after_input option is useful for search fields that trigger on Enter
  • You can use JSONata expressions for data transformation
  • For prepending text or custom handling of existing input content, first extract the current value using an ExtractDatamodel node, then combine it with your new text in the Input Text node (e.g., "{{context.inputs.prefix}}{{context.existing_value}}").