PayproPaypro
  • 🇮🇩 Indonesia
  • 🇵🇰 Pakistan
  • 🇻🇳 Vietnam
  • 🇵🇭 Philippines
  • 🇰🇪 Kenya
  • 🇪🇬 Egypt
  • 🇧🇷 Brazil
  • 🇲🇽 Mexico
  • 🇮🇩 Indonesia
  • 🇵🇰 Pakistan
  • 🇻🇳 Vietnam
  • 🇵🇭 Philippines
  • 🇰🇪 Kenya
  • 🇪🇬 Egypt
  • 🇧🇷 Brazil
  • 🇲🇽 Mexico
  • Vietnam

    • Overview
    • Error Code
    • Payment API
    • Payout API
    • Payment Query API
    • Payout Query API
    • Payment Notify API
    • Bank List
    • Balance Inquiry API

Payout Query API

    Tips

    • All requests are Post requests, and the data format is json
    Brief Description

    This API allows the business party to actively query the payment results.

    Request URL
    • /v1/payproVN/queryPayOutResult
    Request Method
    • POST
    Header
    ParameterRequiredTypeDescription
    merchantNoYesstringMerchant number
    Request Body Parameters
    NameRequiredTypeDescription
    tradeNoYesstringTransaction number provided by the merchant during payout.
    timestampYesstringTimestamp of the request.
    signYesstringEncrypted signature.
    Request Example
    {
      "sign": "b609f38f4c3900a82beaf2222611083d",
      "timestamp": "1729153976003",
      "tradeNo": "133323384"
    }
    
    Successful Response Example
    Parameter NameRequiredTypeDescription
    msgYesstringRequest result (only indicates the success of the current request, not for merchant-side logic).
    codeYesstringResponse code (only indicates the success of the current request, not for merchant-side logic). For specific error codes, refer to the business error code enumeration.
    timestampYesstringTimestamp of the response.
    successYesstringTransaction result.
    dataYesObjectReturned object.
    data.platFormTradeNoYesstringUnique platform transaction number.
    data.tradeNoYesstringMerchant transaction number returned.
    data.amountYesstringTransaction amount.
    data.statusYesstringRequest result. "0000" indicates success, "0015" indicates processing, and other values indicate error codes for failure handling.
    data.messageYesstringError description.
    data.successTimeYesstringTransaction success time (local time).
    Successful Response Example
    {
        "msg": "success",
        "code": "0000",
        "timestamp": 1729325978798,
        "success": true,
        "data": {
            "platFormTradeNo": "7zr8om5hzclkemsz",
            "tradeNo": "133323384",
            "amount": "50000.00",
            "status": "0000",
            "successTime": "2024-10-19 14:37:28"
        }
    }
    
    Last Updated:
    Contributors: wsc
    Prev
    Payment Query API
    Next
    Payment Notify API