> ## Documentation Index
> Fetch the complete documentation index at: https://doc.raliopay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

# Creating a Business User — Field Values Reference

When you create a business user (`POST /api/v1/account/business-user`), several fields only accept a constrained set of values. This guide explains **where each value comes from** so your request doesn't get rejected with a validation error.

There are two kinds of constrained fields:

* **Fixed enums** — a closed list defined by the API. The valid values are shown in the request schema of the [Create business user](/api-reference/business-user/create-business-user) endpoint, and listed here for convenience.
* **Dynamic catalogs** — values that live in a reference endpoint you must query first. You cannot hardcode these; always fetch the current list.

***

## Fixed enums

These values are part of the API contract. Send them exactly as written (uppercase, underscore-separated).

### `company.incorporation.constitutionType`

The legal structure of the company.

| Value                   | Description                                    |
| :---------------------- | :--------------------------------------------- |
| `INDIVIDUAL`            | Individual / Sole Proprietor                   |
| `CORPORATION`           | Corporation / Inc.                             |
| `LLC`                   | Limited Liability Company (LLC / Ltd.)         |
| `PARTNERSHIP`           | General Partnership                            |
| `LIMITED_PARTNERSHIP`   | Limited Partnership (LP)                       |
| `SOLE_PROPRIETORSHIP`   | Sole Proprietorship                            |
| `COOPERATIVE`           | Cooperative                                    |
| `NON_PROFIT`            | Non-Profit Organization / NGO                  |
| `GOVERNMENT`            | Government Entity                              |
| `TRUST`                 | Trust                                          |
| `FINANCIAL_INSTITUTION` | Regulated Financial Institution / Bank         |
| `FOUNDATION`            | Foundation / Charitable Organization           |
| `OTHER`                 | Other — describe it in `constitutionTypeOther` |

> **Important:** When you send `OTHER`, also fill `constitutionTypeOther` with a free-text description.

### `businessActivity.industryType`

| Value                   |
| :---------------------- |
| `WHOLESALE`             |
| `RETAIL`                |
| `CRYPTO_FINTECH`        |
| `ECOMMERCE`             |
| `EDUCATION`             |
| `ENTERTAINMENT`         |
| `GOVERNMENT`            |
| `HOSPITALITY`           |
| `MANUFACTURING`         |
| `PAYMENTS_REMITTANCE`   |
| `FINANCIAL_SERVICES`    |
| `PROFESSIONAL_SERVICES` |
| `HEALTHCARE`            |
| `TRANSPORT_LOGISTICS`   |
| `REAL_ESTATE`           |
| `NON_PROFIT`            |
| `OTHER`                 |

> **Important:** When you send `OTHER`, also fill `industryTypeOther` with a free-text description.

### `businessActivity.expectedMonthlyVolume`

| Value           | Range               |
| :-------------- | :------------------ |
| `LESS_THAN_50K` | Under 50,000        |
| `50K_TO_250K`   | 50,000 – 250,000    |
| `250K_TO_500K`  | 250,000 – 500,000   |
| `500K_TO_1M`    | 500,000 – 1,000,000 |
| `MORE_THAN_1M`  | Over 1,000,000      |

***

## Dynamic catalogs

### Country fields — ISO 3166-1 alpha-2

Every country field — `company.incorporation.country`, `company.addresses.registered.country`, `company.addresses.operational.country`, `company.contact.phoneNumberCountry`, `company.contact.mobileCountryCode`, and any `country` inside `businessActivity.fundsFlow` — expects a **2-letter ISO 3166-1 alpha-2 code** (e.g. `ES`, `US`, `FR`).

To get the list of countries Ralio supports, query:

```text theme={null}
GET /api/v1/reference/countries
```

See [List countries](/api-reference/countries/list-countries).

***

## Free-text fields

The following fields are **not** enums — they accept free text and have no catalog to query:

* `businessActivity.businessNature`
* `businessActivity.revenueModel`
* `businessActivity.productsAndServices`

> **Note:** Percentages in `businessActivity.revenueBreakdown` and in `businessActivity.fundsFlow` (inwards/outwards) must each sum to **100**.
