LowCode for Flows allows you to integrate custom logic into your workflows using either JavaScript or Python code. This provides the flexibility to perform complex operations, calculations, or transformations within your workflow.
Configuring the LowCode for Flows Action
In your Workflow select the Built-in tool "LowCode” as an action.
Choose the Event: Select either “JavaScript code” or “Python code” depending on your preferred coding language.
Define LowCode Parameters
Input Variables: Access data from earlier steps in the workflow and use them as inputs for your custom code. These can be passed as parameters to your script.
Code Editor: Write or paste your custom code into the provided editor. This code will be executed as part of the workflow.
Example: Using JavaScript
// Example of JavaScript code to process data
let result = inputData.SomeField * 2;
output = {SomeOutputField: result};Example: Using Python
# Example of Python code to process data
result = input_data['someField'] * 2
output = {SomeOutputField: result}