Policy Holder Type
object
(Policy Holder)
Policy Holder Properties
Property | Type | Required | Nullable |
---|---|---|---|
first_name | string | Optional | cannot be null |
last_name | string | Optional | cannot be null |
middle_name | string | Optional | cannot be null |
full_name | string | Optional | cannot be null |
birth_date | string | Optional | cannot be null |
age | number | Optional | cannot be null |
email | string | Optional | cannot be null |
address | object | Optional | cannot be null |
phone | string | Optional | cannot be null |
Sample JSON
{
"first_name": "Fize",
"last_name": "User",
"middle_name": "Demo",
"full_name": "Fize Demo User",
"birth_date": "1980-10-21",
"age": 42,
"email": "[email protected]",
"address": {
"entity_number": "1447",
"street": "Winding",
"city": "Providence",
"state": "RI",
"zip": "22903",
"country": "USA",
"raw_address": "1447, Winding Way, Providence, RI 22903"
},
"phone": "1234567890"
}