# Submit additional requirements

**POST** `/entities/{entity_id}/additional-requirements`

Submit additional requirements that may be configured as part of your compliance program at Column.

> **Note: Custom Schema**
>
> The schema for additional requirements is configured per platform. The fields shown below are examples only and will vary based on your specific compliance program. Contact your Column solutions engineer to understand which fields are required for your platform.

> **Warning: Validation**
>
> All custom fields are validated according to your platform's compliance configuration. Invalid data will result in a 400 error with field-specific error messages.

### Path Parameters

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

### Body Parameters

- `business_convicted_crime` `boolean` — Whether the business has ever been convicted of a crime.
- `business_email` `string` — The business email address.
- `business_licenses_revoked` `boolean` — Whether the business has ever had any licenses revoked.
- `business_phone_number` `string` — The business phone number in E.164 format.
- `compliance_outsourced_details` `string` — Details about outsourced compliance functions, if any.
- `employee_count` `integer` — Total number of employees at the business.
- `fi_branch_address` `object` — The branch address of the financial institution.
  - `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
- `fi_flow_of_funds` `string` — Description of the flow of funds through the financial institution.
- `fi_nested_services` `boolean` — Whether the financial institution offers nested financial services to other institutions.
- `fi_no_license_explanation` `string` — Explanation for why the financial institution does not hold a license, if applicable.
- `fi_products_services` `string` — Description of products and services offered by the financial institution.
- `hi_risk_inflow_pct_over_10` `boolean` — Whether more than 10% of inflows are from high-risk jurisdictions.
- `hi_risk_outflow_pct_over_10` `boolean` — Whether more than 10% of outflows are to high-risk jurisdictions.
- `is_financial_institution` `boolean` — Whether the entity is a financial institution.
- `legal_entity_exemption` `boolean` — Whether the entity qualifies for a legal entity exemption from beneficial ownership requirements.
- `mailing_address` `object` — The mailing address of the business entity.
  - `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
- `mrlo_entity_id` `string` — The entity ID of the Money Laundering Reporting Officer (MLRO).
- `offers_virtual_currency` `boolean` — Whether the business offers virtual currency services.
- `ownership_structure_free_text` `string` — Free-text description of the entity's ownership structure.
- `payment_percent_business` `integer` — Percentage of payments that are business-to-business (0-100).
- `payment_percent_consumer` `integer` — Percentage of payments that are consumer-to-business (0-100).
- `place_of_business_address` `object` — The physical place of business address.
  - `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
- `pooled_investment_vehicle` `boolean` — Whether the entity is a pooled investment vehicle.
- `qualified_non_profit` `boolean` — Whether the entity is a qualified non-profit organization.
- `sole_prop_entity_id` `string` — The entity ID of the sole proprietor person entity, if the business is a sole proprietorship.
- `stock_ticker` `string` — The stock ticker symbol if the business is publicly traded.
- `top_currencies` `array of strings` — List of top currency codes (ISO 4217) the business transacts in.
- `uses_iat_for_international_payments` `boolean` — Whether the business uses IAT (International ACH Transaction) for international payments.
- `virtual_currency_details` `string` — Details about the virtual currency services offered, if applicable.
- `web_presence` `array of strings` — List of URLs representing the business's web presence (websites, social media, etc.).

**Request**

```shell
curl 'https://api.column.com/entities/<entity_id>/additional-requirements' \
  -XPOST \
  -u :<YOUR API KEY> \
  -H 'Content-Type: application/json' \
  -d '{
    "sample_field_1": "sample_value_1",
    "sample_field_2": "sample_value_2"
  }'
```

**Response 200**

```json
{
  "entity_id": "enti_2dk2oXqPcB5Xb5wFpnrg50F7BeD",
  "updated_at": "2024-01-15T10:30:00Z",
  "additional_requirements": {
    "sample_field_1": "sample_value_1",
    "sample_field_2": "sample_value_2"
  }
}
```
