Skip to main content
With the Question node you send a message to the user and wait for their response before continuing with the flow. The response is automatically saved in a memory variable that you define.
Unlike the Text node, the Question node pauses the flow until the user responds.

Configuration

General tab

  • Text: Write the message or question you want to send to the user. You can include variables and emojis.

Advanced tab

  • Save response as: Define the name of the variable where you save the user’s response (for example: userEmail).
  • Use memory: If you enable this option, the node checks whether the variable already has a saved value. If it does, it does not ask again and continues automatically.
The response becomes available at {{$memory.userEmail}} and you can use it in any subsequent node in the flow.

Input types

The Question node supports different capture types depending on what you need from the user:

Location format

When you capture a location, the response is saved as a JSON object:

Limits by channel

Example

If you configure:
  • Text: What is your name?
  • Save response as: userName
The user’s response will be saved in {{$memory.userName}} and you can use it in any subsequent node in the flow.