> For the complete documentation index, see [llms.txt](https://padiwise.gitbook.io/padiwise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://padiwise.gitbook.io/padiwise/collections/create-virtual-account.md).

# Create Virtual Account

### Create Dedicated Account

&#x20;<mark style="color:green;">`POST`</mark>  `{{ BASE }}/dedicated-account`&#x20;

```
--header 'Accept: application/json'
--header 'Authorization: Bearer {{  access_token }}'
```

**Request Body**

Below are the request body parameters :tada:

| Name              | Type   | Description           |
| ----------------- | ------ | --------------------- |
| **first\_name**   | String | First Name            |
| **last\_name**    | String | Last Name             |
| **email**         | String | Email Address         |
| **phone\_number** | Number | 11 Digit Phone number |
| **kyc\_type**     | String | bvn or nin            |
| **kyc\_number**   | Number | Bvn or Nin Number     |

Response Body

```
{
    "statuscode": 200,
    "status": true,
    "message": "Virtual accounts created successfully",
    "event_type": "dedicated_account",
    "reference": "CUS_7ieiebfwy09k6qo",
    "data": {
        "account_name": "{{Business Name}}/{{ Customer Name }}",
        "accounts": {
            "account_number": "1234567890",
            "bank_name": "Wema Bank",
            "bank_code": 24,
            "reservation_reference": 1030XXXXX
        }
    }
}
```
