CsvExportRequestDto
Request to start a CSV export of clients.
Specify column mappings and optional filter criteria to control the export output.
Properties
| Name | Type | Description |
|---|---|---|
| mappingCode | string | Code of an existing saved mapping to use for column headers. |
Code of an existing saved mapping to use for column headers. | ||
| columnMappings | array of CsvColumnMappingDto | Inline column mappings for the export. |
Inline column mappings for the export. | ||
| includeHeaders | boolean | Whether to include a header row in the CSV output. |
Whether to include a header row in the CSV output. | ||
| filter | CsvExportFilterDto | |
JSON Example
{
"mappingCode": "string",
"columnMappings": [
{
"csvHeader": "...",
"targetField": "..."
}
],
"includeHeaders": false,
"filter": {
"managerCodes": [
"..."
],
"partnerCodes": [
"..."
],
"associateCodes": [
"..."
],
"statuses": [
"..."
],
"types": [
"..."
]
}
}