Properties
| Property | Type | Description |
|---|---|---|
| policyholder_id | string | Must be a UUID. The unique identifier of the policyholder. |
| type | string | The policyholder type. |
| id | object | (Individual policyholders only) Object containing policyholder's identification information. |
| title | string | The policyholder's title. |
| date_of_birth | string | (Individual policyholders only) The policyholder's date of birth in the format YYYYMMDD. |
| gender | string | Null is allowed. (Individual policyholders only) The policyholder's gender. |
| initials | string, null | null is allowed. The policyholder or primary contact's initials. |
| first_name | string | The policyholder or primary contact's legal first name. |
| middle_name | string, null | null is allowed. The policyholder or primary contact's legal middle name. |
| last_name | string | The policyholder or primary contact's legal last name. |
| string, null | null is allowed. The policyholder or primary contact's contact email address. | |
| cellphone | string, null | null and "" allowed. String containing the cellphone number in international format. |
| phone_other | string, null | null and "" allowed. String containing the phone number in international format. |
| policy_ids | array | An array of ids of the policies linked to this policyholder. |
| policies | array | An 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_at | string | The time at which the policyholder was created. |
| app_data | object, null | null is allowed. An object containing additional custom data for the policy holder. |
| created_by | object, null | null is allowed. An object indicating the user or API key that created the policyholder. See Authentication. |
| address | object, null | null 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"
}
}