1. CreditCardPay
ANexPay Docs
  • Introduction
  • Signature
  • API Keys
  • Get Started
  • Webhook Service
  • Enum Reference
  • Api Reference
    • Authentication
      • Get Auth Token
    • Hosted Payment Page
      • Hosted Payment Page
    • CreditCardPay
      • List Payment History
        POST
      • Get Payment Detail
        POST
      • Refund
        POST
      • List Subscriptions
        POST
      • Get Subscription Detail
        POST
      • Cancel Subscription
        POST
      • Get Subscription Bills
        POST
    • StableCoinPay
      • order
        • GetCheckoutOrderList
      • refund-order
        • CreateRefundOrder
        • CancelRefundOrder
        • GetRefundOrderInfo
        • GetRefundOrderList
      • settlement
        • CreateFiatSettlementOrder
        • CancelSettlementOrder
        • GetSettlementOrderList
      • abnormal-payment
        • GetAbnormalPaymentList
        • CreateAbnormalPaymentRefund
  • Schemas
    • Schemas
      • RefundOrderDTO
      • RefundPageReq
      • ApiPageApiPageRefundOrderDTO
      • ApiResponseApiPageRefundOrderDTO
      • CancelReq
  1. CreditCardPay

Get Payment Detail

Developing
POST
/checkout/credit-card/payments/detail
Get full payment detail by transaction number, including fee breakdown and payment method info.

Request

Body Params application/jsonRequired

Example
{
  "trxNo": "CT1714012345678"
}

Responses

🟢200成功
application/json
Bodyapplication/json

Example
{
  "retcode": "200",
  "retmsg": null,
  "retdata": {
    "id": 1001,
    "trxNo": "TRX1714012345678",
    "gatewayOrderNo": "cs_xxx",
    "channelId": "STRIPE",
    "status": "PAID",
    "payMode": "ONETIME",
    "mchOrderNo": "ORD-20240423-001",
    "mchSubscriptionNo": null,
    "amount": 99.99,
    "currency": "USD",
    "description": "Order payment",
    "customerEmail": "user@example.com",
    "createTime": "2026-04-23T10:00:00",
    "payTime": "2026-04-23T10:01:30",
    "processingFee": 2.99,
    "netAmount": 97.00,
    "gatewayAvailableOn": "2026-04-25T00:00:00",
    "paymentMethodLast4": "4242",
    "paymentMethodBrand": "visa",
    "paymentMethodType": "Visa credit card",
    "paymentMethodExpiry": "05/2032",
    "paymentMethodFingerprint": "abc123xyz",
    "cvcCheck": "Passed",
    "zipCheck": "Passed",
    "billingZip": "10001",
    "billingCountry": "US",
    "statementDescriptor": "WPAY*ORDER",
    "source": "Manually entered from Dashboard",
    "redirectUrl": null,
    "errMsg": null
  }
}
Modified at 2026-06-03 08:40:23
Previous
List Payment History
Next
Refund
Built with