v1
latestOpenAPI 3.0.32026-07-26208618579.9 KBGet transaction data
Get all suspended transactions
If any payment cannot be posted to any end-user account it will be posted to an institution suspense account for further processing by the issuer. The latest transactions will be listed in descending order by date.
get/v3/SUSPENDED
Query parameters
auditUserstring required
The audit user to log the request
fromDatestring date-time
Example:2019-01-28T00:00:00
From which date you want to list the transactions in ISO-8601 date-time format.
toDatestring date-time
Example:2019-01-28T00:00:00
To which date you want to list the transactions in ISO-8601 date-time format.
pageinteger
Current page
sizeinteger
How many transactions should be returned per page, default is 15. Cannot be more than 30.
Response
Successful lookup of transactions
Example response
[
{
"transactionDate": "2019-01-28T00:00:00",
"postingDate": "2019-01-28T00:00:00",
"postingStatus": "POSTED",
"responseCode": "1A",
"settlementAmount": {
"amount": 3.14,
"currency": "EUR"
},
"transactionAmount": {
"amount": 3.14,
"currency": "EUR"
}
}
]