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

3 Get application status

Action

Make a call to get a list of MFC approved application statuses (expired, in progress, pending) allocated to customer applications entered in the workflow process.


Method GET
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/reference/v3/statuses
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": [
    {
      "color": "#CEDC00",
      "description": "You failed to complete your application within 7 days.",
      "key": "expired",
      "name": "Expired",
      "order": 1
    },
    {
      "color": "#009639",
      "description": "Your application has not yet been submitted.",
      "key": "inprogress",
      "name": "In Progress",
      "order": 2
    },
    {
      "color": "#F2A900",
      "description": "Submitted. Awaiting response for your application.",
      "key": "pending",
      "name": "Pending",
      "order": 3
    },
    {
      "color": "#00B2A9",
      "description": "Your application has been referred for further assessment.",
      "key": "referred",
      "name": "Being assessed",
      "order": 4
    },
    {
      "color": "#78BE20",
      "description": "Subject to verification of information supplied.",
      "key": "approved",
      "name": "Approved",
      "order": 5
    },
    {
      "color": "#D22630",
      "description": "Unfortunately you don’t qualify for finance at this stage.",
      "key": "declined",
      "name": "Declined",
      "order": 6
    },
    {
      "color": "#006341",
      "description": "Your application has been approved and your account is active.",
      "key": "paidout",
      "name": "Paid out",
      "order": 7
    }
  ],
  "metaData": {
    "code": "R00",
    "message": "Operation successful.",
    "name": "Success"
  }
}