Appearance
Create workflow variable
Create a temporary value you can reuse later in the same workflow.
This is helpful when you need to calculate something once (like a total price or a status), then use it again in multiple actions.
Add the action
- In
Interface, open a workflow. - Click
Add an action. - Open
Flow (Logic)and selectCreate workflow variable.
Configure the variable
When you add Create workflow variable, you'll fill in:
Variable name: A name you'll recognize later (for exampletotal,status,selectedIds)Type: What kind of value it is (String,Number,Boolean,Object, orArray)Initial value: Optional starting value
Tip for the type
Pick the type that matches what you plan to store.
For example, use Array if you want to store a list of IDs, and Object if you want to store multiple fields together.
Use the variable later
After the variable is created, you can use it in actions that come after it.
For example, you can:
- Use it in a condition (like a
True/False split) - Bind it into a
Textelement - Send it to an API Endpoint
Common pitfalls
I can't find my variable in bindings
Make sure:
- The
Create workflow variableaction runs before the action where you want to use it. - You're looking in the same workflow run (variables don't carry over to other runs).

