Skip to main content
The Transform node modifies a variable’s value using one of 12 built-in transformation types. It reads from an input variable, applies the transformation, and stores the result.

Behavior

  • Reads the value from the specified input variable
  • Applies the selected transformation with optional parameters
  • Stores the result in the result output variable
  • Routes to Success or Error based on the outcome

Configuration

Transform types

Params reference

Output handles

Output variables

Use cases

After Speech Input, use trim then to_lower to clean up the transcript before using it in a Condition node.
After an API Call, use json_parse to convert the response body string into an object, then use regex_extract to pull specific fields.
Use number_format with numberFormat: 2 to display an account balance as 1234.56 in a TTS message.