> 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-individual.md).

# Create Client (Individual)

## Create Client

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

**Headers**

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

**Body**

| Name          | Type              | Description    |
| ------------- | ----------------- | -------------- |
| `firstname`   | string            |                |
| `lastname`    | string            |                |
| `middlename`  | string (Optional) |                |
| `phoneNumber` | string            |                |
| emailAddress  | string            |                |
| `address`     | string            |                |
| `bvn`         | string            |                |
| nin           | string            | (Optional)     |
| `gender`      | string            | (male, female) |
| `dateOfBirth` | string            | 1993/12/29     |
| `metadata`    | json              | optional       |

**Response**

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

```json
{
    "success": true,
    "data": {
        "metadata": {},
        "createdAt": 1717077370399,
        "updatedAt": 1717077370399,
        "id": 1,
        "accountNumber": "0000000033",
        "accountName": "Garo - Ismail",
        "accountType": "individual",
        "firstname": "John",
        "lastname": "Doe",
        "middlename": "User",
        "mobileNumber": "08091329974",
        "externalReference": "24053014560933057683",
        "emailAddress": "ahmad9980@doe.com",
        "bvn": "992323214",
        "gender": "male",
        "address": "wall street",
        "dateOfBirth": "1993/12/29",
        "validityType": "permanent"
    }
}
```

{% endtab %}

{% tab title="400" %}

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

{% endtab %}
{% endtabs %}
