---
title: "LowCode for Flows"
slug: "flows-actions-lowcode"
updated: 2025-03-31T09:04:53Z
published: 2025-03-31T09:04:53Z
canonical: "docs.connect.visma.com/flows-actions-lowcode"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.connect.visma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# LowCode for Flows

**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**

```javascript
// Example of JavaScript code to process data
let result = inputData.SomeField * 2;
output = {SomeOutputField: result};
```

**Example: Using Python**

```python
# Example of Python code to process data
result = input_data['someField'] * 2
output = {SomeOutputField: result}
```
