SEPA Credit Batch Transfers
List Batch Transfers
List all batch transfers for the specified account in the request URL.
get/v1/accounts/{account_id}/batch_transfers
Path parameters
account_idstring required
The ID of the account to retrieve batch transfers for.
Query parameters
page[number]string
The page number of the response.
page[size]string
The size of each page in the response.
filter[id]string
Filters the results to include only batch transfers with the given ID.
filter[transfer_type]'SCT' | 'SCT_INSTANT'
Filters the results to include only batch transfers with the given transfer_type.
filter[status]'AUTHORIZATION_REQUIRED' | 'ACCEPTED' | 'REJECTED' | 'IN_PROGRESS' | 'FINISHED'
Filters the results to include only batch transfers with the given status.<br /> Multiple comma-separated values are supported.
Response
Successful result of the operation
Example response
[
{
"id": "f874b3102718a4d757a6b6e4d5996078sctb",
"account_id": "236f9042a19b65c0867e10c922b93502cacc",
"status": "ACCEPTED",
"transfer_type": "SCT_INSTANT",
"reference": "12f7ec0b-6762-4578-b49f-c0b1647d0e2d",
"description": "Monthly Salary Payments",
"total_amount": 1000,
"transfers_summary": {
"executed": 9,
"failed": 1
},
"created_at": "2025-04-01T13:59:52+00:00",
"started_at": "2025-04-01T14:01:00+00:00",
"finished_at": "2025-04-01T14:10:30+00:00",
"updated_at": "2025-04-01T14:10:30+00:00"
}
]