VUZDevelopers

Create many bank transactions in one call

POST
/bank-reconciliation/transactions/bulk

FW4: rows that duplicate an already-stored line (same bank account, date, amount and reference) are SKIPPED and reported in skippedDuplicates — a re-imported or overlapping statement imports its new lines instead of failing or doubling cash.

X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/bank-reconciliation/transactions/bulk" \  -H "Content-Type: application/json" \  -d '{    "transactions": [      {        "txnDate": "2026-07-10",        "amount": 500,        "description": "העברה מיוסי"      }    ]  }'
{  "imported": [    {      "id": "string",      "businessId": "string",      "bankAccountId": {},      "txnDate": "2026-07-10",      "valueDate": {},      "amount": 500,      "currency": "ILS",      "description": "string",      "counterpartyName": {},      "reference": {},      "status": "unmatched",      "matchedAmount": 0,      "sessionId": {},      "createdAt": "2019-08-24T14:15:22Z",      "updatedAt": "2019-08-24T14:15:22Z"    }  ],  "importedCount": 12,  "skippedDuplicateCount": 2,  "skippedDuplicates": [    {      "rowIndex": 3,      "txnDate": "2026-07-10",      "amount": 500,      "reference": "DUP-REF-001",      "existingTransactionId": "string"    }  ]}