Payin Transaction Verify

VERIFY ENDPOINTS

Environment Urls

Sandbox: https://devbox.paydestal.com/pay
Prod:    https://api.paydestal.com/pay

PAYIN TRANSACTION VERIFY


curl --location --request GET 'https://devbox.paydestal.com/pay/api/v1/verify-transaction?transactionReference=PYDN20240601184303-2557756463282' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {your client secret key}'

Response

{
    "responseCode": "200",
    "responseMessage": "Retrieved Payment",
    "data": {
        "id": "0cdee40a-c395-404d-9066-82fb4e26ea74",
        "amount": 3000.0,
        "amountPaid": 0.0,
        "fee": 0.0,
        "feeRatio": 0.0,
        "feeType": "Fixed",
        "customerName": "George J",
        "accountNumber": "4700032542",
        "channel": "BANKTRANSFER",
        "reference": "000010c7cfd5-9a59-4646-9ab7-fce44ab7ffc8",
        "payReference": "PYDN20240601184303-2557756463282",
        "currency": "NGN",
        "paymentStatus": "PENDING",
        "paymentStartDate": "2024-06-01 18:43:03 +0100",
        "stampDutyFee": 0,
        "appliedStampDutyFee": false
    },
    "success": true
}

Payment Status Values

  PROCESSING
  SUCCESSFUL
  CANCELED
  STARTED
  PENDING_3DS_AUTH
  PENDING
  REFUNDED
  DECLINED
  NOACTION
  FAILED
  REFUND
  INITIALIZED
  ATTEMPTED
  ABANDONED

Last updated