Contact
Attributes
external_idstring · min: 1 · max: 100RequiredExample:
Your system's unique identifier for this contact
CRM123456
first_namestring · min: 1 · max: 100RequiredExample:
Contact's first name
Alex
last_namestring · min: 1 · max: 100RequiredExample:
Contact's last name
Lee
address_1string · min: 1 · max: 100OptionalExample:
Primary address line
1215 19th St
address_2string | nullableOptionalExample:
Secondary address line
Suite 100
birth_datestring · enumOptionalExample:
Contact's date of birth
01/15/1955
Possible values: citystring · min: 1 · max: 100OptionalExample:
City name
Sacramento
extra_helpboolean,string · enum | nullableOptionalExample:
Whether the contact receives Extra Help
false
Possible values: medicaid_eligibleboolean,string · enum | nullableOptionalExample:
Whether the contact is eligible for Medicaid
false
Possible values: medicaid_numberstringOptionalExample:
Contact's Medicaid number
MED123456
medicare_numberstring · min: 1 · max: 1000OptionalExample:
Contact's Medicare number
123456789A
medicare_part_a_effective_datestring · enumOptionalExample:
Medicare Part A effective date
01/01/2024
Possible values: medicare_part_b_effective_datestring · enumOptionalExample:
Medicare Part B effective date
01/01/2024
Possible values: notesstring[] · min: 1 · max: 50OptionalExample:
Array of notes about the contact. Each item in the notes array will be added as a note on the contact record. When updating, it will append to the existing notes and not overwrite any of the existing notes.
["Initial contact made on 03/20/2024"]
phonestringOptionalExample:
Contact's phone number
8557722663
sexstring · enumOptionalExample:
Contact's sex
male
Possible values: statestringOptionalExample:
Two-letter state code
CA
typestring · enumOptionalExample:
Contact type
client
Possible values: zipstringOptionalExample:
ZIP code
95811
The Contact object
{
"external_id": "CRM123456",
"first_name": "Alex",
"last_name": "Lee",
"address_1": "1215 19th St",
"address_2": "Suite 100",
"birth_date": "01/15/1955",
"city": "Sacramento",
"email": "[email protected]",
"extra_help": false,
"medicaid_eligible": false,
"medicaid_number": "MED123456",
"medicare_number": "123456789A",
"medicare_part_a_effective_date": "01/01/2024",
"medicare_part_b_effective_date": "01/01/2024",
"notes": [
"Initial contact made on 03/20/2024"
],
"phone": "8557722663",
"sex": "male",
"state": "CA",
"type": "client",
"zip": "95811"
}
Last updated