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

2 Get Account Details

Action

Using your clientID and clientSecret (which you obtained when you created an application), you will make a Get request using the endpoint and values below to call accounts details endpoint to get details for an account.


Method GET
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/accounts/ <ACCOUNT_ID>
Request
Headers
Header Value Description
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.
x-fapi-financial-id OB/2017/001 Financial ID.
Response JSON
                            
{
    "Data": {
        "Account": {
            "AccountId": "1234567825",
            "Currency": "ZAR",
            "AccountType": "CURRENT ACCOUNT",
            "AccountSubType": "CURRENT ACCOUNT",
            "Nickname": "PROD TEST",
            "Account": {
                "SchemeName": "SortCodeAccountNumber",
                "Identification": "0000001234567825",
                "Name": "PROD TEST",
                "SecondaryIdentification": "0000001234567825"
            }
        }
    },
    "Links": {
        "Self": "https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/accounts/1234567825"
    },
    "Meta": {
        "TotalPages": 1
    }
}