# Create descendant enterprise

`POST https://api.airtable.com/v0/meta/enterpriseAccounts/{enterpriseAccountId}/descendants`

Creates a descendant enterprise account of the enterprise account.
Descendant enterprise accounts can only be created for root enterprise accounts with the Enterprise Hub feature enabled.

Note that descendant enterprise accounts are also called organizational units (org units).

For more information on org units in organizations with Enterprise Hub, please see [our support article](https://support.airtable.com/docs/enterprise-hub-in-airtable#understanding-and-using-organizational-units).

## Requirements

- **Authentication:** [Personal access token](https://airtable.com/developers/web/api/authentication.md#types-of-token), [OAuth integration](https://airtable.com/developers/web/api/authentication.md#types-of-token)
- **Scope:** [`enterprise.account:write`](https://airtable.com/developers/web/api/scopes.md#enterprise-account-write)
- **User role:** Enterprise admin
- **Billing plans:** Enterprise (pre-2023.08 legacy plan), Enterprise Scale

## Path parameters

- `enterpriseAccountId: string`

## Request body

- `name: string` — required

## Response format

- `id: string` — required

### Example — Success Response

```sh
curl -X POST "https://api.airtable.com/v0/meta/enterpriseAccounts/{enterpriseAccountId}/descendants" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
--data '{
    "name": "Example name"
  }'
```

```json
{
  "id": "entUBq2RGdihxl3vU"
}
```
