Skip to content

查询先享卡订单

商户可以通过商户领卡号查询指定的先享卡,可用于对账或者界面展示。

请求参数类型描述
out_card_codestring商户领卡号
php
$instance->v3->discountCard->cards->_out_card_code_->getAsync([
  'out_card_code' => '6e8369071cd942c0476613f9d1ce9ca3',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/discount-card/cards/{out_card_code}')->getAsync([
  'out_card_code' => '6e8369071cd942c0476613f9d1ce9ca3',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/discount-card/cards/{out_card_code}']->getAsync([
  'out_card_code' => '6e8369071cd942c0476613f9d1ce9ca3',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->discountCard->cards->_out_card_code_->get([
  'out_card_code' => '6e8369071cd942c0476613f9d1ce9ca3',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/discount-card/cards/{out_card_code}')->get([
  'out_card_code' => '6e8369071cd942c0476613f9d1ce9ca3',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/discount-card/cards/{out_card_code}']->get([
  'out_card_code' => '6e8369071cd942c0476613f9d1ce9ca3',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
card_idstring先享卡ID
card_template_idstring先享卡模板ID
out_card_codestring商户领卡号
appidstring公众账号ID
mchidstring商户号
time_rangeobject约定时间期限
begin_timestring约定开始时间
end_timestring约定结束时间
statestring状态
unfinished_reasonstring未完成约定原因
total_amountinteger享受优惠总金额
pay_informationobject用户退回优惠的付款信息
pay_amountinteger付款金额
pay_statestring付款状态
transaction_idstring微信支付订单号
pay_timestring支付时间
create_timestring创卡时间
objectivesobject[]目标列表
objective_idstring目标ID
namestring目标名称
countinteger目标数量
unitstring目标单位
descriptionstring目标描述
objective_completion_recordsobject[]目标完成记录
objective_completion_serial_nostring目标完成流水号
objective_idstring目标ID
completion_timestring目标完成时间
completion_typestring目标完成类型
descriptionstring目标完成描述
completion_countinteger目标完成数量
remarkstring备注说明
rewardsobject[]优惠列表
reward_idstring优惠ID
namestring优惠名称
count_typestring优惠数量类型
countinteger优惠数量
unitstring优惠单位
amountinteger优惠金额
descriptionstring优惠描述
reward_usage_recordsobject[]优惠使用记录列
reward_usage_serial_nostring优惠使用记录流水号
reward_idstring优惠ID
usage_timestring优惠使用时间
usage_typestring优惠使用类型
descriptionstring优惠使用描述
usage_countinteger优惠使用数量
amountinteger优惠金额
remarkstring备注说明
sharer_openidstring邀请者用户标识

参阅 官方文档

Published on the GitHub by TheNorthMemory