# Update a business entity

**PATCH** `/entities/business/{entity_id}`

Update an existing business entity.

> **Note: Managing Associated Persons**
>
> Beneficial owners and control persons are now managed through the [Associated Persons endpoints](/api/entity/get-associated-persons). This endpoint updates only the core business details.

### Path Parameters

- `entity_id` `string` _(required)_ — Unique identifier for the entity.

### Body Parameters

- `account_usage` `array of strings` — Indicates possible uses of the accounts an entity may use at Column. Only required for a root entity.
- `address` `object` — Addresses need to adhere to character validation, as addresses are used across multiple payment rails. Characters are validated according to the [Fedwire character validation](/wire#valid-characters-permitted).
  - `city` `string` _(required)_ — City name
  - `country_code` `string` _(required)_ — Two-letter ISO 3166-1 alpha-2 country code (e.g. `US`)
  - `line_1` `string` _(required)_ — Street address line 1
  - `line_2` `string` — Street address line 2
  - `postal_code` `string` — Postal or ZIP code
  - `state` `string` — State or province
- `business_name` `string` — Legal Business Name
- `collected_at` `object` — Field collection timestamps, keyed by field path (for example, `business_name` or `ein`). Values must be RFC3339 timestamps between `1900-01-01T00:00:00Z` and the current time. PATCH merges keys into the existing map; an empty map preserves existing timestamps. Nested beneficial owner fields do not support `collected_at`; attest beneficial owners separately as person entities.
- `countries_of_operation` `array of strings` — Countries in which the business currently operates or expects to operate. Only ISO 3166-1 Alpha-2 Country Codes (e.g., `US`, `FR`, `UK`, `DE`, ... ) are allowed. Only required for a root entity.
- `country_of_incorporation` `string` — Country in which the business is incorporated. ISO 3166-1 Alpha-2 Country Code.
- `date_of_incorporation` `string` — Date on which the business was incorporated. Format: `YYYY-MM-DD`.
- `dba_name` `string` — Doing Business As name, if different from the legal business name.
- `description` `string` — Description of the business entity. Only required for a root entity.
- `ein` `string` — Employer Identification Number (Tax ID). This may be SSN for a sole proprietorship.
- `end_customer_type` `string` — Type of end customer the business serves.
- `expected_payment_rails` `string` — Expected transaction types for the account.
- `expected_use_of_funds` `string` — Expected use of funds for the business accounts.
- `has_virtual_address` `boolean` — Indicates whether the business uses a virtual address.
- `industry` `string` — Industry in which the business entity operates.
- `is_high_risk` `boolean` — Indicates whether the entity has been identified as high risk based on compliance screening
- `legal_type` `string` — Type of business. Permitted values are `limited-partnership`, `trust`, `sole-proprietorship`, `corporation`, `llc`, `general-partnership`, `professional-association`, `government`, `non-profit`, `other`, `pic-piv`, `spv`, `irrevocable_trust`, `revocable_trust`.
- `makes_international_payments` `boolean` — Indicates whether the business expects to make international payments.
- `payment_volumes` `string` — Expected payment volumes. Only required for a root entity.
- `purpose_of_account` `string` — Intended use of the account.
- `registration_id` `object` — Registration ID. EIN or Registration ID is required.
  - `country_code` `string` — Two-letter ISO 3166-1 alpha-2 country code of the issuing country
  - `number` `string` — Registration or identification number (alphanumeric, up to 32 characters)
- `source_of_funds` `string` — Primary source of funds for the business.
- `state_of_incorporation` `string` — State in which the business is incorporated. Only postal abbreviations (e.g. `AL`, `CA`, `DE`, ...) are allowed. Only required for a root entity.
- `website` `string` — Website of the business. Optional, but highly encouraged as it will increase likelihood of an automated verification.
- `year_of_incorporation` `string` — Year in which the business entity was incorporated. Only required for a root entity.

**Request**

```shell
curl 'https://api.column.com/entities/business/<entity_id>' \
  -XPATCH \
  -u :<YOUR API KEY> \
  -H 'Content-Type: application/json' \
  -d '{
    "website": "https://yellencocktails-updated.com",
    "makes_international_payments": true,
    "description": "Premium craft cocktail lounge with international cocktail imports"
  }'
```

**Response 200**

```json
{
  "id": "enti_2Q1fIwKjnf7TmZP37mAuKjWXB2o",
  "name": "Yellen Cocktails LLC",
  "type": "BUSINESS",
  "verification_status": "VERIFIED",
  "is_root": false,
  "review_reasons": [],
  "documents": [],
  "business_details": {
    "business_name": "Yellen Cocktails LLC",
    "ein": "123456789",
    "website": "https://yellencocktails-updated.com",
    "address": {
      "line_1": "555 California Street",
      "line_2": "Suite 200",
      "city": "San Francisco",
      "state": "CA",
      "postal_code": "94104",
      "country_code": "US"
    },
    "industry": "Food & Beverage",
    "legal_type": "llc",
    "registration_id": {
      "number": "123456789",
      "country_code": "US"
    },
    "state_of_incorporation": "CA",
    "year_of_incorporation": "2019",
    "description": "Premium craft cocktail lounge with international cocktail imports",
    "countries_of_operation": [
      "US"
    ]
  }
}
```
