# Get Client Accounts

## Create Client

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

**Headers**

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

**Params**

| Name           | Type   | Description |
| -------------- | ------ | ----------- |
| `accountType`  | string | Optional    |
| `validityType` | string | Optional    |
| `status`       | string | Optional    |
| `page`         | number | Optional    |
| `limit`        | number | Optional    |

**Response**

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

```json
{
    "success": true,
    "data": [
        {
            "metadata": {},
            "id": 1,
            "externalReference": "123456",
            "accountType": "individual",
            "firstName": "John",
            "lastName": "Doe",
            "mobileNumber": "08020304051",
            "accountNumber": "000000018",
            "accountName": "John Doe",
            "accountTier": null,
            "emailAddress": "john1@doe.com",
            "bvn": "22222222221",
            "dateOfBirth": "21/2/2020",
            "businessId": 1,
            "rcNumber": null,
            "incorporationDate": null,
            "createdAt": 1704284832,
            "updatedAt": 1704284832
        }
    ]
}
```

{% endtab %}

{% tab title="400" %}

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

{% endtab %}
{% endtabs %}
