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

3 Add Motor Information

Action

Using your clientID, clientSecret (which you obtained when you created an application) and applicationReference which is retrieved in create insurance application call you will make a Post request using the endpoint and values below to add one or more motors information.

Method POST
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/shortterminsurance/v1/application/<APPLICATION_REFERENCE>/motors
Note Replace <APPLICATION_REFERENCE> that you received in create insurance application step.
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.

Body JSON
                                
[
    {
        "make": "TOYOTA",
        "model": "COROLLA",
        "make-and-model-with-variant": "TOYOTA COROLLA 2.0 XR CVT",
        "year": 2012,
        "mmCode": "1",
        "vehicleBodyType": "REPLACE WITH VALUE FROM GET REFERENCE DATA STEP",
        "coverType": "Comprehensive",
        "insuredValue": {
            "value": 210000,
            "currency": "ZAR"
        },
        "useOfVehicle": "private",
        "parking": {
            "daytime": "REPLACE WITH VALUE FROM GET REFERENCE DATA STEP",
            "overnight": "REPLACE WITH VALUE FROM GET REFERENCE DATA STEP"
        },
        "basicExcess": {
            "value": REPLACE WITH VALUE FROM GET REFERENCE DATA STEP,
            "currency": "ZAR"
        },
        "voluntaryExcess": {
            "value": REPLACE WITH VALUE FROM GET REFERENCE DATA STEP,
            "currency": "ZAR"
        },
        "noOfClaimFreeYears": 1,
        "uninterruptedCoverDuration": 0,
        "riskAddress": {
            "line1": "My happy home",
            "suburb": "warxd",
            "province": "kjadbfkds",
            "postalCode": "1234"
        },
        "drivers": [
            {
                "driver": {
                    "dateOfBirth": "1983-01-30",
                    "gender": "Male",
                    "maritalStatus": "REPLACE WITH VALUE FROM GET REFERENCE DATA STEP"
                },
                "driverType": "REGULAR",
                "driverRelation": "OTHER",
                "licenseCode": "SA",
                "licenseTypeCode": "REPLACE WITH VALUE FROM GET REFERENCE DATA STEP",
                "licenseIssued": "2021-01-30"
            }
        ]
    }
]
                                
                                
Response JSON
                            
{
    "status": "success"
}