Create Transfer Recipient

POST /wallets/banks/transfer-recipient/

The POST /wallets/banks/transfer-recipient/ endpoint is used to create a transfer recipient for withdrawals.


Parameters

Request Body

Field

Type

Required

Description

Constraints

account_name

String

Yes

Name associated with the account.

Min length: 1, Max length: 255

account_number

String

Yes

Account number of the recipient.

Min length: 1, Max length: 255

bank_code

String

Yes

Code of the recipient's bank.

Min length: 1, Max length: 255


Example Request Body

{
  "account_name": "John Doe",
  "account_number": "1234567890",
  "bank_code": "001"
}

Responses

201 Created

Field

Type

Description

account_name

String

Name associated with the account.

account_number

String

Account number of the recipient.

bank_code

String

Code of the recipient's bank.


Example Response

{
  "account_name": "John Doe",
  "account_number": "1234567890",
  "bank_code": "001"
}

Last updated