Skip to content

CsvExportOptions

Field Type Required Description
entity string yes one of: product, category
withHeader boolean Whether the CSV file contains a header line with column headers. Defaults to true.
delimiter string The delimiter between columns in the file. Defaults to “,”.
enclosure string The enclosure around values in the CSV file. Defaults to double-quotes (“”“).
escape string The escape character within values. Defaults to double-quotes (“”“).
{
"entity": "product",
"withHeader": true,
"delimiter": ",",
"enclosure": "\"",
"escape": "\""
}