# 1.3 Get QRCODE Payments

# rquest URL
  • /api/v1/qrcode/{mchOrderId}/payments
# request method
  • GET
# request params
parameter name Is it mandatory type of data description
appId mandatory string application APPID
startDate mandatory string format: yyyy-MM-dd
endDate mandatory string format: yyyy-MM-dd
sign mandatory string sign

# response params

parameter name type of data example description
code int 1000 Status code see reference
message String success The message of status code
data List - Response Data
- transactionId String C1012656903220387370 PayCools Unique transaction number
- transactionCreateTime String 2022-07-04 10:53:40 Transaction create time
- transactionReturnTime String 2022-07-01 00:30:00 Transaction completion time
- transactionAmount long 1000 Transaction amount
- channelCode String INSTA_TRANSFER_ACC Collection Channel Code
- transactionStatus String COMPLETE Transaction status
- remark String - remark
# successful response example
{
    "code": 1000,
    "message": "success",
    "data": [
        {
          "transactionId": "QR202207021812441385",
          "transactionCreateTime": "2022-07-02 18:12:47",
          "transactionReturnTime": "2022-07-02 18:12:47",
          "transactionAmount": 50000,
          "channelCode": "QRPH_STATIC_QR",
          "transactionStatus": "COMPLETE",
          "remark": "test static qrcode"
        }
    ]
}
# failed response example. code see reference
{
    "code":1002,
    "message":"merchant white ip forbidden",
}