Skip to content

Bangladesh Taka Payouts

Use this page to create payouts using Bkash / Nagad / Rocket method.

  • Base URL: https://api.paylander.com/api/v1/payout/
  • Endpoint: POST /v1/payout/

Overview

Common fields (see Payout API):

  • channel (UUID, required)
  • amount (object, required)
    • currency (ISO 4217, must be BDT)
    • value (string, required)
  • external_id (string, required) → your internal order or payout ID
  • description (string, optional)
  • payout_method (object, required)

payout_method (type: bkash)

Required:

  • type"bkash"
  • account_number → account number to send the payout to

payout_method (type: nagad)

Required:

  • type"nagad"
  • account_number → account number to send the payout to

payout_method (type: rocket)

Required:

  • type"rocket"
  • account_number → account number to send the payout to

Example Request

json
{
  "channel": "b96d5b92-8f34-4b12-9b16-5f047b57c901",
  "amount": {
    "currency": "BDT",
    "value": "250.00"
  },
  "payout_method": {
    "type": "bkash",
    "account_number": "11111"
  },
  "description": "Withdrawal #49283",
  "external_id": "ORDER-49283",
  "callback_url": "https://your-company.com/callback"
}

Example Response

json
{
  "status": "processing",
  "transaction_id": "b5cff6ed-f3f0-46df-a390-2ffdb11430f4",
  "external_id": "ORDER-49283"
}