Scheduled Transfers
Create a Scheduled Transfer
Creates a scheduled transfer for the account specified in the request URL. Note: This call triggers the change request process.
post/v1/accounts/{account_id}/scheduled_transfers
Path parameters
account_idstring required
The ID of the account to create a scheduled transfer for.
Request body
Example request
{
"transfer_type": "SCT",
"initiator_reference": "12f7ec0b-6762-4578-b49f-c0b1647d0e2d",
"creditor_name": "Hans Mustermann",
"creditor_iban": "DE32110101001000000029",
"creditor_bic": "COBADEFFXXX",
"amount": {
"value": 1000,
"currency": "EUR"
},
"description": "Example scheduled transfer",
"end_to_end_id": "unique-end-to-end-id",
"execution_schedule": "MONTHLY",
"active_from": "2018-03-01",
"active_to": "2018-04-01",
"authorizer_id": "cf67beb032b2abbfc444f1641fa669bccper",
"verification_of_payee_id": "f874b3102718a4d757a6b6e4d5996078veop"
}Response
The change request was successfully confirmed, and the scheduled transfer successful.
Example response
{
"id": "f874b3102718a4d757a6b6e4d599607csctr",
"account_id": "236f9042a19b65c0867e10c922b93502cacc",
"status": "ACTIVE",
"transfer_type": "SCT",
"creditor_iban": "DE87110101001000057123",
"creditor_name": "Hans Mustermann",
"creditor_bic": "COBADEFFXXX",
"initiator_reference": "dsf2r3raedfs3fsf342fctrx",
"amount": {
"value": 1000,
"currency": "EUR"
},
"active_from": "2025-09-01",
"active_to": "2026-09-01",
"execution_schedule": "MONTHLY",
"end_to_end_id": "END2ENDREJ",
"next_execution_date": "2025-10-01",
"authorizer_id": "cf67beb032b2abbfc444f1641fa669bccper",
"verification_of_payee_id": "f874b3102718a4d757a6b6e4d599607cvope",
"created_at": "2022-04-21T13:59:52+00:00",
"updated_at": "2022-04-21T13:59:52+00:00"
}