A temporary variable created while a flow is running. It exists only for the duration of that flow.
Useful for short-term data storage—like session IDs, one-time calculations, or intermediate results that don’t need to be saved after the flow ends.
Create them inside your flow steps.
Use to get the event properties as variable
Access them with {{event.variableName}}.
{{event.variableName}}
You received an event trigger NewOrder with a property value = 74.32.
NewOrder
value = 74.32
NewOrder { "id": 453, "value": 74.32, "item": "Phone Case" }
You want to calculate the amount before taxes (15%).
Create a new event variable event.orderValueBeforeTax:
Now your flow has:
event.value = 74.32
event.orderValueBeforeTax = 64.64
You can use these variables in a confirmation SMS, for example:
Last updated 5 months ago
event.orderValueBeforeTax = {{event.value}} / 1.15
Hi {{contact.firstName}}, just to confirm your order #{{event.Id}} at the price of {{event.orderValueBeforeTax}} +tx for a total of {{event.value}}.