Update a Family

Updates the family information by passing the family id.
Family
Update a Family
 last updated: 
November 30, 2023

You can only update:
- name
- email
- phone
- address

ENDPOINT

  1. PATCH /v1/family/:id

REQUEST

  1. {
  2.     "name": "Doe Fam"
  3. }

RESPONSE

  1. {
  2.     "id": "fam-6988065d-5a54-4d0c-b83b-d3190a93e52e",
  3.     "programId": "prg-b9f17601-4717-460e-bda5-9598f6f6db28",
  4.     "createdPersonId": "per-d0309a56-a71f-449b-8d1b-105f926dcfc0",
  5.     "status": "active",
  6.     "name": "Doe Fam",
  7.     "email": "test@solidfi.com",
  8.     "phone": "+14815220744",
  9.     "address": {
  10.         "addressType": "mailing",
  11.         "line1": "1 Broadway",
  12.         "line2": "",
  13.         "city": "Los Gatos",
  14.         "state": "CA",
  15.         "country": "US",
  16.         "postalCode": "95030"
  17.     },
  18.     "createdAt": "2022-03-31T21:01:35Z",
  19.     "modifiedAt": "2022-03-31T21:03:15Z",
  20.     "metadata": null
  21. }