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

6 Quote Acceptance

Action

Using your clientID, clientSecret (which you obtained when you created an application) and QuoteReferenceNumber which is receieved in previous call you will make a Post request using the endpoint and values below to accept the quote.

Method POST
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/shortterminsurance/v1/application/<QUOTE_REFERENCE_NUMBER>/acceptances
Note Replace <QUOTE_REFERENCE_NUMBER> that you received in previous 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
                                
{
  "referenceNumber": "REPLACE WITH VALUE USED IN CREATE INSURANCE APPLICATION STEP",
  "policyHolder": {
    "firstName": "Doggy",
    "surname": "Uncle",
    "initials": "Mr",
    "iDType": "RSAIDENTITY",
    "iDNumber": "8712305678901",
    "dateOfBirth": "REPLACE WITH VALUE USED IN CREATE INSURANCE APPLICATION STEP",
    "gender": "REPLACE WITH VALUE USED IN CREATE INSURANCE APPLICATION STEP",
    "maritalStatus": "Single",
    "communication": {
      "email": "EMAILEMAIL@YAHOO.COM",
      "mobileNumber": "27123456789",
      "contactNumber": "27123456789",
      "address": {
        "line1": "00 HAPPY AVENUE",
        "suburb": "ASSY SASSY,
        "province": "TESTERN CAPE",
        "postalCode": "12345"
      }
    }
  },
  "relations": [
    {
      "drivers": [
        {
          "iDType": "RSAIDENTITY",
          "iDNumber": "8712305678901"
        }
      ]
    }
  ]
}
                                
                                
Response JSON
                            
{
    "status": "SUCCESS",
    "referenceNumber": "INS1234",
    "acceptedQuoteReferenceNumber": "271658386190136"
}