Skip to main content
To apply functions to a dynamic variable or a static variable you must wrap the chosen function in the double curly brackets syntax: {{}}, as seen in the following example. In the following example we are using the decode_base_64(s) string manipulation function to decode a Base64-encoded string (a static variable) and return the original decoded string.
You can also use Utility Actions to apply specific function logic to dynamic variables throughout the workflow.

Supported Functions

String Manipulation Functions


Table Manipulation Functions


Array & List Functions


Numeric Functions


Boolean & Comparison Functions


JSON & Object Functions


Utility & Generator Functions


URL & Map Functions


Date-Time Functions

Please note that the following date & time formats are accepted.
  1. Epoch time in seconds: 1725916800
  2. Epoch time in milliseconds: 1725916800000
  3. RFC3339: 2006-01-02T15:04:05Z07:00
  4. ISO: 2006-01-02T15:04:05Z0700
  5. RFC3339 Nano: 2006-01-02T15:04:05.999999999Z07:00
The default date format is dates in UTC timezone in RFC3339 format.

Date Arithmetic

To add and subtract time interval from another time use + and -
Supported intervals:
Note: Day, Month and Year are not supported because they have variable lengths.

To Date

Use to_date to transform date string representation or date represented as Epoch time (seconds since 1970-01-01) into date. This enables performing date operations on the date such as +/-.

To Epoch

Transforms the date string into Epoch time (seconds since 1970-01-01). Also works with input which is already an Epoch, in which case it returns the input as is.

To Epoch Mili

Transforms the date string into Epoch Milliseconds time (milliseconds since 1970-01-01). Also works with input which is already an Epoch Milliseconds, in which case it returns the input as is.

To Local Time

Format the date as local time in a given time zone. Accepts dates as Epoch time or string in RFC3339 format.

Date Format

Format the date in a requested format. Inputs:
  1. Layout in Golang date format convention (use exact pattern values).
  2. Input date in RFC3339 format or as an Epoch time (seconds since 1970-01-01).
Common Format Patterns: For more information and additional valid layouts, refer to Golang date format convention documentation. Examples: