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

2 Create Insurance Application

Action

Using your clientID and clientSecret (which you obtained when you created an application), you will make a Post request using the endpoint and values below to create application.

Method POST
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/shortterminsurance/v1/application
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
                                
{
  "referenceNumber": "REPLACE WITH RANDOM UNIQUE STRING",
    "policyHolder": {
        "dateOfBirth": "1987-12-30",
        "gender": "Male"
    },
    "scores": {
        "propensityToClaim": 913,
        "propensityToLapse": 805
    }
}
                                
                                
Response JSON
                            
{
    "applicationReference": "332a1b1f-3e54-4a91-b390-ada64d139c2a"
}