查询订单
该接口仅提供微信代扣订单的查询,商户可以通过该接口主动查询微信代扣订单状态,完成下一步的业务逻辑。
请求参数 | 类型 | 描述 |
---|---|---|
xml | object | 声明请求的XML 数据结构 |
appid | string | 请求appid |
mch_id | string | 商户号 |
transaction_id | string | 微信订单号 |
sign_type | string | 签名类型 |
php
$instance->v2->transit->queryorder->postAsync([
'xml' => [
'appid' => 'wxcbda96de0b165486',
'mch_id' => '10000098',
'transaction_id' => '1009660380201506130728806387',
'sign_type' => 'HMAC-SHA256',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/transit/queryorder')->postAsync([
'xml' => [
'appid' => 'wxcbda96de0b165486',
'mch_id' => '10000098',
'transaction_id' => '1009660380201506130728806387',
'sign_type' => 'HMAC-SHA256',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/transit/queryorder']->postAsync([
'xml' => [
'appid' => 'wxcbda96de0b165486',
'mch_id' => '10000098',
'transaction_id' => '1009660380201506130728806387',
'sign_type' => 'HMAC-SHA256',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->transit->queryorder->post([
'xml' => [
'appid' => 'wxcbda96de0b165486',
'mch_id' => '10000098',
'transaction_id' => '1009660380201506130728806387',
'sign_type' => 'HMAC-SHA256',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/transit/queryorder')->post([
'xml' => [
'appid' => 'wxcbda96de0b165486',
'mch_id' => '10000098',
'transaction_id' => '1009660380201506130728806387',
'sign_type' => 'HMAC-SHA256',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/transit/queryorder']->post([
'xml' => [
'appid' => 'wxcbda96de0b165486',
'mch_id' => '10000098',
'transaction_id' => '1009660380201506130728806387',
'sign_type' => 'HMAC-SHA256',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典 | 类型 | 描述 |
---|---|---|
return_code | string | 返回状态码 |
return_msg | string | 返回信息 |
appid | string | 请求appid |
mch_id | string | 商户号 |
nonce_str | string | 随机字符串 |
sign | string | 签名 |
result_code | string | 业务结果 |
err_code | string | 错误代码 |
err_code_des | string | 错误代码描述 |
device_info | string | 设备号 |
openid | string | 用户标识 |
is_subscribe | string | 是否关注公众账号 |
trade_type | string | 交易类型 |
trade_state | string | 交易状态 |
bank_type | string | 付款银行 |
total_fee | integer | 总金额 |
fee_type | string | 货币种类 |
cash_fee | integer | 现金支付金额 |
cash_fee_type | string | 现金支付货币类型 |
settlement_total_fee | integer | 应结订单金额 |
coupon_fee | integer | 代金券或立减优惠金额 |
coupon_count | integer | 代金券或立减优惠使用数量 |
coupon_type_$n | string | 代金券类型 |
coupon_id_$n | string | 代金券或立减优惠ID |
coupon_fee_$n | integer | 单个代金券或立减优惠支付金额 |
transaction_id | string | 微信支付订单号 |
out_trade_no | string | 商户订单号 |
attach | string | 附加数据 |
time_end | string | 支付完成时间 |
trade_state_desc | string | 交易状态描述 |
参阅 官方文档