Policyholder

Properties

PropertyTypeDescription
policyholder_idstringMust be a UUID. The unique identifier of the policyholder.
typestringThe policyholder type.
idobject(Individual policyholders only) Object containing policyholder's identification information.
titlestringThe policyholder's title.
date_of_birthstring(Individual policyholders only) The policyholder's date of birth in the format YYYYMMDD.
genderstringNull is allowed. (Individual policyholders only) The policyholder's gender.
initialsstring, nullnull is allowed. The policyholder or primary contact's initials.
first_namestringThe policyholder or primary contact's legal first name.
middle_namestring, nullnull is allowed. The policyholder or primary contact's legal middle name.
last_namestringThe policyholder or primary contact's legal last name.
emailstring, nullnull is allowed. The policyholder or primary contact's contact email address.
cellphonestring, nullnull and "" allowed. String containing the cellphone number in international format.
phone_otherstring, nullnull and "" allowed. String containing the phone number in international format.
policy_idsarrayAn array of ids of the policies linked to this policyholder.
policiesarrayAn array of full policy objects owned by the policyholder. This is currently only included when fetching all policyholders or fetching an individual policyholder with ?include=policies.
created_atstringThe time at which the policyholder was created.
app_dataobject, nullnull is allowed. An object containing additional custom data for the policy holder.
created_byobject, nullnull is allowed. An object indicating the user or API key that created the policyholder. See Authentication.
addressobject, nullnull is allowed. The policyholder's physical address. See below for more details.

Example

{
  "policyholder_id": "bf1ada91-eecb-4f47-9bfa-1258bb1e0055",
  "type": "individual",
  "initials": "E",
  "first_name": "Erlich",
  "middle_name": "Aviato",
  "last_name": "Bachman",
  "id": {
    "type": "id",
    "number": "6801015800084",
    "country": "ZA"
  },
  "date_of_birth": "19680101",
  "gender": "male",
  "email": "[email protected]",
  "cellphone": "+27821234567",
  "phone_other": "+27124101337",
  "created_at": "2017-10-12T15:47:34.281Z",
  "app_data": {
    "company": "Aviato"
  },
  "policy_ids": [],
  "created_by": {
    "id": "00000000-0000-0000-0000-000000000001",
    "type": "user"
  },
  "address": {
    "line_1": "5230 Penfield Avenue",
    "suburb": "Woodland Hills",
    "city": "Los Angeles",
    "country": "US",
    "area_code": "CA 91364"
  }
}