Update a Business

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

Please note, when KYB status = approved, you can no longer update the following fields:
- legal name
- idNumber

ENDPOINT

  1. PATCH /v1/business/:id

REQUEST

  1. {
  2.     "legalName": "Acme Business LLC"
  3. }

RESPONSE

  1. {
  2.     "id": "bus-0fc3d3cb-f2bf-407b-8377-77acc57f5ea6",
  3.     "legalName": "Acme Business LLC",
  4.     "entityType": "limitedLiabilityCompany",
  5.     "dba": "Acme Corp",
  6.     "email": "john@acme.com",
  7.     "idNumber": "187654321",
  8.     "idType": "ein",
  9.     "phone": "+16604491146",
  10.     "formationDate": "2018-02-18",
  11.     "website": "acme.com",
  12.     "about": "clinic for health issues",
  13.     "industry": "healthServices",
  14.     "address": {
  15.         "addressType": "mailing",
  16.         "line1": "456 Main St",
  17.         "line2": "",
  18.         "city": "New York",
  19.         "state": "NY",
  20.         "country": "US",
  21.         "postalCode": "10001"
  22.     },
  23.     "kyb": {
  24.         "id": "kyb-f9e32837-19d8-4f66-923b-18648169a8eb",
  25.         "businessId": "bus-0fc3d3cb-f2bf-407b-8377-77acc57f5ea6",
  26.         "status": "notStarted",
  27.         "reviewCode": "",
  28.         "reviewMessage": "",
  29.         "results": {
  30.             "fraud": "notStarted",
  31.             "address": "notStarted",
  32.             "businessName": "notStarted",
  33.             "personName": "notStarted"
  34.         },
  35.         "createdAt": "2021-12-14T23:35:28Z",
  36.         "modifiedAt": "2021-12-14T23:35:28Z"
  37.     },
  38.     "disclosureStatus": "notStarted",
  39.     "createdAt": "2021-12-14T23:35:27Z",
  40.     "modifiedAt": "2021-12-14T23:50:26Z",
  41.     "programId": "prg-b9f17601-4717-460e-bda5-9598f6f6db28",
  42.     "createdPersonId": "per-3ebfa3d2-5d36-411d-984a-9e3a328011c5",
  43.     "metadata": null,
  44.     "status": "active"
  45. }