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

7 Get account details

Action

Using the heavy token you received from the previous step, call the accounts details endpoint to get details for an account.


Method GET
Endpoint https://api.nedbank.co.za/apimarket/sandbox/open-banking/v3.1/aisp/accounts/ <ACCOUNT_ID>
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.
Response JSON
                            
{
    "Data": {
        "Account": {
            "AccountId": "306c3686-5c25-47a9-bc58-8c86a2f6522a",
            "Status": "Enabled",
            "StatusUpdateDateTime": "2023-10-27T04:18:13.000Z",
            "Currency": "ZAR",
            "AccountType": "Personal",
            "AccountSubType": "CurrentAccount",
            "Nickname": "ELEC SHOPP",
            "Account": [
                {
                    "SchemeName": "SortCodeAccountNumber",
                    "Identification": "1987651009427721",
                    "Name": "ELEC SHOPP",
                    "SecondaryIdentification": "1009427721"
                }
            ]
        }
    },
    "Links": {
        "Self": "https://api.nedbank.co.za/apimarket/sandbox/open-banking/v3.1/aisp/accounts/306c3686-5c25-47a9-bc58-8c86a2f6522a"
    },
    "Meta": {
        "TotalPages": 1
    }
}