Properties
| Name | Type | Description |
|---|---|---|
| date_start | string | The start date for making statements. |
| date_end | string | The end date for making statements. |
| regional_format | string | Required for CSV exports. The regional format of the statement, can be UK_US (comma-separated) or EUROPEAN (semicolon-separated). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExportStatementCardCsv",
"title": "ExportStatementCardCsv",
"type": "object",
"properties": {
"date_start": {
"type": "string",
"description": "The start date for making statements.",
"readOnly": false,
"writeOnly": false
},
"date_end": {
"type": "string",
"description": "The end date for making statements.",
"readOnly": false,
"writeOnly": false
},
"regional_format": {
"type": "string",
"description": "Required for CSV exports. The regional format of the statement, can be UK_US (comma-separated) or EUROPEAN (semicolon-separated).",
"readOnly": false,
"writeOnly": false
}
},
"required": [
"date_start",
"date_end",
"regional_format"
]
}