CONVERTER
CONVERTER node.
What it does
CONVERTER node.
Inputs & outputs
| Input handle |
|---|
| None |
| Output handle |
|---|
| None |
Configuration
No configuration.
Example
How it works
CONVERTER transforms the shape or format of its input by delegating to a Converter module configured in data. The executor calls runModule({ input }, data) and surfaces the result on the output port. Common uses include parsing dates, reformatting phone numbers, or converting between data representations before the data reaches a send or database node.
Example
Scenario: A Workflow receives a phone number as a raw string from a form submission and needs it in E.164 format before passing it to a SEND_SMS node.
Add a CONVERTER node and configure it to apply the phone-normalization converter. Wire the form field into input and connect output directly to the SEND_SMS phone field. This keeps formatting logic out of SCRIPT nodes and reusable across Workflows.