Message
Node Card
Category: Logic & Flow Nodes
Type:
messageTypical position: Before a consent or acknowledgement step, or as a branching gate where the user must confirm or decline before proceeding.
Properties
Outputs & Errors
| Property | Type | Required | Description |
|---|---|---|---|
| Message | text | Yes | The message body displayed to the user on the screen. |
| Positive Answer | text | Yes | Label for the affirmative button (e.g. "Continue", "I Agree", "Yes"). Routes to the true output when clicked. |
| Negative Answer | text | Conditional | Label for the negative button (e.g. "Cancel", "Decline", "No"). Routes to the false output when clicked. Required unless Only Positive Answer is enabled. |
| Only Positive Answer | checkbox | No | When enabled, hides the negative button so the user can only proceed affirmatively. Defaults to false. |
| Show Buttons as Links | checkbox | No | When enabled, renders the answer buttons as inline text links instead of button elements. Defaults to false. |
| Output | Condition |
|---|---|
true | User clicked the Positive Answer button |
false | User clicked the Negative Answer button |
Common Next Nodes
Message (true)→Success Finaluser acknowledged: proceed
Message (false)→Failure Finaluser declined: end or redirect
Usage Notes
Use the Message node to surface important notices (such as terms of service acknowledgements, account action confirmations, or informational warnings) at any point in a flow. When only a single path is needed (e.g. an informational notice before continuing), enable Only Positive Answer to remove the decline option.