The Start node is the entry point for all conversations in your flow. Every flow must have exactly one Start node.
When a conversation begins, the Start node receives the user's first message and stores it in a variable that can be accessed in subsequent nodes. The conversation then flows to the connected node.
Entry points allow you to create multiple conversation paths based on the first message sent by the user. When a user sends their initial message, the system matches it against the defined entry points to determine which path to follow.
https://m.me/yourpage?ref=summer_sale → Pre-fills "SUMMERSALE" → Matches "summersale" entry pointhttps://wa.me/1234567890?text=support → Pre-fills "support" → Matches "support" entry pointEntry Points
options
Define multiple entry points for your flow.
Each option creates a separate output handle on the node. The flow continues through the handle corresponding to the selected/matched option.
Requirements:
This node stores its output in a variable that can be referenced in subsequent nodes using the {{variable}} syntax.
{{variable}}
string
The first message sent by the user to start the conversation