Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
POST
/api-v1/reconciliation-lines/batch
curl \
--request POST 'https://wyzio.app/api-v1/reconciliation-lines/batch' \
--header "Content-Type: application/json" \
--header "WEAL-TOKEN: string" \
--header "TARGET-ORGANIZATION-ID: 42" \
--data '[{"id":42,"processDate":"2026-05-04T09:42:00Z","movementDirection":"IN","contactId":42,"reference":"string","valueDate":"2026-05-04T09:42:00Z","paidCurrencyId":42,"paidAmount":42.0,"isReconciled":true,"mainAccountIban":"string","mainAccountId":42,"isInternalContact":true,"manualEntries":[{"id":42,"paymentType":"SALES_INVOICE","description":"string","amount":"string","requestedAmount":"string","counterPartyAccountId":42,"amountInCurrency":"string","entityContactId":42,"currencyId":42,"purchasePaymentId":42,"salesPaymentId":42,"payrollPaymentId":42,"departmentId":42,"isSplitPayment":true,"bankCharges":42.0,"lossOnDebtors":42.0,"officeId":42}]}]'
Request examples
# Headers
WEAL-TOKEN: string
TARGET-ORGANIZATION-ID: 42
# Payload
[
{
"id": 42,
"processDate": "2026-05-04T09:42:00Z",
"movementDirection": "IN",
"contactId": 42,
"reference": "string",
"valueDate": "2026-05-04T09:42:00Z",
"paidCurrencyId": 42,
"paidAmount": 42.0,
"isReconciled": true,
"mainAccountIban": "string",
"mainAccountId": 42,
"isInternalContact": true,
"manualEntries": [
{
"id": 42,
"paymentType": "SALES_INVOICE",
"description": "string",
"amount": "string",
"requestedAmount": "string",
"counterPartyAccountId": 42,
"amountInCurrency": "string",
"entityContactId": 42,
"currencyId": 42,
"purchasePaymentId": 42,
"salesPaymentId": 42,
"payrollPaymentId": 42,
"departmentId": 42,
"isSplitPayment": true,
"bankCharges": 42.0,
"lossOnDebtors": 42.0,
"officeId": 42
}
]
}
]
Response examples (200)
{
"items": [
{
"errorCode": {
"errorCode": "NO_ERROR",
"errorDetailValues": [
{
"errorCode": "string",
"fieldName": "string",
"data": "string",
"isSevere": true
}
]
},
"freshRow": {},
"freshData": {},
"possibleWorkflows": [
{
"id": 42,
"name": "string"
}
],
"error": true,
"severeError": true
}
]
}