Skip to main content

3.2 Get PayIn Status

GET /api/v1/payins/{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/payins/PIN-BDT-001?shop_code=your_bdt_shop

Response

Empty paymentData is omitted from the response.

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

Example response

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