Skip to content

查询活动发券商户号

商户创建活动后,可以通过该接口查询支付有礼的发券商户号,用于管理活动。

请求参数类型描述
activity_idstring活动id
queryobject声明请求的查询参数
offsetinteger
limitinteger
php
$instance->v3->marketing->paygiftactivity->activities->_activity_id_->merchants->getAsync([
  'activity_id' => '',
  'query' => [
    'offset' => 0,
    'limit' => 0,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/marketing/paygiftactivity/activities/{activity_id}/merchants')->getAsync([
  'activity_id' => '',
  'query' => [
    'offset' => 0,
    'limit' => 0,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/marketing/paygiftactivity/activities/{activity_id}/merchants']->getAsync([
  'activity_id' => '',
  'query' => [
    'offset' => 0,
    'limit' => 0,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->marketing->paygiftactivity->activities->_activity_id_->merchants->get([
  'activity_id' => '',
  'query' => [
    'offset' => 0,
    'limit' => 0,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/marketing/paygiftactivity/activities/{activity_id}/merchants')->get([
  'activity_id' => '',
  'query' => [
    'offset' => 0,
    'limit' => 0,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/marketing/paygiftactivity/activities/{activity_id}/merchants']->get([
  'activity_id' => '',
  'query' => [
    'offset' => 0,
    'limit' => 0,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
offsetinteger
limitinteger
total_countinteger
activity_idstring
dataobject[]
mchidstring
merchant_namestring
create_timestring
update_timestring

参阅 官方文档

Published on the GitHub by TheNorthMemory