Skip to main content
POST
/
v1
/
recipients
/
resolve-bank-account
Resolves a bank account
curl --request POST \
  --url https://api.sandbox.busha.so/v1/recipients/resolve-bank-account \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "currency_id": "NGN",
  "country_id": "NG",
  "channel": "mobile_money",
  "bank_code": "000013",
  "account_number": "0123456789"
}'
{
"status": "success",
"message": "message for success",
"data": {
"country_id": "NG",
"currency_id": "BTC",
"channel": "bank_transfer",
"bank_code": "000013",
"account_number": "0123456789",
"account_name": "John Doe",
"bank_name": "Trust Bank"
}
}

Authorizations

Authorization
string
header
required

Bearer Authentication

Headers

X-BU-PROFILE-ID
string

User profile header

Example:

"BUS_YOK8tp5Zga01qOKEsqp07"

Body

application/json
currency_id
string<string>
required

A valid currency

Required string length: 1 - 10
Example:

"BTC"

country_id
string<alpha2>
required

A valid country id

Required string length: 2
Example:

"NG"

channel
enum<string>
required

Channel for the transfer

Available options:
mobile_money,
bank_transfer,
pay_bill,
till
Example:

"bank_transfer"

account_number
string
required

Account number for receiving bank

Example:

"0123456789"

bank_code
string

Bank sort code

Example:

"000013"

Response

Recipient created successfully

General response Values

status
enum<string>
required
Available options:
success,
error
Example:

"success"

message
string
required
Example:

"message for success"

data
object
required