v1
latestOpenAPI 3.0.02026-07-1315476656.4 KBCheckAccountTransaction
Create a new transaction
Creates a new transaction on a check account. This should only be used with check account type online, preferably for csv import accounts.
post/CheckAccountTransaction
Request body
Example request
{
"valueDate": "2024-05-10T00:00:00+02:00",
"entryDate": "2024-05-10T00:00:00+02:00",
"paymtPurpose": "salary",
"amount": 100.1,
"payeePayerName": "Cercei Lannister"
}Response
Created - Returns created transaction
Example response
{
"id": "1",
"objectName": "CheckAccountTransaction",
"sevClient": {
"id": "0",
"objectName": "SevClient"
},
"valueDate": "2024-05-10T00:00:00+02:00",
"entryDate": "2024-05-10T00:00:00+02:00",
"paymtPurpose": "salary",
"amount": "-100.32",
"payeePayerName": "Cercei Lannister",
"checkAccount": {
"id": "0",
"objectName": "CheckAccount"
},
"sourceTransaction": {
"id": "0",
"objectName": "CheckAccountTransaction"
},
"targetTransaction": {
"id": "0"
}
}