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

4 Prequalifications

Action

Using the intentId from "Create Intent" step and Vehicle Asset Finance intent access token recieved in Request Token (light), call the Vehicle Asset Finance endpoint to get the pre-qualification result that the user has given you access to.


Method POST
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/v1/prequalifications
Request
Headers
Header Value Description
Content-Type application/json The content type of the data being sent.
Authorization Bearer <ACCESS_TOKEN> The intent access token (light token). Replace <ACCESS_TOKEN> with the token you received.
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-nb-intent-id <INTENT ID> The intentId you received in the create intent call.
Body JSON
                                
{
"cellphone": "0987654321",
"firstName": "John",
"identityNumber": "1234567890123",
"lastName": "Root",
"email": "email@email.co.za",
"netSalary": 43535635,
"totalExpenses": 32424,
"desiredAmount":40000
}
                                
                                
Response JSON
                            
{
    "data": {
        "creditCheckResult": "SUCCESS",
        "preQualificationResult": {
            "desiredAmount": 220000,
            "desiredWithMaxRateAmount": 3616.75,
            "desiredWithMinRateAmount": 3616.75,
            "email": "email@email.co.za",
            "firstName": "John",
            "identityNumber": "1234567890123",
            "initials": "",
            "lastName": "Root",
            "maxInterestRate": 17,
            "minInterestRate": 5,
            "possibleAmount": 125617.03,
            "possibleWithMaxRateAmount": 2850.94,
            "possibleWithMinRateAmount": 2103.03,
            "titleName": ""
        }
    },
    "metaData": {
        "code": "R00",
        "message": "Operation successful."
    },
    "Links": {
        "self": "https://apim.nednet.co.za/sandbox/nb-vehicle-asset-finance/vehicleassetfinance/v1/prequalifications"
    },
    "Meta": {
        "total-pages": 1
    }
}