# 1.3 Bank Transfer Account还款列表
- 商户 Bank Transfer 还款码 - 查询还款列表
# 请求URL
/api/v1/paymentAccount/{mchOrderId}/payments
# 请求方式
- GET
# 请求参数
参数名 | 必选 | 类型 | 长度限制 | 示例 | 说明 |
---|---|---|---|---|---|
appId | 是 | string | - | - | 应用APPID |
startDate | 是 | string | - | 2022-05-26 | format: yyyy-MM-dd 交易开始时间 |
endDate | 是 | string | - | 2022-05-27 | format: yyyy-MM-dd 交易完成时间 |
channelCode | 否 | string | - | - | Bank Transfer渠道Code |
sign | 是 | string | - | 45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892 | 签名 |
# 响应参数
参数名 | 类型 | 示例 | 说明 |
---|---|---|---|
code | int | 1000 | 状态码, 参考列表 |
message | String | success | 状态码信息 |
data | List | - | 返回具体信息 |
- transactionId | String | C1012656903220387370 | Paycools系统订单号 |
- transactionCreateTime | String | 2022-07-04 10:53:40 | 交易创建时间 |
- transactionReturnTime | String | 2022-07-01 00:30:00 | 交易完成时间 |
- transactionAmount | long | 交易金额 | |
- channelCode | String | INSTA_TRANSFER_ACC | 渠道code |
- transactionStatus | String | COMPLETE | 交易状态, 参考列表 |
- remark | String | 备注 |
# 返回示例
{
"code": 1000,
"message": "success",
"data": [
{
"transactionId": "C1012656903220387370",
"transactionCreateTime": "2022-07-04 10:53:40",
"transactionReturnTime": "2022-07-01 00:30:00",
"transactionAmount": 1000,
"channelCode": "INSTA_TRANSFER_ACC",
"transactionStatus": "COMPLETE",
"remark": null
},
{
"transactionId": "C1012656903288586511",
"transactionCreateTime": "2022-07-04 10:54:49",
"transactionReturnTime": "2022-07-04 10:30:00",
"transactionAmount": 2000,
"channelCode": "INSTA_TRANSFER_ACC",
"transactionStatus": "COMPLETE",
"remark": null
},
{
"transactionId": "C1012656903298999446",
"transactionCreateTime": "2022-07-04 10:54:59",
"transactionReturnTime": "2022-07-04 10:31:00",
"transactionAmount": 3000,
"channelCode": "INSTA_TRANSFER_ACC",
"transactionStatus": "COMPLETE",
"remark": null
},
{
"transactionId": "C1012656903311620576",
"transactionCreateTime": "2022-07-04 10:55:12",
"transactionReturnTime": "2022-07-04 10:33:21",
"transactionAmount": 4500,
"channelCode": "INSTA_TRANSFER_ACC",
"transactionStatus": "COMPLETE",
"remark": null
}
]
}
# 返回失败案例
{
"code": 1002,
"message": "merchant white ip forbidden"
}