v1
latestOpenAPI 3.0.32026-07-26208618579.9 KBAccount to account batch transfer
Get all batch transfers
This operation will respond with a list of batch transfers for the institution defined by the authenticated user's context.
get/v1/a2a/batches
Query parameters
auditUserstring required
The audit user to log the request
Key used for pagination. Use values from lastEvaluatedKey returned by the response to fetch the next page.
sizeinteger
How many batch transfers should be returned per page, default is 25. Cannot be more than 50.
Response
Successful lookup of batch transfers
Example response
{
"items": [
{
"id": "11221122",
"status": "IN_PROGRESS",
"description": "Test batch transfer",
"startTime": "2019-01-28T00:00:00",
"transferItemCount": 2,
"totalAmount": {
"EUR": 100,
"NOK": 150
},
"completionTime": "2019-01-28T00:00:00",
"successfulTransferItems": 1,
"failedTransferItems": 1
}
]
}