Create a new individual (client profile)
/individuals
Create a new client profile/individual with the provided data
Body Parameters
first_name: string
First name of the individual
household_id: string
Household ID this individual belongs to
last_name: string
Last name of the individual
address_line1: optional string
Street address line 1
address_line2: optional string
Street address line 2
city: optional string
City
country: optional string
Country
date_of_birth: optional string
Date of birth
formatdate
email: optional string
Email address
formatemail
is_beneficiary: optional boolean
Whether this client profile should be an eligible beneficiary for entities and gifts
is_deceased: optional boolean
Whether the individual is deceased
is_grantor: optional boolean
Whether this client profile should be an eligible grantor/owner/other principal for entities
is_primary: optional boolean
Whether this is a primary client of the household (at most 2 per household)
is_trustee: optional boolean
Whether this client profile should be an eligible trustee for entities
middle_name: optional string
Middle name of the individual
notes: optional string
Notes about the client profile
maxLength65536
postal_code: optional string
ZIP or postal code
state: optional string
State or province
suffix: optional string
Name suffix
Returns
Create a new individual (client profile)
curl https://$WITHLUMINARY_SUBDOMAIN.withluminary.com/api/public/v1/individuals \
-H 'Content-Type: application/json' \
-d '{
"first_name": "John",
"household_id": "household_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"last_name": "Smith"
}'
{
"id": "client_profile_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"created_at": "2024-01-15T09:30:00Z",
"first_name": "John",
"household_id": "household_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"is_beneficiary": true,
"is_deceased": true,
"is_grantor": true,
"is_primary": true,
"is_trustee": true,
"last_name": "Smith",
"updated_at": "2024-01-20T14:45:00Z",
"address_line1": "123 Main St",
"address_line2": "Apt 4B",
"city": "San Francisco",
"country": "USA",
"date_of_birth": "1980-05-15",
"date_of_death": "2019-12-27",
"deleted_at": "2019-12-27T18:11:19.117Z",
"email": "john.smith@example.com",
"middle_name": "Michael",
"notes": "notes",
"postal_code": "94102",
"state": "CA",
"suffix": "Jr."
}
Returns Examples
{
"id": "client_profile_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"created_at": "2024-01-15T09:30:00Z",
"first_name": "John",
"household_id": "household_01ARZ3NDEKTSV4RRFFQ69G5FAV",
"is_beneficiary": true,
"is_deceased": true,
"is_grantor": true,
"is_primary": true,
"is_trustee": true,
"last_name": "Smith",
"updated_at": "2024-01-20T14:45:00Z",
"address_line1": "123 Main St",
"address_line2": "Apt 4B",
"city": "San Francisco",
"country": "USA",
"date_of_birth": "1980-05-15",
"date_of_death": "2019-12-27",
"deleted_at": "2019-12-27T18:11:19.117Z",
"email": "john.smith@example.com",
"middle_name": "Michael",
"notes": "notes",
"postal_code": "94102",
"state": "CA",
"suffix": "Jr."
}