# Create New Tenant

## Create new Tenant.

<mark style="color:orange;">`PUT`</mark> `/tenants/user`&#x20;

Create new Tenant. For Tenant Admin role only.

#### Request Body

| Name | Type  | Description        |
| ---- | ----- | ------------------ |
|      | Array | New Tenant fields. |

{% tabs %}
{% tab title="200: OK Successful Operation" %}

```javascript
{
content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tenant'
}
```

{% endtab %}

{% tab title="401: Unauthorized Unauthorized" %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="403: Forbidden Forbidden" %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="500: Internal Server Error Internal Server Error" %}

```javascript
{
content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
}
```

{% endtab %}
{% endtabs %}
