Uploads a bank reconciliation file and returns the number of generated and matched entities.
Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
POST
/api-v1/reconciliation-lines/upload
curl \
--request POST 'https://wyzio.app/api-v1/reconciliation-lines/upload' \
--header "Content-Type: multipart/form-data" \
--form "file=@file"
Response examples (200)
{
"linesGenerated": [
42
],
"numberOfManualLines": 42,
"numberOfJournalEntriesGenerated": 42,
"reconcileResponse": {
"reconciledLines": [
42
],
"notReconciledLines": [
42
]
}
}