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

2 Verify Account

Action

Using your clientID and clientSecret (which you obtained when you created an application), you will make a Post request using the endpoint and values below to verify account.

Method POST
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/bank-verification/v1/verify/account
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-idempotency-key <RANDOM STRING> Must be unique for every call.
x-jws-signature <RANDOM ALPHANUMERIC> Replace with random value for jws signature if applicable.
x-fapi-financial-id OB/2017/001 Financial ID.
x-fapi-customer-ip-address 101.12.212.99 Customer IP address.
x-fapi-interaction-id <RANDOM GUID> Replace with random GUID.
Content-Type application/json The data type being sent to the endpoint.

Body JSON
                                
{
    "Data": {
        "InstructionIdentification": "REPALCE WITH RANDOM UNIQUE GUID",
        "BankName": "NEDBANK",
        "AccountNumber": "1009123456",
        "SortCode": "198765",
        "AccountType": "CURRENT",
        "AccountHolder": {
            "IdentityNumber": "7301234567890",
            "IdentityType": "RSAIDENTITY",
            "Initials": "U",
            "LastName": "Dutchie",
            "EmailAddress": "EMAIL@YAHOO.COM",
            "CellNumber": "27123456789"
        },
        "ClientUserReference1": "REPALCE WITH RANDOM STRING",
        "BillingCode":"REPALCE WITH RANDOM STRING",
        "ClientUserReference2": "REPALCE WITH RANDOM STRING"
    }
}
                                
                                

ClientUserReference1 and ClientUserReference2 values can be as follows: You can insert your own reference (eg: a policy number) in the first field and a second reference (eg: an employee number in the second field).

Billing code enables you to accumulate amounts and bill your organisation for each group, department or area.

Response JSON
                            
{
    "Data": {
        "InstructionIdentification": "9bbcea09-cebc-4402-8146-1098918dc701",
        "VerificationStatus": "PENDING"
    },
    "Links": {
        "Self": "https://b2b-api.nedbank.co.za/apimarket/b2b-sb/bank-verification/v1/verify/account"
    },
    "Meta": {}
}