Skip to main content
The Input and Output functions handle communication for a conversation. You can use say to send messages to the user and addToInput to pass data to the next Node.

addToInput

Syntax: addToInput(key, value) Writes a value into the Input object for the execution. This function allows you to store data in the Input object, which can be accessed later in the execution context.

output

Syntax: output: TSayFunction Alias: say Sends a message to the user.

say

Syntax: say: TSayFunction Alias: output Sends a message to the user.
I