PayproPaypro
  • 🇮🇩 Indonesia
  • 🇵🇰 Pakistan
  • 🇵🇭 Philippines
  • 🇰🇪 Kenya
  • 🇪🇬 Egypt
  • 🇲🇽 Mexico
  • 🇧🇩 Bengal
  • 🇳🇬 Nigeria
  • 🇮🇩 Indonesia
  • 🇵🇰 Pakistan
  • 🇵🇭 Philippines
  • 🇰🇪 Kenya
  • 🇪🇬 Egypt
  • 🇲🇽 Mexico
  • 🇧🇩 Bengal
  • 🇳🇬 Nigeria
  • Philippines

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

Payment Casher

    Tips

    • All requests are Post requests, and the data format is json
    Brief Description
    Request URL
    • /v1/paypro/paymentLink
    Request Method
    • POST
    Header
    HeaderRequiredTypeDescription
    merchantNoYesstringNone
    Body
    Parameter NameRequiredTypeDescription
    signYesstringExcept for sign, the remaining fields should be sorted by the first letter to form key1=value1key2=value2, and then use the app secret as salt to perform MD5 encryption. The final sign should be in lowercase.
    timestampYeslongTimestamp (e.g., 1715941383720)
    amountYesstringPayment amount (amounts with decimals are not recommended)
    payTypeYesstringPayment type.
    • E-wallet: GCash, GrabPay, Maya, QRPH
    • Modify QR: GCash QR, Maya QR, Gotyme QR
    • Bank: UnionBank, BPI, RCBC
    tradeNoYesstringTransaction number (should be unique; recommended format: YYYYMMDDHHMMSS + random number)
    remarkNostringRemarks; this field will be returned as is
    notifyUrlYesstringAsynchronous callback URL, e.g., https://www.abc.com/. If not provided, the system will redirect to the default success page.
    returnUrlYesstringRedirect page after successful payment
    Example of Request Parameters
    {
      "amount": "200",
      "payType": "3",
      "tradeNo": "99333213852",
      "notifyUrl": "https://www.111.com/",
      "sign": "50f25c09a201e9df0fa9d4c67a53a092",
      "timestamp": "1729945561186"
    }
    
    Response Result
    Parameter NameRequiredTypeDescription
    msgYesstringRequest result (when returning "success", it only indicates that this request was successful; it should not be used for merchant-side logic judgment)
    codeYesstringRequest response code (when returning "0000", it only indicates that this request was successful; it should not be used for merchant-side logic judgment). For specific error codes, please refer to the business error code enumeration.
    timestampYesstringTransaction time
    successYesstringTransaction result
    dataYesObjectReturned object
    data.platFormTradeNoYesstringPlatform order number, unique
    data.statusYesstringRequest result; merchants can use it for logical processing. When the result is "0000", it indicates that the transaction is successful; "0015" indicates processing; all others are error codes and can be treated as failures.
    data.descYesstringError description
    data.remarkYesstringContent returned from the request (returned as is)
    data.paymentLinkYesstringPayment link, i.e., the cash register
    Example of Successful Return
    {
        "msg": "success",
        "code": "0000",
        "timestamp": 1729945579983,
        "success": true,
        "data": {
            "platFormTradeNo": "8h7kold1d6g8fbmm",
            "status": "0015",
            "desc": "CREATED",
            "paymentLink": "https://www.kaixin199.info/payment/Maya/PHP60801Maya061484533"
        }
    }
    

    Last Updated:
    Contributors: wsc
    Prev
    Payment API
    Next
    Payout API