Send Settlement

Endpoints

Estonia: https://aktiva.merit.ee/api/v2/sendsettlement
Poland: https://program/360ksiegowosc.pl/api/v2/sendsettlement

Query Payload

FieldTypeComment
DocDateDateTime
CurrencyCodeStringIf empty, then local currency
CustLinesArray of Lines
VendLinesArray of Lines

Lines

FieldTypeComment
CustVendNameString
CustVendIdGuid
CustVendRegNoString
DocNoString
AmountDecimalSalesInvoice, PurchaseInvoice +, CreditInvoice, Prepayment –
The total amount of the lines must equal zero

Successful Result

FieldTypeComment
DocumentIdQuid
DocumentNoSrting

Example Payload

{
“DocDate”:”20240201″,
“CurrencyCode”:”EUR”,
“CustLines”:[
{“CustVendName”:”Asutus OÜ”,
“CustVendRegNo”:”12342234″,
“DocNo”:”1106″,
“Amount”:6.00
}
],
“VendLines”:[
{“CustVendName”:”Asutus OÜ”,
“CustVendRegNo”:”12342234″,
“DocNo”:”345″,
“Amount”:6.00
}
]
}