预授权撤销查询
# 预授权撤销查询
注意
请在同步返回之后调用查询接口,否则可能会发生查询异常的情况
# 请求地址
https://sandbox-acquirer-payment.pingpongx.com/v4/void/query
1
https://acquirer-payment.pingpongx.com/v4/void/query
1
// Make sure to add code blocks to your code group
# 请求参数
# 公共请求参数
暂无数据
# 业务参数
| 参数字段 | 参数类型 | 参数属性 | 参数说明 |
|---|---|---|---|
| merchantVoidId | String(64) | M | 商户网站预授权取消流水号 |
| merchantTransactionId | String(64) | M | 商户网站的原交易流水号 |
# 响应参数
# 公共响应参数
暂无数据
# 返回参数
| 参数字段 | 参数类型 | 参数说明 |
|---|---|---|
| transactionId | String(64) | PingPong 原交易流水号 |
| merchantTransactionId | String(64) | 商户网站的原交易流水号 |
| currency | String(3) | 币种 |
| resultCode | String(6) | 状态结果码 |
| resultDescription | String(500) | 状态结果描述 |
| amount | String(14) | void金额 |
| voidTime | String(32) | void发起时间,时间戳 |
| voidEndingTime | String(32) | void到达终态时间,时间戳 |
| status | String(32) | 交易状态:状态幂等 SUCCESS-成功 FAILED-失败 PROCESSING-处理中 |
# 响应报文示例
{
"accId": "2023060217493010231446",
"bizContent": "{\"amount\":\"200.000000\",\"resultCode\":\"000000\",\"transactionId\":\"2023062150000345\",\"voidTime\":\"1687347620000\",\"merchantTransactionId\":\"PMT-P1IC0ZS7E11687347218645\",\"currency\":\"USD\",\"resultDescription\":\"Transaction succeeded\",\"status\":\"SUCCESS\"}",
"clientId": "2023060217493010231",
"code": "001000",
"description": "Successful request",
"sign": "1EDDB8216409E900AD29095174BEC90710CDD5D2D4B72D84DBD4DF8F2C3E169B",
"signType": "SHA256"
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
// Make sure to add code blocks to your code group
上次更新: 2024/01/31, 16:04:21