提交付款码支付
收银员使用扫码设备读取微信用户付款码以后,二维码或条码信息会传送至商户收银台,由商户收银台或者商户后台调用该接口发起支付。
请求参数 | 类型 | 描述 |
---|---|---|
xml | object | 声明请求的XML 数据结构 |
version | string | 接口版本号 |
profit_sharing | string | 是否指定服务商分账;Y-是,需要分账;N-否,不分账;字母要求大写,不传默认不分账N | Y 枚举值之一 |
deposit | string | 是否押金支付Y | N 枚举值之一 |
appid | string | 公众账号ID |
sub_appid | string | 子商户公众账号ID |
mch_id | string | 商户号 |
sub_mch_id | string | 子商户号 |
device_info | string | 设备号 |
sign_type | string | 签名类型 |
body | string | 商品描述 |
detail | string | 单品优惠活动该字段必传,且必须按照规范上传,JSON格式 |
attach | string | 附加数据 |
out_trade_no | string | 商户订单号 |
total_fee | integer | 订单金额 |
fee_type | string | 货币类型 |
spbill_create_ip | string | 终端IP |
goods_tag | string | 订单优惠标记 |
limit_pay | string | 指定支付方式 |
time_start | string | 交易起始时间 |
time_expire | string | 交易结束时间 |
receipt | string | 电子发票入口开放标识 |
auth_code | string | 授权码 |
scene_info | string | +场景信息 |
php
$instance->v2->pay->micropay->postAsync([
'xml' => [
'version' => '1.0',
'profit_sharing' => 'N',
'deposit' => 'Y',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888888',
'mch_id' => '1900000109',
'sub_mch_id' => '1900000100',
'device_info' => '013467007045764',
'sign_type' => 'HMAC-SHA256',
'body' => 'image形象店-深圳腾大- QQ公仔',
'detail' => '{"cost_price":1,"receipt_id":"wx123","goods_detail":[{"goods_id":"商品编码","wxpay_goods_id":"1001","goods_name":"iPhone6s 16G","quantity":1,"price":1},{"goods_id":"商品编码","wxpay_goods_id":"1002","goods_name":"iPhone6s 32G","quantity":1,"price":1}]}',
'attach' => '说明',
'out_trade_no' => '1217752501201407033233368018',
'total_fee' => '888',
'fee_type' => 'CNY',
'spbill_create_ip' => '8.8.8.8',
'goods_tag' => '1234',
'limit_pay' => 'no_credit',
'time_start' => '20091225091010',
'time_expire' => '20091227091010',
'receipt' => 'Y',
'auth_code' => '120061098828009406',
'scene_info' => '{"store_info" : {"id": "SZTX001","name": "腾大餐厅","area_code": "440305","address": "科技园中一路腾讯大厦" }}',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/pay/micropay')->postAsync([
'xml' => [
'version' => '1.0',
'profit_sharing' => 'N',
'deposit' => 'Y',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888888',
'mch_id' => '1900000109',
'sub_mch_id' => '1900000100',
'device_info' => '013467007045764',
'sign_type' => 'HMAC-SHA256',
'body' => 'image形象店-深圳腾大- QQ公仔',
'detail' => '{"cost_price":1,"receipt_id":"wx123","goods_detail":[{"goods_id":"商品编码","wxpay_goods_id":"1001","goods_name":"iPhone6s 16G","quantity":1,"price":1},{"goods_id":"商品编码","wxpay_goods_id":"1002","goods_name":"iPhone6s 32G","quantity":1,"price":1}]}',
'attach' => '说明',
'out_trade_no' => '1217752501201407033233368018',
'total_fee' => '888',
'fee_type' => 'CNY',
'spbill_create_ip' => '8.8.8.8',
'goods_tag' => '1234',
'limit_pay' => 'no_credit',
'time_start' => '20091225091010',
'time_expire' => '20091227091010',
'receipt' => 'Y',
'auth_code' => '120061098828009406',
'scene_info' => '{"store_info" : {"id": "SZTX001","name": "腾大餐厅","area_code": "440305","address": "科技园中一路腾讯大厦" }}',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/pay/micropay']->postAsync([
'xml' => [
'version' => '1.0',
'profit_sharing' => 'N',
'deposit' => 'Y',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888888',
'mch_id' => '1900000109',
'sub_mch_id' => '1900000100',
'device_info' => '013467007045764',
'sign_type' => 'HMAC-SHA256',
'body' => 'image形象店-深圳腾大- QQ公仔',
'detail' => '{"cost_price":1,"receipt_id":"wx123","goods_detail":[{"goods_id":"商品编码","wxpay_goods_id":"1001","goods_name":"iPhone6s 16G","quantity":1,"price":1},{"goods_id":"商品编码","wxpay_goods_id":"1002","goods_name":"iPhone6s 32G","quantity":1,"price":1}]}',
'attach' => '说明',
'out_trade_no' => '1217752501201407033233368018',
'total_fee' => '888',
'fee_type' => 'CNY',
'spbill_create_ip' => '8.8.8.8',
'goods_tag' => '1234',
'limit_pay' => 'no_credit',
'time_start' => '20091225091010',
'time_expire' => '20091227091010',
'receipt' => 'Y',
'auth_code' => '120061098828009406',
'scene_info' => '{"store_info" : {"id": "SZTX001","name": "腾大餐厅","area_code": "440305","address": "科技园中一路腾讯大厦" }}',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->pay->micropay->post([
'xml' => [
'version' => '1.0',
'profit_sharing' => 'N',
'deposit' => 'Y',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888888',
'mch_id' => '1900000109',
'sub_mch_id' => '1900000100',
'device_info' => '013467007045764',
'sign_type' => 'HMAC-SHA256',
'body' => 'image形象店-深圳腾大- QQ公仔',
'detail' => '{"cost_price":1,"receipt_id":"wx123","goods_detail":[{"goods_id":"商品编码","wxpay_goods_id":"1001","goods_name":"iPhone6s 16G","quantity":1,"price":1},{"goods_id":"商品编码","wxpay_goods_id":"1002","goods_name":"iPhone6s 32G","quantity":1,"price":1}]}',
'attach' => '说明',
'out_trade_no' => '1217752501201407033233368018',
'total_fee' => '888',
'fee_type' => 'CNY',
'spbill_create_ip' => '8.8.8.8',
'goods_tag' => '1234',
'limit_pay' => 'no_credit',
'time_start' => '20091225091010',
'time_expire' => '20091227091010',
'receipt' => 'Y',
'auth_code' => '120061098828009406',
'scene_info' => '{"store_info" : {"id": "SZTX001","name": "腾大餐厅","area_code": "440305","address": "科技园中一路腾讯大厦" }}',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/pay/micropay')->post([
'xml' => [
'version' => '1.0',
'profit_sharing' => 'N',
'deposit' => 'Y',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888888',
'mch_id' => '1900000109',
'sub_mch_id' => '1900000100',
'device_info' => '013467007045764',
'sign_type' => 'HMAC-SHA256',
'body' => 'image形象店-深圳腾大- QQ公仔',
'detail' => '{"cost_price":1,"receipt_id":"wx123","goods_detail":[{"goods_id":"商品编码","wxpay_goods_id":"1001","goods_name":"iPhone6s 16G","quantity":1,"price":1},{"goods_id":"商品编码","wxpay_goods_id":"1002","goods_name":"iPhone6s 32G","quantity":1,"price":1}]}',
'attach' => '说明',
'out_trade_no' => '1217752501201407033233368018',
'total_fee' => '888',
'fee_type' => 'CNY',
'spbill_create_ip' => '8.8.8.8',
'goods_tag' => '1234',
'limit_pay' => 'no_credit',
'time_start' => '20091225091010',
'time_expire' => '20091227091010',
'receipt' => 'Y',
'auth_code' => '120061098828009406',
'scene_info' => '{"store_info" : {"id": "SZTX001","name": "腾大餐厅","area_code": "440305","address": "科技园中一路腾讯大厦" }}',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/pay/micropay']->post([
'xml' => [
'version' => '1.0',
'profit_sharing' => 'N',
'deposit' => 'Y',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888888',
'mch_id' => '1900000109',
'sub_mch_id' => '1900000100',
'device_info' => '013467007045764',
'sign_type' => 'HMAC-SHA256',
'body' => 'image形象店-深圳腾大- QQ公仔',
'detail' => '{"cost_price":1,"receipt_id":"wx123","goods_detail":[{"goods_id":"商品编码","wxpay_goods_id":"1001","goods_name":"iPhone6s 16G","quantity":1,"price":1},{"goods_id":"商品编码","wxpay_goods_id":"1002","goods_name":"iPhone6s 32G","quantity":1,"price":1}]}',
'attach' => '说明',
'out_trade_no' => '1217752501201407033233368018',
'total_fee' => '888',
'fee_type' => 'CNY',
'spbill_create_ip' => '8.8.8.8',
'goods_tag' => '1234',
'limit_pay' => 'no_credit',
'time_start' => '20091225091010',
'time_expire' => '20091227091010',
'receipt' => 'Y',
'auth_code' => '120061098828009406',
'scene_info' => '{"store_info" : {"id": "SZTX001","name": "腾大餐厅","area_code": "440305","address": "科技园中一路腾讯大厦" }}',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典 | 类型 | 描述 |
---|---|---|
return_code | string | 返回状态码 |
return_msg | string | 返回信息 |
appid | string | 公众账号ID |
sub_appid | string | 子商户公众账号ID |
mch_id | string | 商户号 |
sub_mch_id | string | 子商户号 |
device_info | string | 设备号 |
nonce_str | string | 随机字符串 |
sign | string | 签名 |
result_code | string | 业务结果 |
err_code | string | 错误代码 |
err_code_des | string | 错误代码描述 |
openid | string | 用户标识 |
is_subscribe | string | 是否关注公众账号 |
trade_type | string | 交易类型 |
bank_type | string | 付款银行 |
fee_type | string | 货币类型 |
total_fee | integer | 订单金额 |
settlement_total_fee | integer | 应结订单金额 |
coupon_fee | integer | 代金券金额 |
cash_fee_type | string | 现金支付货币类型 |
cash_fee | integer | 现金支付金额 |
transaction_id | string | 微信支付订单号 |
out_trade_no | string | 商户订单号 |
attach | string | 商家数据包 |
time_end | string | 支付完成时间 |
promotion_detail | string | 营销详情 |
参阅 官方文档