Skip to content

回退结果查询

商户需要核实回退结果,可调用此接口查询回退结果。

请求参数类型描述
xmlobject声明请求的XML数据结构
mch_idstring商户号
sub_mch_idstring子商户号
appidstring公众账号ID
sub_appidstring子商户公众账号ID
sign_typestring签名类型
HMAC-SHA256 枚举值
order_idstring微信分账单号
out_order_nostring商户分账单号
out_return_nostring商户回退单号
php
$instance->v2->pay->profitsharingreturnquery->postAsync([
  'xml' => [
    'mch_id'        => '1900000100',
    'sub_mch_id'    => '1900000109',
    'appid'         => 'wx8888888888888888',
    'sub_appid'     => 'wx8888888888888888',
    'sign_type'     => 'HMAC-SHA256',
    'order_id'      => '3008450740201411110007820472',
    'out_order_no'  => 'P20150806125346',
    'out_return_no' => 'R20190516001',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/pay/profitsharingreturnquery')->postAsync([
  'xml' => [
    'mch_id'        => '1900000100',
    'sub_mch_id'    => '1900000109',
    'appid'         => 'wx8888888888888888',
    'sub_appid'     => 'wx8888888888888888',
    'sign_type'     => 'HMAC-SHA256',
    'order_id'      => '3008450740201411110007820472',
    'out_order_no'  => 'P20150806125346',
    'out_return_no' => 'R20190516001',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/pay/profitsharingreturnquery']->postAsync([
  'xml' => [
    'mch_id'        => '1900000100',
    'sub_mch_id'    => '1900000109',
    'appid'         => 'wx8888888888888888',
    'sub_appid'     => 'wx8888888888888888',
    'sign_type'     => 'HMAC-SHA256',
    'order_id'      => '3008450740201411110007820472',
    'out_order_no'  => 'P20150806125346',
    'out_return_no' => 'R20190516001',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->pay->profitsharingreturnquery->post([
  'xml' => [
    'mch_id'        => '1900000100',
    'sub_mch_id'    => '1900000109',
    'appid'         => 'wx8888888888888888',
    'sub_appid'     => 'wx8888888888888888',
    'sign_type'     => 'HMAC-SHA256',
    'order_id'      => '3008450740201411110007820472',
    'out_order_no'  => 'P20150806125346',
    'out_return_no' => 'R20190516001',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/pay/profitsharingreturnquery')->post([
  'xml' => [
    'mch_id'        => '1900000100',
    'sub_mch_id'    => '1900000109',
    'appid'         => 'wx8888888888888888',
    'sub_appid'     => 'wx8888888888888888',
    'sign_type'     => 'HMAC-SHA256',
    'order_id'      => '3008450740201411110007820472',
    'out_order_no'  => 'P20150806125346',
    'out_return_no' => 'R20190516001',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/pay/profitsharingreturnquery']->post([
  'xml' => [
    'mch_id'        => '1900000100',
    'sub_mch_id'    => '1900000109',
    'appid'         => 'wx8888888888888888',
    'sub_appid'     => 'wx8888888888888888',
    'sign_type'     => 'HMAC-SHA256',
    'order_id'      => '3008450740201411110007820472',
    'out_order_no'  => 'P20150806125346',
    'out_return_no' => 'R20190516001',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典类型描述
return_codestring返回状态码
SUCCESS | FAIL 枚举值之一
return_msgstring返回信息
appidstring公众账号ID
mch_idstring商户号
nonce_strstring随机字符串
signstring签名
result_codestring业务结果
SUCCESS | FAIL 枚举值之一
err_codestring错误代码
err_code_desstring错误代码描述
sub_mch_idstring子商户号
sub_appidstring子商户公众账号ID
order_idstring微信分账单号
out_order_nostring商户分账单号
out_return_nostring商户回退单号
return_nostring微信回退单号
return_account_typestring回退方类型
MERCHANT_ID 枚举值
return_accountstring回退方账号
return_amountinteger回退金额
descriptionstring回退描述
resultstring回退结果
SUCCESS | PROCESSING | FAILED 枚举值之一
fail_reasonstring失败原因
ACCOUNT_ABNORMAL | TIME_OUT_CLOSED | PAYER_ACCOUNT_ABNORMAL | INVALID_REQUEST 枚举值之一
finish_timestring完成时间

参阅 官方文档 官方文档

Published on the GitHub by TheNorthMemory