# Create Customer Wallet

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

```javascript
//A code snippet of how to consume the API

var myHeaders = new Headers();
myHeaders.append("Accept", "application/json");
myHeaders.append("Authorization", "Bearer PRI_0000000");
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
  "first_name": "Azeezat",
  "last_name": "|ST",
  "phone": "09043458321",
  "email": "aze.ezat.2021@gmail.com"
});

var requestOptions = {
  method: 'POST',
  headers: myHeaders,
  body: raw,
  redirect: 'follow'
};

fetch("https://demo.backend.monicredit.com/api/v1/payment/virtual-account/create", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));
```

{% endtab %}

{% tab title="PHP" %}

```php
//A code snippet of how to consume the API

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://demo.backend.monicredit.com/api/v1/payment/virtual-account/create',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "first_name" : "Azeezat",
    "last_name" : "|ST",
    "phone" : "09043458321",
    "email" : "aze.ezat.2021@gmail.com"
}',
  CURLOPT_HTTPHEADER => array(
    'Accept: application/json',
    'Authorization: Bearer PRI__0000000',
    'Content-Type: application/json'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
```

{% endtab %}
{% endtabs %}

<mark style="color:green;">`POST`</mark> `{{BaseURL}}/payment/virtual-account/create`

#### Headers

| Name                                            | Type   | Description       |
| ----------------------------------------------- | ------ | ----------------- |
| Authorization<mark style="color:red;">\*</mark> | String | {{bearer\_token}} |

#### Request Body

| Name                                          | Type   | Description        |
| --------------------------------------------- | ------ | ------------------ |
| first\_name<mark style="color:red;">\*</mark> | String | Test               |
| last\_name<mark style="color:red;">\*</mark>  | String | Test               |
| phone<mark style="color:red;">\*</mark>       | String | 00000              |
| email<mark style="color:red;">\*</mark>       | String | <test@example.com> |

{% tabs %}
{% tab title="201: Created " %}

<pre class="language-json"><code class="lang-json">{
<strong>    "status": true,
</strong>    "message": "Customer account created successfully"
}
</code></pre>

{% endtab %}
{% endtabs %}
