Skip to content

消费押金

微信支付根据商户指令,将用户消费金额扣除手续费后结算给指定商户,剩余金额原路退还给用户,并生成押金退款交易记录,给用户下发押金退还发起通知,并更改押金支付的交易记录。用户押金退还到账后,下发押金退还到账通知。若全部消费,则下发押金全部消费通知;

请求参数类型描述
securitytrue声明加载商户API证书
xmlobject声明请求的XML数据结构
appidstring公众账号ID
sub_appidstring子商户公众账号ID
mch_idstring商户号
sub_mch_idstring子商户号
transaction_idstring微信订单号
out_trade_nostring商户订单号
total_feeinteger押金总金额
consume_feeinteger消费金额
fee_typestring货币类型
sign_typestring签名类型
HMAC-SHA256 枚举值
php
$instance->v2->deposit->consume->postAsync([
  'security' => true,
  'xml' => [
    'appid'          => 'wx8888888888888888',
    'sub_appid'      => 'wx8888888888888888',
    'mch_id'         => '1900000100',
    'sub_mch_id'     => '1900000100',
    'transaction_id' => '013467007045764',
    'out_trade_no'   => '1217752501201407033233368018',
    'total_fee'      => '888',
    'consume_fee'    => '888',
    'fee_type'       => 'CNY',
    '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/deposit/consume')->postAsync([
  'security' => true,
  'xml' => [
    'appid'          => 'wx8888888888888888',
    'sub_appid'      => 'wx8888888888888888',
    'mch_id'         => '1900000100',
    'sub_mch_id'     => '1900000100',
    'transaction_id' => '013467007045764',
    'out_trade_no'   => '1217752501201407033233368018',
    'total_fee'      => '888',
    'consume_fee'    => '888',
    'fee_type'       => 'CNY',
    'sign_type'      => 'HMAC-SHA256',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/deposit/consume']->postAsync([
  'security' => true,
  'xml' => [
    'appid'          => 'wx8888888888888888',
    'sub_appid'      => 'wx8888888888888888',
    'mch_id'         => '1900000100',
    'sub_mch_id'     => '1900000100',
    'transaction_id' => '013467007045764',
    'out_trade_no'   => '1217752501201407033233368018',
    'total_fee'      => '888',
    'consume_fee'    => '888',
    'fee_type'       => 'CNY',
    '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->deposit->consume->post([
  'security' => true,
  'xml' => [
    'appid'          => 'wx8888888888888888',
    'sub_appid'      => 'wx8888888888888888',
    'mch_id'         => '1900000100',
    'sub_mch_id'     => '1900000100',
    'transaction_id' => '013467007045764',
    'out_trade_no'   => '1217752501201407033233368018',
    'total_fee'      => '888',
    'consume_fee'    => '888',
    'fee_type'       => 'CNY',
    'sign_type'      => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/deposit/consume')->post([
  'security' => true,
  'xml' => [
    'appid'          => 'wx8888888888888888',
    'sub_appid'      => 'wx8888888888888888',
    'mch_id'         => '1900000100',
    'sub_mch_id'     => '1900000100',
    'transaction_id' => '013467007045764',
    'out_trade_no'   => '1217752501201407033233368018',
    'total_fee'      => '888',
    'consume_fee'    => '888',
    'fee_type'       => 'CNY',
    'sign_type'      => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/deposit/consume']->post([
  'security' => true,
  'xml' => [
    'appid'          => 'wx8888888888888888',
    'sub_appid'      => 'wx8888888888888888',
    'mch_id'         => '1900000100',
    'sub_mch_id'     => '1900000100',
    'transaction_id' => '013467007045764',
    'out_trade_no'   => '1217752501201407033233368018',
    'total_fee'      => '888',
    'consume_fee'    => '888',
    'fee_type'       => 'CNY',
    'sign_type'      => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典类型描述
return_codestring返回状态码
SUCCESS | FAIL 枚举值之一
return_msgstring返回信息
appidstring公众账号ID
sub_appidstring子商户公众账号ID
mch_idstring商户号
sub_mch_idstring子商户号
nonce_strstring随机字符串
signstring签名
result_codestring业务结果
SUCCESS | FAIL 枚举值之一
err_codestring错误代码
err_code_desstring错误代码描述
transaction_idstring微信订单号
out_trade_nostring商户订单号
total_feeinteger押金总金额
consume_feeinteger消费金额
fee_typestring货币类型

参阅 官方文档

Published on the GitHub by TheNorthMemory