Individuals
List all individuals (client profiles)
client.individuals.list(IndividualListParams { household_id, is_primary, limit, offset } query?, RequestOptionsoptions?): IndividualList { data, pagination }
/individuals
Create a new individual (client profile)
client.individuals.create(IndividualCreateParams { first_name, household_id, last_name, 16 more } body, RequestOptionsoptions?): Individual { id, created_at, first_name, 21 more }
/individuals
Delete an individual
client.individuals.delete(stringid, RequestOptionsoptions?): void
/individuals/{id}
Get an individual by ID
client.individuals.retrieve(stringid, RequestOptionsoptions?): Individual { id, created_at, first_name, 21 more }
/individuals/{id}
Update an individual
client.individuals.update(stringid, IndividualUpdateParams { address_line1, address_line2, city, 16 more } body, RequestOptionsoptions?): Individual { id, created_at, first_name, 21 more }
/individuals/{id}