SEPA Credit Transfers
Create a SEPA Credit Transfer from a billing account
Creates a SEPA Credit Transfer from the billing account specified in the request URL to the account specified in the request body.
post/v1/accounts/{account_id}/transactions/sepa_credit_transfer
Path parameters
account_idstring required
Request body
Example request
{
"reference": "",
"recipient_name": "Hans Mustermann",
"recipient_iban": "DE32110101001000000029",
"recipient_bic": "COBADEFFXXX",
"amount": {
"value": 1000,
"currency": "EUR",
"unit": "cents"
},
"description": "Example transaction",
"end_to_end_id": ""
}Response
Successful result of the operation
Example response
{
"id": "45bd0881-a79a-4054-9286-f11060d5511f",
"status": "executed",
"reference": "8880a72c-2675-482d-8d88-70a02c608592",
"amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"recipient_iban": "DE87110101001000057123",
"recipient_name": "Max Mustermann",
"recipient_bic": "SOBKDEB2XXX",
"end_to_end_id": "END2ENDREJ",
"batch_id": "d6c778822b2d7bd3b778935bcfd0d1d3csc",
"created_at": "2021-01-01T20:37:50Z"
}