Skip to content

查询代金券可用单品

通过此接口可查询批次的可用商品编码,判断券是否可用于某些商品,来决定是否展示。

请求参数类型描述
stock_idstring批次号
queryobject声明请求的查询参数
stock_creator_mchidstring创建批次的商户号
offsetinteger分页页码
limitstring分页大小
php
$instance->v3->marketing->favor->stocks->_stock_id_->items->getAsync([
  'stock_id' => '',
  'query' => [
    'stock_creator_mchid' => '',
    'offset' => 0,
    'limit' => '',
  ],
])
->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}/items')->getAsync([
  'stock_id' => '',
  'query' => [
    'stock_creator_mchid' => '',
    'offset' => 0,
    'limit' => '',
  ],
])
->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}/items']->getAsync([
  'stock_id' => '',
  'query' => [
    'stock_creator_mchid' => '',
    'offset' => 0,
    'limit' => '',
  ],
])
->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_->items->get([
  'stock_id' => '',
  'query' => [
    'stock_creator_mchid' => '',
    'offset' => 0,
    'limit' => '',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/marketing/favor/stocks/{stock_id}/items')->get([
  'stock_id' => '',
  'query' => [
    'stock_creator_mchid' => '',
    'offset' => 0,
    'limit' => '',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/marketing/favor/stocks/{stock_id}/items']->get([
  'stock_id' => '',
  'query' => [
    'stock_creator_mchid' => '',
    'offset' => 0,
    'limit' => '',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
total_countinteger可用单品编码总数
datastring[]可用单品编码
offsetinteger分页页码
limitinteger分页大小
stock_idstring批次号

参阅 官方文档

Published on the GitHub by TheNorthMemory