ChatbotNode GuidesActionQuestion

Question Node

Asks the contact a question with a fixed set of options, then routes the conversation down a different path depending on which option they pick. Use it for simple multiple-choice branching — “What can we help you with today?” with a handful of numbered options.


How to Use

  1. Drag a Question node onto the canvas and connect it from the preceding node.
  2. Type the question text (required).
  3. Add one or more options — each becomes a numbered choice the contact can reply with.
  4. Connect each option’s output to whichever node should run when the contact picks it.

Matching a Reply

The contact’s reply is matched against each option’s key/label. If it doesn’t match any option, the bot doesn’t just dead-end — it re-prompts with the same options and counts the miss. After a limited number of consecutive misses (configured via an environment setting, not per-node), the flow ends automatically rather than looping forever.


Validation

  • Question is required.
  • At least one option is required, and every option must have non-empty text.
  • Options are capped at 20 characters each in the editor. There’s no fixed maximum number of options.

Summary

  1. Add the node, connect it from the previous step.
  2. Enter the question text.
  3. Add your options (at least one, 20 characters each).
  4. Wire each option to its own next node.