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.


Last updated