Skip to Content
BangladeshPayoutGet Payout Status (Bangladesh)

Get Payout Status (Bangladesh)

GET/v1/payouts/:id

Poll the status of a payout after Create Payout. There is no request body.

Path parameters

FieldTypeRequiredDescription
idstringYesUse transactionId from the create response

Example

curl -X GET https://api.transacty.ai/v1/payouts/{transactionId} \
  -H "X-Transacty-Key: $TRANSACTY_KEY" \
  -H "X-Transacty-Timestamp: $TS" \
  -H "X-Transacty-Signature: $SIG" \
  -H "Content-Type: application/json"

Response fields

FieldTypeDescription
idstringInternal id (same as transactionId)
transactionIdstringPublic transaction id
statusstringPENDING while processing; success when complete
amountstringAmount sent to the beneficiary
currencystringPayout currency — BDT
platformOrderIdstringProvider-side order reference (present on success)
recipientobjectBeneficiary and card-holder details
recipient.benificiaryAccountInfoobjectDestination wallet / account
recipient.cardHolderInfoobjectSender identity
createdAtstring (ISO datetime)Creation timestamp
completedAtstring | null (ISO datetime)Completion timestamp; null while pending
estimatedCompletionstring (ISO datetime)Estimated completion; usually while pending
feesobjectTransacty service fee for this payout
fees.platformFeestringFee amount charged for the service
fees.feeTypestringpayout
fees.feeStatusstringestimated while pending; applied on success
netAmountstring | nullnull for Bangladesh payouts in current responses
totalWalletDebitstringTotal debited from your BDT wallet (amount + platformFee)

On success, status is success, completedAt is set, platformOrderId is returned, and fees.feeStatus is applied. totalWalletDebit stays 315.00 (300 BDT to beneficiary + 15 BDT service fee). Keep polling until status === "success" or you receive a payout.completed webhook.

Next steps

Last updated on