Clearing transactions
Create a credit clearing transaction
Creates a credit clearing transaction on the account specified in the request URL. The funds will be sent from this account to the account defined in the clearing profile sent in the request body.
post/v1/accounts/{account_id}/credit_clearing_transactions
Path parameters
account_idstring required
Request body
Example request
{
"amount": {
"value": 1000,
"currency": "EUR",
"unit": "cents"
},
"booking_type": "INTERNAL_TRANSFER",
"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"
}