UpdateCsvMappingRequest
Request to update an existing CSV mapping.
Properties
| Name | Type | Description |
|---|---|---|
| name* | string | Human-readable display name for this mapping. |
Human-readable display name for this mapping. | ||
| columnMappings* | array of CsvColumnMappingDto | The column mappings that define how CSV headers map to client fields. |
The column mappings that define how CSV headers map to client fields. | ||
| matchField | enum | Code Name CompanyNumber InternalReference NiNumber |
Code Name CompanyNumber InternalReference NiNumber | ||
JSON Example
{
"name": "string",
"columnMappings": [
{
"csvHeader": "...",
"targetField": "..."
}
],
"matchField": "Code"
}