Skip to content

重启代金券批次

通过此接口可重启指定代金券批次。重启后,该代金券批次可以再次发放。

请求参数类型描述
stock_idstring批次号
jsonobject声明请求的JSON数据结构
stock_creator_mchidstring创建批次的商户号
php
$instance->v3->marketing->favor->stocks->_stock_id_->restart->postAsync([
  'stock_id' => '',
  'json' => [
    'stock_creator_mchid' => '8956000',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/marketing/favor/stocks/{stock_id}/restart')->postAsync([
  'stock_id' => '',
  'json' => [
    'stock_creator_mchid' => '8956000',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/marketing/favor/stocks/{stock_id}/restart']->postAsync([
  'stock_id' => '',
  'json' => [
    'stock_creator_mchid' => '8956000',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->marketing->favor->stocks->_stock_id_->restart->post([
  'stock_id' => '',
  'json' => [
    'stock_creator_mchid' => '8956000',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/marketing/favor/stocks/{stock_id}/restart')->post([
  'stock_id' => '',
  'json' => [
    'stock_creator_mchid' => '8956000',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/marketing/favor/stocks/{stock_id}/restart']->post([
  'stock_id' => '',
  'json' => [
    'stock_creator_mchid' => '8956000',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
restart_timestring生效时间
stock_idstring批次号

参阅 官方文档

Published on the GitHub by TheNorthMemory