# Create Transfer Recipients

{% hint style="warning" %}
**In a nutshell**

To send money from your integration, you need to collect the customer’s details to create a beneficiary.
{% endhint %}

A transfer recipient is a beneficiary created on your integration in order to allow you send money. Before sending money from your integration, you need to collect the customer’s details and use their details to create a transfer recipient.

### Create Dedicated Account

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

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

**Request Body**

Below are the request body parameters :tada:

| Name                | Type   | Description                                                                                                                                   |
| ------------------- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------- |
| **bank\_code**      | String | You can get the list of Bank Codes by calling the [List Banks](https://padiwise.gitbook.io/padiwise/disbursement/get-all-bank-list) endpoint. |
| **account\_number** | Number | Nigerian Uniform Bank Account Number. It represents bank accounts in Nigeria.                                                                 |

Response Body

```
{
	"status": true,
	"message": "Transfer recipient created successfully",
	"data": {
		"active": true,
		"createdAt": "2022-02-21T11:35:59.302Z",
		"currency": "NGN",
		"domain": "live",
		"email": "oluwaseanzy@gmail.com",
		"name": "Oluwasen Olajuwon",
		"recipient_code": "55356",
		"details": {
			"account_number": null,
			"account_name": null,
			"bank_code": "057",
			"bank_name": "Wema Bank"
		}
	}
}
```
