# Export CSV

**Description**: The **ExportCSV** component exports structured data into a CSV file.

### Input Parameters

| Parameter     | Type      | Required | Description                                                      |
| ------------- | --------- | -------- | ---------------------------------------------------------------- |
| `data`        | `array`   | ✅        | The structured data to be converted into CSV format.             |
| `fileName`    | `string`  | ✅        | The name of the output CSV file, including the `.csv` extension. |
| `withHeaders` | `boolean` | ✅        | Set to `true` if the first row should contain column headers.    |

### Output Parameters

| Parameter  | Type     | Description                        |
| ---------- | -------- | ---------------------------------- |
| `fileId`   | `string` | The ID of the generated CSV file.  |
| `fileName` | `string` | The name of the exported CSV file. |

### Instructions

1. **Define Data Source**:
   * Provide structured data in an array format, ensuring proper key-value mapping.
2. **Set Output File Name**:
   * Choose a name for the CSV file, including the `.csv` extension.
3. **Include Headers (Optional)**:
   * Enable **Use Headers** if the first row should contain column headers.
4. **Processing**:
   * The component processes the structured data and creates a CSV file.
   * The newly generated file is output with its `fileId` and `fileName`.

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.appmixer.com/connector-configuration/utils/csv/exportcsv.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
