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

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

Balance Inquiry API

    Tips

    Balance Inquiry

    Brief Description
    • None (No specific description provided)
    Request URL
    • /v1/payproPK/queryBalance
    Request Method
    • POST
    Header
    Header FieldRequiredTypeDescription
    merchantNoYesstring(No description)
    Request Body Parameters
    Parameter NameRequiredTypeDescription
    timestampYesstringTimestamp
    signYesstringEncryption signature

    Example Request Body:

    {
      "timestamp": "1724151084278",
      "sign": "774ac9334c7c36d8fa92ffbaf2129c6d"
    }
    
    Successful Response
    Parameter NameRequiredTypeDescription
    msgYesstringRequest result (indicating success but not for logical judgment)
    codeYesstringRequest response code (indicating success but not for logical judgment)
    timestampYesstringExample timestamp value (e.g., 1715941383720)
    successYesstringTransaction result (boolean outcome)
    dataYesObjectReturned data object
    data.availableAmountYesstringMerchant balance
    data.freezeAmountYesstringFrozen amount
    data.unsettledAmountYesstringAmount pending settlement

    Example Successful Response:

    {
        "msg": "success",
        "code": "0000",
        "timestamp": "1719830171485",  // Note: The type should be string in consistency with the description, even though it looks like a number
        "success": "true",            // Note: Typically, "true" should be without quotes in JSON, but here it's kept as a string for consistency with the provided example
        "data": {
            "availableAmount": "9998989.0000",
            "unsettledAmount": "0.0000",
            "freezeAmount": "0.0000"
        }
    }
    
    Last Updated:
    Contributors: wsc
    Prev
    Bank List