> For the complete documentation index, see [llms.txt](https://docs.bellmonie.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bellmonie.com/references/virtual-accounts/create-client-corporate.md).

# Create Client (Corporate)

## Create Client

<mark style="color:green;">`POST`</mark> `/v1/account/clients/`corporate

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Body**

| Name                | Type   | Description |
| ------------------- | ------ | ----------- |
| `rcNumber`          | number |             |
| `businessName`      | string |             |
| emailAddress        | string |             |
| `phoneNumber`       | string |             |
| `address`           | string | Optional    |
| `bvn`               | number |             |
| `incorporationDate` | string |             |
| `dateOfBirth`       | string |             |
| `metadata`          | json   | optional    |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "success": true,
    "data": {
        "metadata": {},
        "createdAt": 1717077859320,
        "updatedAt": 1717077859321,
        "id": 2,
        "businessName": "Doe Ltd A",
        "accountNumber": "0000000057",
        "accountName": "Garo - Doe",
        "accountType": "corporate",
        "rcNumber": "0000011",
        "incorporationDate": "1993-12-28T23:00:00.000Z",
        "mobileNumber": "07008190060",
        "externalReference": "24053015041852341823",
        "emailAddress": "johndoe38@acme.inc",
        "bvn": "9922938",
        "dateOfBirth": "21/2/2020",
        "address": "wall street",
        "validityType": "permanent"
    }
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "success": false,
  "message": "Request Un-Successful",
  "data": null
}
```

{% endtab %}
{% endtabs %}
