# 1.3 Get QrCode Merge Payments

# rquest URL
  • /api/v2/qrcode/merge/payments
# request method
  • GET
# request params
parameter name Is it mandatory type of data description
appId mandatory string application APPID
startDate optional string format: yyyy-MM-dd
endDate optional string format: yyyy-MM-dd
aggregateOrderId optional string aggregate order id. Select one for aggregateOrderId and subOrderId
subOrderId optional string sub order id. Select one for aggregateOrderId and subOrderId
sign mandatory string sign
# Successful Response example
{
    "code": 1000,
    "message": "success",
    "data": [
        {
          "transactionId": "QR202207021812441385",
          "transactionCreateTime": "2022-07-02 18:12:47",
          "transactionReturnTime": "2022-07-02 18:12:47",
          "channelCode": "QRPH_HYBRID_QR",
          "transactionStatus": "COMPLETE",
          "amount": 10000, 
          "fee": 2000, 
          "totalAmount": 12000, 
          "remark": "test static qrcode",
          "aggregateOrderId": "PCW000000000046071",
          "subOrderId": "PCW0000000012378",
          "businessType": 1
        }
    ]
}
# failed response example. code see reference (opens new window)
{
    "code":1002,
    "message":"merchant white ip forbidden",
}