Skip to main content

2.2 Get PayOut Status

GET /api/v1/payouts/{external_id}

Request

ParameterTypeRequiredDescription
X-API-KeystringYesAPI key.
X-TimestampstringYesRequest time.
X-SignaturestringYesHMAC-SHA256(secret, timestamp + body). For GET requests body is empty.

Example request

GET /api/v1/payouts/PAY-BDT-001?shop_code=your_bdt_shop

Response

Empty paymentData is omitted from the response.

ParameterTypeDescription
idnumberPayfield operation ID.
external_idstringPayout identifier provided at creation.
shop_codestringShop code used for routing.
statusstringCurrent merchant-facing payout status.
amountstringPayout amount.
currencystringPayout currency.
updated_atstringLast update timestamp.
paymentDataobjectShop-schema output, when configured and non-empty.

Example response

{
"id": 12345,
"external_id": "PAY-BDT-001",
"shop_code": "your_bdt_shop",
"status": "pending",
"amount": "5000.00",
"currency": "BDT",
"updated_at": "2025-12-05T10:00:00.000000Z"
}