Skip to content

Commit 9d68edc

Browse files
U: openapi/v3/marketing/partner/product-coupon/**/**.md
1 parent 2292a56 commit 9d68edc

23 files changed

Lines changed: 50 additions & 29 deletions

File tree

openapi/v3/fund-app/mch-transfer/user-confirm-authorization/out-authorization-no/{out_authorization_no}.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ description: 根据商户单号用户自动收款授权的详细信息。
1010
| 请求参数 | 类型 {.type} | 描述 {.desc}
1111
| --- | --- | ---
1212
| out_authorization_no {data-required} | string | 商户侧授权单号
13+
| query | object {data-tooltip="对应PHP的array"} | 声明请求的查询参数
14+
| is_display_authorization {data-indent=1} | boolean | 是否展示用户授权信息
1315

1416
{.im-table #request}
1517

@@ -18,6 +20,9 @@ description: 根据商户单号用户自动收款授权的详细信息。
1820
```php [异步纯链式]
1921
$instance->v3->fundApp->mchTransfer->userConfirmAuthorization->outAuthorizationNo->_out_authorization_no_->getAsync([
2022
'out_authorization_no' => 'plfk2020042013',
23+
'query' => [
24+
'is_display_authorization' => true,
25+
],
2126
])
2227
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
2328
print_r(json_decode((string) $response->getBody(), true));
@@ -28,6 +33,9 @@ $instance->v3->fundApp->mchTransfer->userConfirmAuthorization->outAuthorizationN
2833
```php [异步声明式]
2934
$instance->chain('v3/fund-app/mch-transfer/user-confirm-authorization/out-authorization-no/{out_authorization_no}')->getAsync([
3035
'out_authorization_no' => 'plfk2020042013',
36+
'query' => [
37+
'is_display_authorization' => true,
38+
],
3139
])
3240
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
3341
print_r(json_decode((string) $response->getBody(), true));
@@ -38,6 +46,9 @@ $instance->chain('v3/fund-app/mch-transfer/user-confirm-authorization/out-author
3846
```php [异步属性式]
3947
$instance['v3/fund-app/mch-transfer/user-confirm-authorization/out-authorization-no/{out_authorization_no}']->getAsync([
4048
'out_authorization_no' => 'plfk2020042013',
49+
'query' => [
50+
'is_display_authorization' => true,
51+
],
4152
])
4253
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
4354
print_r(json_decode((string) $response->getBody(), true));
@@ -48,20 +59,29 @@ $instance['v3/fund-app/mch-transfer/user-confirm-authorization/out-authorization
4859
```php [同步纯链式]
4960
$response = $instance->v3->fundApp->mchTransfer->userConfirmAuthorization->outAuthorizationNo->_out_authorization_no_->get([
5061
'out_authorization_no' => 'plfk2020042013',
62+
'query' => [
63+
'is_display_authorization' => true,
64+
],
5165
]);
5266
print_r(json_decode((string) $response->getBody(), true));
5367
```
5468

5569
```php [同步声明式]
5670
$response = $instance->chain('v3/fund-app/mch-transfer/user-confirm-authorization/out-authorization-no/{out_authorization_no}')->get([
5771
'out_authorization_no' => 'plfk2020042013',
72+
'query' => [
73+
'is_display_authorization' => true,
74+
],
5875
]);
5976
print_r(json_decode((string) $response->getBody(), true));
6077
```
6178

6279
```php [同步属性式]
6380
$response = $instance['v3/fund-app/mch-transfer/user-confirm-authorization/out-authorization-no/{out_authorization_no}']->get([
6481
'out_authorization_no' => 'plfk2020042013',
82+
'query' => [
83+
'is_display_authorization' => true,
84+
],
6585
]);
6686
print_r(json_decode((string) $response->getBody(), true));
6787
```
@@ -83,6 +103,7 @@ print_r(json_decode((string) $response->getBody(), true));
83103
| transfer_scene_id | string | 转账场景ID
84104
| user_recv_perception | string | 用户收款感知
85105
| create_time | string | 单据创建时间
106+
| package_info | string | 跳转领取页面的package信息
86107

87108
{.im-table #response}
88109

openapi/v3/marketing/partner/product-coupon/product-coupons.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ description: 品牌方可以通过该接口创建商品券和批次。微信支
107107
| description {data-required data-indent=4} | string | 券可用门店描述
108108
| mini_program_appid {data-indent=4} | string | 小程序AppID
109109
| mini_program_path {data-indent=4} | string | 小程序跳转路径
110-
| app_jump_type {data-indent=3} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
110+
| app_jump_type {data-indent=3} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
111111
| passcode_link {data-indent=3} | string | 口令链接
112112
| coupon_display_info {data-required data-indent=2} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
113113
| code_display_mode {data-required data-indent=3} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一
@@ -1180,7 +1180,7 @@ print_r(json_decode((string) $response->getBody(), true));
11801180
| description {data-required data-indent=3} | string | 券可用门店描述
11811181
| mini_program_appid {data-indent=3} | string | 小程序AppID
11821182
| mini_program_path {data-indent=3} | string | 小程序跳转路径
1183-
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
1183+
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
11841184
| passcode_link {data-indent=2} | string | 口令链接
11851185
| coupon_display_info {data-required data-indent=1} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
11861186
| code_display_mode {data-indent=2} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

openapi/v3/marketing/partner/product-coupon/product-coupons/{product_coupon_id}/stock-bundles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ description: 服务商可以通过该接口为已有的「多次优惠」商品
5353
| description {data-required data-indent=4} | string | 券可用门店描述
5454
| mini_program_appid {data-indent=4} | string | 小程序AppID
5555
| mini_program_path {data-indent=4} | string | 小程序跳转路径
56-
| app_jump_type {data-indent=3} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
56+
| app_jump_type {data-indent=3} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
5757
| passcode_link {data-indent=3} | string | 口令链接
5858
| coupon_display_info {data-required data-indent=2} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
5959
| code_display_mode {data-indent=3} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一
@@ -661,7 +661,7 @@ print_r(json_decode((string) $response->getBody(), true));
661661
| description {data-required data-indent=3} | string | 券可用门店描述
662662
| mini_program_appid {data-indent=3} | string | 小程序AppID
663663
| mini_program_path {data-indent=3} | string | 小程序跳转路径
664-
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
664+
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
665665
| passcode_link {data-indent=2} | string | 口令链接
666666
| coupon_display_info {data-required data-indent=1} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
667667
| code_display_mode {data-indent=2} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

openapi/v3/marketing/partner/product-coupon/product-coupons/{product_coupon_id}/stock-bundles/{stock_bundle_id}.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ description: 服务商可以通过该接口同步修改商品券批次组内所
2424
| description {data-required data-indent=3} | string | 券可用门店描述
2525
| mini_program_appid {data-indent=3} | string | 小程序AppID
2626
| mini_program_path {data-indent=3} | string | 小程序跳转路径
27-
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
27+
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
2828
| passcode_link {data-indent=2} | string | 口令链接
2929
| coupon_display_info {data-indent=1} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
3030
| code_display_mode {data-indent=2} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一
@@ -405,7 +405,7 @@ print_r(json_decode((string) $response->getBody(), true));
405405
| description {data-required data-indent=3} | string | 券可用门店描述
406406
| mini_program_appid {data-indent=3} | string | 小程序AppID
407407
| mini_program_path {data-indent=3} | string | 小程序跳转路径
408-
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
408+
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
409409
| passcode_link {data-indent=2} | string | 口令链接
410410
| coupon_display_info {data-required data-indent=1} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
411411
| code_display_mode {data-indent=2} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

openapi/v3/marketing/partner/product-coupon/product-coupons/{product_coupon_id}/stock-bundles/{stock_bundle_id}/update-budget.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ print_r(json_decode((string) $response->getBody(), true));
188188
| description {data-required data-indent=3} | string | 券可用门店描述
189189
| mini_program_appid {data-indent=3} | string | 小程序AppID
190190
| mini_program_path {data-indent=3} | string | 小程序跳转路径
191-
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
191+
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
192192
| passcode_link {data-indent=2} | string | 口令链接
193193
| coupon_display_info {data-required data-indent=1} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
194194
| code_display_mode {data-indent=2} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

openapi/v3/marketing/partner/product-coupon/product-coupons/{product_coupon_id}/stocks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
| description {data-required data-indent=4} | string | 券可用门店描述
7474
| mini_program_appid {data-indent=4} | string | 小程序AppID
7575
| mini_program_path {data-indent=4} | string | 小程序跳转路径
76-
| app_jump_type {data-indent=3} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
76+
| app_jump_type {data-indent=3} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
7777
| passcode_link {data-indent=3} | string | 口令链接
7878
| coupon_display_info {data-required data-indent=2} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
7979
| code_display_mode {data-indent=3} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一
@@ -1093,7 +1093,7 @@ print_r(json_decode((string) $response->getBody(), true));
10931093
| description {data-required data-indent=3} | string | 券可用门店描述
10941094
| mini_program_appid {data-indent=3} | string | 小程序AppID
10951095
| mini_program_path {data-indent=3} | string | 小程序跳转路径
1096-
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
1096+
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
10971097
| passcode_link {data-indent=2} | string | 口令链接
10981098
| coupon_display_info {data-required data-indent=1} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
10991099
| code_display_mode {data-indent=2} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

openapi/v3/marketing/partner/product-coupon/product-coupons/{product_coupon_id}/stocks/{stock_id}.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
| description {data-required data-indent=3} | string | 券可用门店描述
2323
| mini_program_appid {data-indent=3} | string | 小程序AppID
2424
| mini_program_path {data-indent=3} | string | 小程序跳转路径
25-
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
25+
| app_jump_type {data-indent=2} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
2626
| passcode_link {data-indent=2} | string | 口令链接
2727
| coupon_display_info {data-indent=1} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
2828
| code_display_mode {data-indent=2} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一
@@ -420,7 +420,7 @@ print_r(json_decode((string) $response->getBody(), true));
420420
| description {data-required data-indent=2} | string | 券可用门店描述
421421
| mini_program_appid {data-indent=2} | string | 小程序AppID
422422
| mini_program_path {data-indent=2} | string | 小程序跳转路径
423-
| app_jump_type {data-indent=1} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
423+
| app_jump_type {data-indent=1} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
424424
| passcode_link {data-indent=1} | string | 口令链接
425425
| coupon_display_info {data-required} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
426426
| code_display_mode {data-indent=1} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一
@@ -613,7 +613,7 @@ print_r(json_decode((string) $response->getBody(), true));
613613
| description {data-required data-indent=2} | string | 券可用门店描述
614614
| mini_program_appid {data-indent=2} | string | 小程序AppID
615615
| mini_program_path {data-indent=2} | string | 小程序跳转路径
616-
| app_jump_type {data-indent=1} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
616+
| app_jump_type {data-indent=1} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
617617
| passcode_link {data-indent=1} | string | 口令链接
618618
| coupon_display_info {data-required} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
619619
| code_display_mode {data-indent=1} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

openapi/v3/marketing/partner/product-coupon/product-coupons/{product_coupon_id}/stocks/{stock_id}/deactivate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ print_r(json_decode((string) $response->getBody(), true));
178178
| description {data-required data-indent=2} | string | 券可用门店描述
179179
| mini_program_appid {data-indent=2} | string | 小程序AppID
180180
| mini_program_path {data-indent=2} | string | 小程序跳转路径
181-
| app_jump_type {data-indent=1} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
181+
| app_jump_type {data-indent=1} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
182182
| passcode_link {data-indent=1} | string | 口令链接
183183
| coupon_display_info {data-required} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
184184
| code_display_mode {data-indent=1} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

openapi/v3/marketing/partner/product-coupon/product-coupons/{product_coupon_id}/stocks/{stock_id}/update-budget.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ print_r(json_decode((string) $response->getBody(), true));
206206
| description {data-required data-indent=2} | string | 券可用门店描述
207207
| mini_program_appid {data-indent=2} | string | 小程序AppID
208208
| mini_program_path {data-indent=2} | string | 小程序跳转路径
209-
| app_jump_type {data-indent=1} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
209+
| app_jump_type {data-indent=1} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
210210
| passcode_link {data-indent=1} | string | 口令链接
211211
| coupon_display_info {data-required} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
212212
| code_display_mode {data-indent=1} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

openapi/v3/marketing/partner/product-coupon/users/{openid}/coupon-bundles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ print_r(json_decode((string) $response->getBody(), true));
279279
| description {data-required data-indent=4} | string | 券可用门店描述
280280
| mini_program_appid {data-indent=4} | string | 小程序AppID
281281
| mini_program_path {data-indent=4} | string | 小程序跳转路径
282-
| app_jump_type {data-indent=3} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` 枚举值之一
282+
| app_jump_type {data-indent=3} | string | APP跳转类型<br/>`H5` \| `PASSCODE_LINK` \| `USAGE_GUIDE` 枚举值之一
283283
| passcode_link {data-indent=3} | string | 口令链接
284284
| coupon_display_info {data-required data-indent=2} | object {data-tooltip="对应PHP的array"} | 用户商品券展示信息
285285
| code_display_mode {data-indent=3} | string | 用户商品券Code展示模式<br/>`INVISIBLE` \| `BARCODE` \| `QRCODE` 枚举值之一

0 commit comments

Comments
 (0)