# 1.3 Bank Transfer Account Payments
# request URL
/api/v1/paymentAccount/{mchOrderId}/payments
# request method
- GET
# request params
parameter name | Is it mandatory | type of data | length | example | description |
---|---|---|---|---|---|
appId | mandatory | string | - | - | application APPID |
startDate | mandatory | string | - | 2022-05-26 | format: yyyy-MM-dd startDate |
endDate | mandatory | string | - | 2022-05-27 | format: yyyy-MM-dd endDate |
channelCode | optional | string | - | - | Bank Transfer, channelCode: Multiple chanlcode strings and separated by commas see reference (opens new window) |
sign | mandatory | string | - | 45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892 | 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 see reference |
- remark | String | remark |
# successful response example
{
"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
}
]
}
# failed response example. code see reference
{
"code": 1002,
"message": "merchant white ip forbidden"
}