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

13 Get marital statuses

Action

Make a call to retrieve a list of marital statuses that are available for selection within the personal information section of the MFC application.


Method GET
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/reference/v3/maritalstatuses
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
                            
{
      "code": "D",
      "id": 1,
      "name": "Divorced",
      "order": 0
    },
    {
      "additional": {
        "maritalTypes": [
          {
            "code": "01",
            "id": 1,
            "name": "In Community of Property (COP)",
            "order": 0
          },
          {
            "code": "04",
            "id": 2,
            "name": "Antenuptial Contract (ANC)",
            "order": 0
          },
          {
            "code": "05",
            "id": 3,
            "name": "Foreign / Custom",
            "order": 0
          },
          {
            "code": "20",
            "id": 4,
            "name": "Tribal",
            "order": 0
          }
        ]
      },
      "code": "M",
      "id": 2,
      "name": "Married",
      "order": 0
    },
    {
      "code": "S",
      "id": 3,
      "name": "Seperated",
      "order": 0
    },
    {
      "code": "U",
      "id": 4,
      "name": "Unmarried",
      "order": 0
    },
    {
      "code": "W",
      "id": 5,
      "name": "Widow",
      "order": 0
    }
  ],
  "metaData": {
    "code": "R00",
    "message": "Operation successful.",
    "name": "Success"
  }
}