Skip to main content

2.1 Create PayOut

POST /api/v1/payouts

Request

ParameterTypeRequiredDescription
X-API-KeystringYesAPI key.
X-TimestampstringYesRequest time (ISO-8601 or UNIX sec).
X-SignaturestringYesHMAC-SHA256(timestamp + body, secret).
Content-TypestringYesapplication/json.

Example request

{
"external_id": "PAY-BDT-001",
"amount": "5000.00",
"currency": "BDT",
"card_number": "4111111111111111",
"shop_code": "your_bdt_shop",
"merchant_user_id": "merchant-user-001",
"merchant_user_ip": "203.0.113.10",
"callback_url": "https://merchant.example.com/webhooks/payout"
}

Response

Response fields

Fields with null values and empty paymentData are omitted from the response.

ParameterTypeDescription
idnumberPayfield operation ID.
statusstringCurrent payout status.
external_idstringUnique payout identifier from the request.
amountstringPayout amount.
currencystringPayout currency.
shop_codestringShop code used for routing.
card_numberstringRecipient wallet, account, or card number.
merchant_user_idstringMerchant user identifier from the request.
merchant_user_ipstringUser IP from the request.
callback_urlstringCallback URL from the request, when provided.
transaction_typestringAlways payout.
created_atstringCreation timestamp.
updated_atstringLast update timestamp.
finalization_datestringReturned when the payout reaches a final status.

Example response

{
"id": 12345,
"status": "pending",
"external_id": "PAY-BDT-001",
"amount": "5000.00",
"currency": "BDT",
"shop_code": "your_bdt_shop",
"card_number": "4111111111111111",
"merchant_user_id": "merchant-user-001",
"merchant_user_ip": "203.0.113.10",
"callback_url": "https://merchant.example.com/webhooks/payout",
"transaction_type": "payout",
"created_at": "2025-12-05T10:00:00.000000Z",
"updated_at": "2025-12-05T10:00:00.000000Z"
}