Skip to main content
POST
/
api
/
v1
/
bila
/
transfer-recipients
/
bank-account
Create bank account recipient
curl --request POST \
  --url https://api.example.com/api/v1/bila/transfer-recipients/bank-account \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "accountNumber": "1234567890",
  "bankId": "bank-001",
  "accountName": "John Doe",
  "country": "zm"
}
'
{
  "status": true,
  "message": "Operation completed successfully",
  "data": {}
}

Authorizations

x-api-key
string
header
required

Merchant API key (e.g., sk_live_xxx or sk_test_xxx)

Body

application/json
accountNumber
string
required

Bank account number

Example:

"1234567890"

bankId
string
required

Bank ID

Example:

"bank-001"

accountName
string

Account holder name (optional, will be resolved)

Example:

"John Doe"

country
enum<string>

Country code

Available options:
zm,
ng
Example:

"zm"

Response

Recipient created successfully

status
boolean
required

Request success status

Example:

true

message
string
required

Response message

Example:

"Operation completed successfully"

data
object

Response data