Skip to content

核销用户券

在用户满足优惠门槛后,商户可通过该接口核销用户微信卡包中具体某一张商家券。

请求参数类型描述
jsonobject声明请求的JSON数据结构
coupon_codestring券code
stock_idstring批次号
appidstring公众账号ID
use_timestring请求核销时间
use_request_nostring核销请求单据号
openidstring用户标识
php
$instance->v3->marketing->busifavor->coupons->use->postAsync([
  'json' => [
    'coupon_code' => 'sxxe34343434',
    'stock_id' => '100088',
    'appid' => 'wx1234567889999',
    'use_time' => '2015-05-20T13:29:35+08:00',
    'use_request_no' => '1002600620019090123143254435',
    'openid' => 'xsd3434454567676',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/marketing/busifavor/coupons/use')->postAsync([
  'json' => [
    'coupon_code' => 'sxxe34343434',
    'stock_id' => '100088',
    'appid' => 'wx1234567889999',
    'use_time' => '2015-05-20T13:29:35+08:00',
    'use_request_no' => '1002600620019090123143254435',
    'openid' => 'xsd3434454567676',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/marketing/busifavor/coupons/use']->postAsync([
  'json' => [
    'coupon_code' => 'sxxe34343434',
    'stock_id' => '100088',
    'appid' => 'wx1234567889999',
    'use_time' => '2015-05-20T13:29:35+08:00',
    'use_request_no' => '1002600620019090123143254435',
    'openid' => 'xsd3434454567676',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->marketing->busifavor->coupons->use->post([
  'json' => [
    'coupon_code' => 'sxxe34343434',
    'stock_id' => '100088',
    'appid' => 'wx1234567889999',
    'use_time' => '2015-05-20T13:29:35+08:00',
    'use_request_no' => '1002600620019090123143254435',
    'openid' => 'xsd3434454567676',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/marketing/busifavor/coupons/use')->post([
  'json' => [
    'coupon_code' => 'sxxe34343434',
    'stock_id' => '100088',
    'appid' => 'wx1234567889999',
    'use_time' => '2015-05-20T13:29:35+08:00',
    'use_request_no' => '1002600620019090123143254435',
    'openid' => 'xsd3434454567676',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/marketing/busifavor/coupons/use']->post([
  'json' => [
    'coupon_code' => 'sxxe34343434',
    'stock_id' => '100088',
    'appid' => 'wx1234567889999',
    'use_time' => '2015-05-20T13:29:35+08:00',
    'use_request_no' => '1002600620019090123143254435',
    'openid' => 'xsd3434454567676',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
stock_idstring批次号
openidstring用户标识
wechatpay_use_timestring系统核销券成功的时间

参阅 官方文档

Published on the GitHub by TheNorthMemory