
Name
The name field defines the variable identifier. This is the key you will use when referencing the value later in the flow. For example, if you’re variable’s name ispoints, the reference variable will be {local.points}.
If another Set Variable block uses the same name later in the flow, the previous value will be overridden.
Value
The Value field defines what is actually stored in the variable. This can be:- Static text (for example,
Hello world) - A number (for example,
42) - A boolean (
true/false) - A dynamic reference (for example,
{request.body.name}) - A computed value from previous blocks or input from a query parameter
Referencing Variables
To reference the value of a local se the following syntax:points can be referenced with {local.points}.
Variables created with this block are scoped to the current execution only, and will not persist after the request is completed.
