Skip to content

查询用户捐赠单列表

请求参数类型描述
openidstring用户在商户AppID下的唯一标识
brand_idstring品牌ID
queryobject声明请求的查询参数
offsetinteger请求资源起始位置
limitinteger最大资源条数
php
$instance->v3->lovefeast->users->_openid_->orders->brandId->_brand_id_->getAsync([
  'openid' => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
  'brand_id' => '2250',
  'query' => [
    'offset' => 0,
    'limit' => 20,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/lovefeast/users/{openid}/orders/brand-id/{brand_id}')->getAsync([
  'openid' => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
  'brand_id' => '2250',
  'query' => [
    'offset' => 0,
    'limit' => 20,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/lovefeast/users/{openid}/orders/brand-id/{brand_id}']->getAsync([
  'openid' => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
  'brand_id' => '2250',
  'query' => [
    'offset' => 0,
    'limit' => 20,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->lovefeast->users->_openid_->orders->brandId->_brand_id_->get([
  'openid' => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
  'brand_id' => '2250',
  'query' => [
    'offset' => 0,
    'limit' => 20,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/lovefeast/users/{openid}/orders/brand-id/{brand_id}')->get([
  'openid' => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
  'brand_id' => '2250',
  'query' => [
    'offset' => 0,
    'limit' => 20,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/lovefeast/users/{openid}/orders/brand-id/{brand_id}']->get([
  'openid' => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
  'brand_id' => '2250',
  'query' => [
    'offset' => 0,
    'limit' => 20,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
countinteger
limitinteger
offsetinteger
total_countinteger
dataobject[]
welfare_trade_idstring
appidstring
sub_appidstring
brand_idstring
donate_sourcestringMINIPROGRAM_PAY | ENTRUST_PAY 枚举值之一
merchant_orderstring
institution_namestring
business_idstring
business_namestring
success_timestring
payerobject
openidstring
sub_openidstring
avatarstring
nicknamestring
amountobject
totalnumber
payer_totalnumber
currencystring
payer_currencystring
device_idstring

参阅 表

Published on the GitHub by TheNorthMemory