Code Steps
Code steps are a way to run small snippets of JavaScript as part of your Workflow. Code steps can be used as both triggers, formatter and actions.
Mapping inputData
is not available in triggers.
Steps to add code steps to your automation:
In your Code step, you have access to the
inputData
variable, where all values will be strings. Since the amount of data that might feed into your script might be large or highly dynamic you'll need to define aninputData
mapping via our GUI by providing a key and value.Write javascript code under Code using Keys defined in the earlier step.
Code steps return a single
output
variable, which is an object or array of objects that will be the return value of this Code. You can explicitly return early if you like.
The environment in which your Code steps run has an I/O limit of 6MB. The total size of the code and the data processed by the Code cannot exceed that. If you're hitting this error, try to limit the amount of data your return from your function.
References for UI: