Update an individual
individuals.update(strid, IndividualUpdateParams**kwargs) -> Individual
/individuals/{id}
Update an existing client profile with new data
Parameters
id: str
address_line1: Optional[str]
Street address line 1
address_line2: Optional[str]
Street address line 2
city: Optional[str]
City
country: Optional[str]
Country
date_of_birth: Optional[Union[null, null, null]]
Date of birth
formatdate
date_of_death: Optional[Union[null, null, null]]
Date of death if applicable
formatdate
email: Optional[str]
Email address
formatemail
first_name: Optional[str]
First name of the individual
Whether this client profile should be an eligible beneficiary for entities and gifts
Whether the individual is deceased
Whether this client profile should be an eligible grantor/owner/other principal for entities
Whether this is a primary client of the household (at most 2 per household)
Whether this client profile should be an eligible trustee for entities
last_name: Optional[str]
Last name of the individual
middle_name: Optional[str]
Middle name of the individual
notes: Optional[str]
Notes about the client profile
maxLength65536
postal_code: Optional[str]
ZIP or postal code
state: Optional[str]
State or province
suffix: Optional[str]
Name suffix
Returns
Update an individual
from withluminary import Luminary
client = Luminary()
individual = client.individuals.update(
id="id",
)
print(individual.id)
{
"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."
}