PAYIN
Get PAYIN Status

Get PAYIN Status

Endpoint

  • Method: GET
  • Path: /v1/payins/:id
  • Purpose: Get status of a pay-in transaction

Path Parameters

FieldTypeRequiredDescription
idstringYesUse transactionId from create response

Request Payload

No request body.

Response

Success (200)

FieldTypeDescription
idstringInternal id
transactionIdstringPublic transaction id
statusstringpending or success
amountstringRequested amount
paidAmountstring | nullPaid amount when successful
platformOrderIdstringPlatform order reference
paymentMethodstringPayment method code
createdAtstring (ISO datetime)Creation timestamp
completedAtstring | null (ISO datetime)Completion timestamp
{
  "id": "uuid",
  "transactionId": "uuid",
  "status": "pending",
  "amount": "500",
  "paidAmount": null,
  "platformOrderId": "...",
  "paymentMethod": "BKASH",
  "createdAt": "...",
  "completedAt": null
}