Category: Data Management
Type: Variable Node
Overview:
The Handle Variable node helps you store and manage values (like numbers, text, or data) that you want to use in different parts of your workflow. It makes your workflow smarter by allowing you to remember and reuse information without writing code.
The Handle Variable node is like a small memory box inside your workflow. You can give the box a name and put some information inside it — for example, a number, a message, or a file name. Later, you can open that box (using the variable name) in another node to use the same information again.For example, you can create a variable named price and give it the value 500. Then, in another node (like a calculator or message node), you can use {{price}} to get that same value without typing it again.
Variable Name:
Enter the name you want to give to your variable. This is how you will refer to it later in the workflow.
Example: price, username, total.Variable Value:
Enter the value you want to store inside the variable. It can be a number, text, or any data.
Example: 500, "Jelly", "Report.pdf".Node Description:
(Optional) A short note describing what this variable is used for.
This node stores your variable so it can be used by the next nodes in your workflow. The output simply confirms that the variable and its value are saved successfully.
Variable not found:
Make sure the Handle Variable node is executed before any node that uses it.Invalid value format:
If entering a JSON value, make sure it follows proper structure (for example, { "id": 1 }).Overwriting values:
If you use the same variable name in multiple nodes, the most recent value will replace the old one.