---
title: "CSV Connector"
slug: "csv-connector"
description: "Use the CSV connector in Lansweeper Flow Builder to parse and generate CSV files from arrays, with support for custom delimiter characters."
updated: 2026-07-17T15:43:48Z
published: 2026-06-12T14:42:50Z
canonical: "docs.lansweeper.com/csv-connector"
---

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

# CSV Connector

Note on third‑party tools

              

We aim to provide accurate and helpful details about third‑party tools, but we can’t guarantee that this information is always complete or up to date. If you notice any discrepancies, feel free to share them in the feedback section below. For the most reliable information, please always refer to the third‑party tool’s official documentation.

CSV is a delimited text file format that uses a comma to separate values. The CSV component gives you the ability to parse and generate CSV files from JavaScript Arrays. You can also specify a custom delimiter character when building and parsing CSV files.

## Actions

### Generate CSV From Array

Generates CSV data from an array of objects

| Input | Comments | Default |
| --- | --- | --- |
| Input Array | This should be an array of un-nested objects | `[ { &quot;Column 1&quot;: &quot;foo&quot;, &quot;Column 2&quot;: &quot;bar&quot; }, { &quot;Column 1&quot;: &quot;abc&quot;, &quot;Column 2&quot;: &quot;def&quot; }]` |
| Delimiter | Provide a string value containing the character the file is delimited on. | , |
| Include Header? |  | true |

### Generate (Deprecated)

Generates a CSV file from an array of objects

| Input | Comments | Default |
| --- | --- | --- |
| Data | For each list item, provide a list of strings that represent a row in the file. |  |
| Delimiter | Provide a string value containing the character the file is delimited on. | , |

### Parse

Parse CSV data into an array of rows

| Input | Comments | Default |
| --- | --- | --- |
| CSV Data | Provide a string containing one or more rows of comma-seperated data |  |
| Delimiter | Provide a string value containing the character the file is delimited on. | , |
| Ignore Headers | When true, the first row of the CSV file will be skipped in the output data. | false |
