5.4. Account Transactions Retrieval
5.4.1. Request
GET http://localhost:8080/v1/accounts/Alias1/transactions
5.4.1.1. No specific Header
5.4.1.2. No body data
5.4.2. Response
Status code: 200
5.4.2.1. No specific Header
5.4.2.2. Body
Note: this body was extracted from a PDF that lost some structural separators (braces / commas). Refer to the source PDF for the canonical JSON.
{
"transactions" : [ {
"entryReference" : "AF5T2",
"transactionAmount" : {
"currency" : "EUR", "amount" : "12.25","creditDebitIndicator" : "DBIT", "status" : "BOOK", "bookingDate" : "2017-01-12",
"remittanceInformation" : [ "Chèque n°XXXXXXX" ]
"entryReference" : "AF5T3",
"transactionAmount" : {
"currency" : "EUR", "amount" : "66.38"
}, "creditDebitIndicator" : "DBIT", "status" : "BOOK", "bookingDate" : "2017-01-12", "remittanceInformation" : [ "Prélèvement ICS XXXXXXX" ] }, { "entryReference" : "AF5T4", "transactionAmount" : { "currency" : "EUR", "amount" : "60.00" }, "creditDebitIndicator" : "DBIT", "status" : "BOOK", "bookingDate" : "2017-01-12", "remittanceInformation" : [ "Retrait Carte" ] } ], "_links" : { "self" : { "href" : "v1/accounts/Alias1/transactions" }, "parent-list" : { "href" : "v1/accounts" }, "balances" : { "href" : "v1/accounts/Alias1/balances" }, "last" : { "href" : "v1/accounts/Alias1/transactions?page=last" }, "next" : { "href" : "v1/accounts/Alias1/transactions?page=next" } } }