Skip to main content
版本: 1.0.x

付款查询

请求

API URL: /merchant/order/payment

Note

✅ 必填 ⭕ 可選 ❌ 不適用

标头内容描述
Content-Typetext/plain
Authorization{token_type} {access_token}用空格连接 token_typeaccess_token
参数类型必填签名描述
user_id字符串商户标识码
order_id字符串商户系统的支付订单 ID。订单 ID 应保持唯一
return_hash布尔值是否返回交易哈希
sign字符串签名字符串

响应

参数类型必填签名描述
user_id字符串商户标识码
order_id字符串商户系统的支付订单 ID。订单 ID 应保持唯一
transaction_id字符串PTS 交易ID
channel字符串请参考 货币和通道
submit_currency字符串提交的货币
submit_amount浮点数提交的金额(支持最多6位小数)
accept_currency字符串实际支付的货币
accept_amount浮点数支付的金额(支持最多6位小数)
exchange_rate浮点数汇率
status字符串0000 = 等待
1000 = 处理中
2000 = 成功
3000 = 失败
4000 = 订单错误
timestamp整数交易的最后更新时间戳(10位数字)
submit_promo浮点数提交金额促销(支持最多6位小数)
accept_promo浮点数支付的货币的促销金额(支持最多6位小数)
hash字符串交易哈希。(当 return_hash 为真时提供)
payment_address字符串专用于加密货币,如有需要,请通知客服人员
receiving_address字符串专用于加密货币,如有需要,请通知客服人员
error_message字符串错误信息
sign字符串签名字符串

响应示例

{
"code": "1000",
"message": "Order Success",
"data": {
"user_id": "1",
"order_id": "20210521184906",
"transaction_id": "P12021052118495503889",
"channel": "CNY2TRC",
"submit_currency": "CNY",
"submit_amount": "1000.0000000000",
"accept_currency": "USDT-TRC",
"accept_amount": "165.9181999999",
"exchange_rate": "0.1659182000",
"status": "1000",
"timestamp": 1621594195,
"sign": "mG6FFzJvVh8DpQJpMUPWH619CelyDZgkgnty2HW..."
}
}