# 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](/padiwise/disbursement/get-all-bank-list.md) 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"
		}
	}
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://padiwise.gitbook.io/padiwise/disbursement/create-transfer-recipients.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
