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

4 Get bank account types

Action

Get a list of possible bank account types (current, savings etc.) available for selection, from within the banking section of an MFC application form.


Method GET
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/reference/v3/accounttypes
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.
Response JSON
                            
{
  "data": [
    {
      "code": "1",
      "id": 1,
      "name": "Cheque or Current",
      "order": 0
    },
    {
      "code": "2",
      "id": 2,
      "name": "Savings",
      "order": 0
    },
    {
      "code": "3",
      "id": 3,
      "name": "Transmission",
      "order": 0
    }
  ],
  "metaData": {
    "code": "R00",
    "message": "Operation successful.",
    "name": "Success"
  }
}