Contact

The Contact object

Attributes
external_idstring · min: 1 · max: 100Required

Your system's unique identifier for this contact

Example: CRM123456
first_namestring · min: 1 · max: 100Required

Contact's first name

Example: Alex
last_namestring · min: 1 · max: 100Required

Contact's last name

Example: Lee
address_1string · min: 1 · max: 100Optional

Primary address line

Example: 1215 19th St
address_2string | nullableOptional

Secondary address line

Example: Suite 100
birth_datestring · enumOptional

Contact's date of birth

Example: 01/15/1955Possible values:
citystring · min: 1 · max: 100Optional

City name

Example: Sacramento
emailstring · emailOptional

Contact's email address

Example: [email protected]
extra_helpboolean,string · enum | nullableOptional

Whether the contact receives Extra Help

Example: falsePossible values:
medicaid_eligibleboolean,string · enum | nullableOptional

Whether the contact is eligible for Medicaid

Example: falsePossible values:
medicaid_numberstringOptional

Contact's Medicaid number

Example: MED123456
medicare_numberstring · min: 1 · max: 1000Optional

Contact's Medicare number

Example: 123456789A
medicare_part_a_effective_datestring · enumOptional

Medicare Part A effective date

Example: 01/01/2024Possible values:
medicare_part_b_effective_datestring · enumOptional

Medicare Part B effective date

Example: 01/01/2024Possible values:
notesstring[] · min: 1 · max: 50Optional

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.

Example: ["Initial contact made on 03/20/2024"]
phonestringOptional

Contact's phone number

Example: 8557722663
sexstring · enumOptional

Contact's sex

Example: malePossible values:
statestringOptional

Two-letter state code

Example: CA
typestring · enumOptional

Contact type

Example: clientPossible values:
zipstringOptional

ZIP code

Example: 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