Update a Contact

Updates the contact information by passing the contact id.
Contacts
Update a Contact
 last updated: 
November 30, 2023

You can only update the:
- name
- email
- phone
- intrabank object
- ach object
- wire object
- check object
- card object

ENDPOINT

  1. PATCH /v1/contact/:id

REQUEST

  1. {
  2.     "accountId": "{{accountId}}",
  3.     "name": "Bright Might LLC",
  4.     "email": "dwightmight@gmail.com",
  5.     "phone": "+18467051333"
  6. }

RESPONSE

  1. {
  2.     "id": "con-ab8e4ddc-cf09-448d-aa19-f71527b8393c",
  3.     "accountId": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
  4.     "name": "Bright Might LLC",
  5.     "email": "dwightmight@gmail.com",
  6.     "phone": "+18467051333",
  7.     "status": "active",
  8.     "intrabank": {
  9.         "accountNumber": "9990001149517700"
  10.     },
  11.     "ach": {
  12.         "accountNumber": "1098324502",
  13.         "routingNumber": "121042882",
  14.         "accountType": "businessChecking",
  15.         "bankName": "Wells Fargo"
  16.     },
  17.     "createdAt": "2021-12-16T05:48:21Z",
  18.     "modifiedAt": "2021-12-16T06:07:10Z",
  19.     "wire": {
  20.         "domestic": {
  21.             "accountNumber": "1098324502",
  22.             "routingNumber": "121042882",
  23.             "accountType": "businessChecking",
  24.             "bankName": "Wells Fargo",
  25.             "address": {
  26.                 "addressType": "wire",
  27.                 "line1": "123 Main St",
  28.                 "line2": "",
  29.                 "city": "New York",
  30.                 "state": "NY",
  31.                 "country": "US",
  32.                 "postalCode": "10001"
  33.             }
  34.         },
  35.         "international": null
  36.     },
  37.     "check": {
  38.         "address": {
  39.             "addressType": "check",
  40.             "line1": "123 Main St",
  41.             "line2": "",
  42.             "city": "New York",
  43.             "state": "NY",
  44.             "country": "US",
  45.             "postalCode": "10001"
  46.         }
  47.     },
  48.     "card": {
  49.         "address": {
  50.             "addressType": "card",
  51.             "line1": "123 Main St",
  52.             "line2": "",
  53.             "city": "New York",
  54.             "state": "NY",
  55.             "country": "US",
  56.             "postalCode": "10001"
  57.         }
  58.     },
  59.     "type": "others",
  60.     "metadata": null,
  61.     "programId": "prg-b9f17601-4717-460e-bda5-9598f6f6db28",
  62.     "debitCard": null
  63. }