Dynamic Variable Syntax
To manually add Dynamic Variables to a workflow, you can use our Expression Language syntax. This involves wrapping the variable in double curly brackets . This syntax specifies the variable type and its reference path within the workflow, enabling dynamic data usage across different workflow components.
Whether an expression is entered manually or chosen using the variable picker,it will be saved in the Workflow YAML
using the syntax shown below.
Dynamic Variables follow a structured syntax enclosed within double curly braces
{{ }}
.
The syntax specifies the variable type and its reference path within the workflow. Understanding this format allows you to insert variables manually when necessary or desired.
Tip
When working with dynamic variables, sometimes the value can be null
, which can cause issues when displaying values in the variable picker or workflow inputs.
Here is a useful tip to replace null
with a default value:
- If a variable might be null, you can use a ternary-style expression to replace it with a fallback value:
{{event.payload.case.vendors != null ? event.payload.case.vendors : "N/a"}}
- Another approach is to force the variable into a string format, which can ensure it does not remain null:
str({{steps.s2.output}})
General Syntax Structure
-
category
defines the dynamic variables type (e.g., inputs, steps, event, metadata). -
identifier
specifies the exact reference within the category. -
For example, referencing an input parameter named ‘slack_channel’:
Adding Dynamic Variables Manually in a Workflow
Workflow Input Parameters
To reference data entered in workflow inputs, use the following syntax:
param_name
represents the name you assigned to the input parameter.
Event payload
To reference data returned from an event payload that triggered an Event-Based Workflow, use the following syntax:
Step Output Variables
To reference data returned from a step’s output, use the following syntax:
The S
in steps.S1.output
represents a step in the workflow, and the number
following it (1
in this case) indicates the specific step being referenced.
Each step in a workflow is assigned a unique identifier (S1
, S2
, etc.),
allowing you to retrieve outputs from a particular step.
💡 You can also use last
instead of a step ID
to reference the most recent step output:
Step Status
To check the execution status of a previous step, use the following syntax:
Workflow Variables
To use Workflow’s variables created by the Set Variable Action, use the following syntax:
Metadata Variables
To access metadata (workflow-related information), use the following syntax
Python Actions
The syntax for referencing data returned from Python actions is different. In steps that include Python actions, you need to use the context
variable to access dynamic variables. This means that all the expressions mentioned above can be accessed in Python using the following syntax:
In Python actions, variables can be assigned a value, by using the following syntax:
Best Practices
- Use the Variable Picker to avoid syntax errors.
- When referencing JSON keys with dots (.), use square bracket notation if needed.
- Step outputs are only available after execution; ensure dependencies are correctly structured.
Was this page helpful?