[PayOut] BDT Payment Data
For shops with BDT currency, when creating a payout (POST /api/v1/payouts) the following fields must be sent in the paymentData object.
Required fields in paymentData
| Parameter | Type | Required | Description |
|---|---|---|---|
| wallet_provider | string | Yes | Wallet provider. Possible values: Nagad, BKash. |
Example request body
{
"external_id": "PAY-BDT-001",
"amount": 5000.00,
"currency": "BDT",
"card_number": "4111111111111111",
"shop_code": "your_bdt_shop",
"paymentData": {
"wallet_provider": "BKash",
}
}
Without valid wallet_provider in paymentData, the request will be rejected with a validation error (422, "Invalid paymentData").