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

18 Get vehicle types

Action

Make a call to fetch a list of vehicle types (Light commercial, light vehicle etc.) that are available for selection within the vehicle section of an MFC application.


Method GET
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/reference/v3/vehicles/types
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": "CV",
      "id": 3,
      "name": "Carvan",
      "order": 0
    },
    {
      "code": "M",
      "id": 4,
      "name": "Light Commercial",
      "order": 0
    },
    {
      "code": "A",
      "id": 1,
      "name": "Light Vehicle",
      "order": 0
    },
    {
      "code": "A",
      "id": 5,
      "name": "Light Vehicle",
      "order": 0
    },
    {
      "code": "C",
      "id": 2,
      "name": "Motorbike",
      "order": 0
    }
  ],
  "metaData": {
    "code": "R00",
    "message": "Operation successful.",
    "name": "Success"
  }
}