Sorry, you need to enable JavaScript to visit this website.

9 Get account transactions

Action

Using the heavy access token, call the accounts transactions endpoint to get a list of account transactions for all accounts that the user has selected.


Method GET
Endpoint https://api.nedbank.co.za/apimarket/sandbox/open-banking/v3.1/aisp/accounts/ <ACCOUNT_ID>/transactions
Note Replace <ACCOUNT_ID> with one of the account numbers from the Account List call.
Request
Headers
Header Value Description
x-fapi-financial-id OB/2017/001 Financial ID
Authorization Bearer <ACCESS_TOKEN> Replace with the heavy/submission access token you received from the heavy token call.
x-ibm-client-id <YOUR CLIENT ID> The client ID you received when creating the app on the portal.
x-ibm-client-secret <YOUR CLIENT SECRET> The client secret you received when creating the app on the portal.
URL query parameters (optional)
Param Value Description
fromBookingDateTime 2019-06-01 Fetch only transactions that happened after this date
toBookingDateTime 2019-06-30 Fetch only transactions that happened before this date
Response JSON
                            
{
    "Data": {
        "Transactions": [
        {
            "AccountId": "306c3686-5c25-47a9-bc58-8c86a2f6522a",
            "TransactionId": "31414ef9-cfed-58f7-8cfb-448caafc46aa",
            "TransactionReference": "BAL XFER FROM 2486308229",
            "Amount": {
                "Amount": 12139.74,
                "Currency": "ZAR"
            },
            "CreditDebitIndicator": "Credit",
            "Status": "Booked",
            "BookingDateTime": "Invalid date",
            "TransactionInformation": "BAL XFER FROM 2486308229",
            "BankTransactionCode": {
                "Code": "194"
            },
            "ProprietaryBankTransactionCode": {
                "Code": "194"
            },
            "Balance": {
                "Amount": {
                   "Amount": 19348.31,
                   "Currency": "ZAR"
                },
                "CreditDebitIndicator": "Credit",
                "Type": "InterimAvailable"
            }
        },
        {
            "AccountId": "306c3686-5c25-47a9-bc58-8c86a2f6522a",
            "TransactionId": "f161b0bc-926d-5623-bbc5-13c1fe4705a0",
            "TransactionReference": "M*VICTORIA TT 5412820017950587",
            "Amount": {
                "Amount": 8000,
                "Currency": "ZAR"
            },
            "CreditDebitIndicator": "Debit",
            "Status": "Booked",
            "BookingDateTime": "Invalid date",
            "TransactionInformation": "M*VICTORIA TT 5412820017950587",
            "BankTransactionCode": {
                "Code": "51"
            },
            "ProprietaryBankTransactionCode": {
                "Code": "51"
            },
            "Balance": {
                "Amount": {
                   "Amount": 19348.31,
                   "Currency": "ZAR"
                },
                "CreditDebitIndicator": "Credit",
                "Type": "InterimAvailable"
            }
        },
        {
            "AccountId": "306c3686-5c25-47a9-bc58-8c86a2f6522a",
            "TransactionId": "c10881d3-60be-5603-9132-d703a140cc9d",
            "TransactionReference": "CASH WITHDRAWAL FEE",
            "Amount": {
                "Amount": 152,
                "Currency": "ZAR"
            },
            "CreditDebitIndicator": "Debit",
            "Status": "Booked",
            "BookingDateTime": "Invalid date",
            "TransactionInformation": "CASH WITHDRAWAL FEE",
            "BankTransactionCode": {
                "Code": "57"
            },
            "ProprietaryBankTransactionCode": {
                "Code": "57"
            },
            "Balance": {
                "Amount": {
                   "Amount": 19348.31,
                   "Currency": "ZAR"
                },
                "CreditDebitIndicator": "Credit",
                "Type": "InterimAvailable"
            }
        },
        {
            "AccountId": "306c3686-5c25-47a9-bc58-8c86a2f6522a",
            "TransactionId": "ee35fc9b-89cc-54fa-ba97-2860bbdbff8e",
            "TransactionReference": "SANLAM SKY HS77242419SS 170830",
            "Amount": {
                "Amount": 1012.68,
                "Currency": "ZAR"
            },
            "CreditDebitIndicator": "Debit",
            "Status": "Booked",
            "BookingDateTime": "Invalid date",
            "TransactionInformation": "SANLAM SKY HS77242419SS 170830",
            "BankTransactionCode": {
                "Code": "24"
            },
            "ProprietaryBankTransactionCode": {
                "Code": "24"
            },
            "Balance": {
                "Amount": {
                   "Amount": 19348.31,
                   "Currency": "ZAR"
                },
                "CreditDebitIndicator": "Credit",
                "Type": "InterimAvailable"
            }
        }
    ]
},
    "Links": {
        "Self": "https://api.nedbank.co.za/apimarket/sandbox/open-banking/v3.1/aisp/accounts/306c3686-5c25-47a9-bc58-8c86a2f6522a/transactions"
    },
    "Meta": {
        "DateFrom": {
            "date": "2021-06-28",
            "code": "IN"
        },
        "DateTo": {
            "date": "2022-12-28",
            "code": "IN"
        }
    }
}            
                            
                        
.