latestOpenAPI 3.0.12026-08-104242199.9 KB
8df83424e244
Clearing transactions
Create debit clearing transaction
Creates a debit clearing transaction to the account specified in the request URL. Funds will be drawn from the account defined in the clearing profile to the account in the URL.
post/v1/accounts/{account_id}/debit_clearing_transactions
Path parameters
account_idstring required
Request body
Example request
{
"amount": {
"value": 1000,
"currency": "EUR",
"unit": "cents"
},
"booking_type": "INTEREST_ACCRUED",
"description": "Example clearing transaction",
"clearing_profile_id": "1c0eda0b559825ef456b21d81f4ee962pacp",
"reference": "ert123456789ert",
"initiator_reference": "2603037c-e264-46c4-82e8-0d3ebc23a30f"
}Response
The operation was successful.
Example response
{
"id": "3f4e761f500e4c11a6627b4d90daaec4",
"status": "EXECUTED",
"account_id": "06659ff514934b28800b5650d109cacc",
"account_iban": "DE43110101005555555555",
"clearing_account_iban": "DE30110101001234567890",
"amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"description": "Example description",
"booking_type": "SEPA_CREDIT_TRANSFER",
"valuta_date": "2022-04-22",
"transaction_type": "CLEARING_TRANSACTION",
"reference": "2603037c-e264-46c4-82e8-0d3ebc23a30f",
"initiator_reference": "2603037c-e264-46c4-82e8-0d3ebc23a30f"
}