6.5. Account Transactions Retrieval
6.5.1. Request
GET http://localhost:8080/v1/accounts/Alias1/transactions
6.5.1.1. No specific headers
6.5.1.2. No body data
6.5.2. Response
Status code: 200
6.5.2.1. No specific headers
6.5.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" : {
"amount" : 12.25, "currency" : "EUR","creditDebitIndicator" : "DBIT", "status" : "BOOK", "bookingDate" : "2017-01-11T23:00:00.000Z", "remittanceInformation" : { "unstructured" : [ "Chèque n°XXXXXXX" ]
"entryReference" : "AF5T3",
"transactionAmount" : {
"amount" : 66.38, "currency" : "EUR","creditDebitIndicator" : "DBIT",
"status" : "BOOK",
"bookingDate" : "2017-01-11T23:00:00.000Z", "remittanceInformation" : { "unstructured" : [ "Prélèvement ICS XXXXXXX" ] } }, { "entryReference" : "AF5T4", "transactionAmount" : { "amount" : 60.0, "currency" : "EUR" }, "creditDebitIndicator" : "DBIT", "status" : "BOOK", "bookingDate" : "2017-01-11T23:00:00.000Z", "remittanceInformation" : { "unstructured" : [ "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" } } }