The member object

Required properties

ParameterTypeDescription
first_nameStringThe first name of the member.
last_nameStringThe last name of the member.
has_sms_consentBooleanSet to true if member consents to receiving SMS. If mobile_number is blank, set to false.

Optional properties

ParameterTypeDescription
genderStringThe gender of the member. Only accepts Male or Female.
birth_dateStringThe birth date of the member. The date format should be YYYY-MM-DD.
Example: 2020-12-31
is_marriedBooleanSet to true if the member is married.
emailStringThe email of the member.
phone_numberStringThe phone number of the member. Should be a valid US phone number. It is preferred if the phone number doesn't have any spaces, parentheses, and dashes.
Example: 7195025680
mobile_numberStringThe mobile number of the member. Should be a valid US mobile number. It is preferred if the phone number doesn't have any spaces, parentheses, and dashes.
Example: 7195025680
occupationStringThe occupation of the member.
household_relationshipStringThe relationship of the member to the origin member. The accepted values are Self, Parent, Spouse, Son, Daughter, In-Law, Resident Relative, and Grandchild (case sensitive).
heightStringThe height of the member as any string description.
weightFloatThe weight of the member in pounds as any float.
is_tobacco_userBooleanSet to true if the member is is a tobacco user.
has_pre_existing_conditionsBooleanSet to true if the member has any pre-existing medical conditions.
has_prescriptionsBooleanSet to true if the member has any prescriptions.
has_military_serviceBooleanSet to true if the member has any prior military experience.
has_duiBooleanSet to true if the member has any prior DUIs.
credit_ratingStringThe member's credit rating. Can be either a description like 'Excellent' or a specific number.
notesStringA general field that can be used to provide more details, for example on pre-existing conditions if true.

Example

{
"first_name": "Melvin",
"last_name": "Yost",
"gender": "Male",
"birth_date": "1975-12-21",
"is_married": true,
"email": "melvin.yost@goldnerwaelchi.name",
"phone_number": "8437041100",
"mobile_number": "8184086414",
"has_sms_consent": true,
"occupation": "Accountant",
"household_relationship": "In-Law",
"height": "5ft 9in",
"weight": 175.5,
"is_tobacco_user": false,
"has_pre_existing_conditions": true,
"has_prescriptions": null,
"has_military_service": true,
"credit_rating": "Excellent",
"has_dui": false,
"notes": "Pre-existing diagnosis of ..."
}
*The details in the example above are fictional. Any resemblance to an actual person, living or dead, is purely coincidental.