
1package main
2
3import (
4 "bytes"
5 "demo/wxpay_utility"
6 "encoding/json"
7 "fmt"
8 "net/http"
9 "net/url"
10 "strings"
11 "time"
12)
13
14func main() {
15
16 config, err := wxpay_utility.CreateMchConfig(
17 "19xxxxxxxx",
18 "1DDE55AD98Exxxxxxxxxx",
19 "/path/to/apiclient_key.pem",
20 "PUB_KEY_ID_xxxxxxxxxxxxx",
21 "/path/to/wxp_pub.pem",
22 )
23 if err != nil {
24 fmt.Println(err)
25 return
26 }
27
28 request := &DeactivateUserProductCouponBundleRequest{
29 UserCouponBundleId: wxpay_utility.String("123446565767"),
30 Openid: wxpay_utility.String("oh-394z-6CGkNoJrsDLTTUKiAnp4"),
31 ProductCouponId: wxpay_utility.String("1002323"),
32 StockBundleId: wxpay_utility.String("100232301"),
33 Appid: wxpay_utility.String("wx233544546545989"),
34 OutRequestNo: wxpay_utility.String("1002600620019090123144054436"),
35 DeactivateReason: wxpay_utility.String("商品已下线,使用户商品券失效"),
36 BrandId: wxpay_utility.String("120344"),
37 }
38
39 response, err := DeactivateUserProductCouponBundle(config, request)
40 if err != nil {
41 fmt.Printf("请求失败: %+v\n", err)
42
43 return
44 }
45
46
47 fmt.Printf("请求成功: %+v\n", response)
48}
49
50func DeactivateUserProductCouponBundle(config *wxpay_utility.MchConfig, request *DeactivateUserProductCouponBundleRequest) (response *DeactivateUserProductCouponBundleResponse, err error) {
51 const (
52 host = "https://api.mch.weixin.qq.com"
53 method = "POST"
54 path = "/v3/marketing/partner/product-coupon/users/{openid}/coupon-bundles/{user_coupon_bundle_id}/deactivate"
55 )
56
57 reqUrl, err := url.Parse(fmt.Sprintf("%s%s", host, path))
58 if err != nil {
59 return nil, err
60 }
61 reqUrl.Path = strings.Replace(reqUrl.Path, "{user_coupon_bundle_id}", url.PathEscape(*request.UserCouponBundleId), -1)
62 reqUrl.Path = strings.Replace(reqUrl.Path, "{openid}", url.PathEscape(*request.Openid), -1)
63 reqBody, err := json.Marshal(request)
64 if err != nil {
65 return nil, err
66 }
67 httpRequest, err := http.NewRequest(method, reqUrl.String(), bytes.NewReader(reqBody))
68 if err != nil {
69 return nil, err
70 }
71 httpRequest.Header.Set("Accept", "application/json")
72 httpRequest.Header.Set("Wechatpay-Serial", config.WechatPayPublicKeyId())
73 httpRequest.Header.Set("Content-Type", "application/json")
74 authorization, err := wxpay_utility.BuildAuthorization(config.MchId(), config.CertificateSerialNo(), config.PrivateKey(), method, reqUrl.RequestURI(), reqBody)
75 if err != nil {
76 return nil, err
77 }
78 httpRequest.Header.Set("Authorization", authorization)
79
80 client := &http.Client{}
81 httpResponse, err := client.Do(httpRequest)
82 if err != nil {
83 return nil, err
84 }
85 respBody, err := wxpay_utility.ExtractResponseBody(httpResponse)
86 if err != nil {
87 return nil, err
88 }
89 if httpResponse.StatusCode >= 200 && httpResponse.StatusCode < 300 {
90
91 err = wxpay_utility.ValidateResponse(
92 config.WechatPayPublicKeyId(),
93 config.WechatPayPublicKey(),
94 &httpResponse.Header,
95 respBody,
96 )
97 if err != nil {
98 return nil, err
99 }
100 response := &DeactivateUserProductCouponBundleResponse{}
101 if err := json.Unmarshal(respBody, response); err != nil {
102 return nil, err
103 }
104
105 return response, nil
106 } else {
107 return nil, wxpay_utility.NewApiException(
108 httpResponse.StatusCode,
109 httpResponse.Header,
110 respBody,
111 )
112 }
113}
114
115type DeactivateUserProductCouponBundleRequest struct {
116 ProductCouponId *string `json:"product_coupon_id,omitempty"`
117 StockBundleId *string `json:"stock_bundle_id,omitempty"`
118 UserCouponBundleId *string `json:"user_coupon_bundle_id,omitempty"`
119 Appid *string `json:"appid,omitempty"`
120 Openid *string `json:"openid,omitempty"`
121 OutRequestNo *string `json:"out_request_no,omitempty"`
122 DeactivateReason *string `json:"deactivate_reason,omitempty"`
123 BrandId *string `json:"brand_id,omitempty"`
124}
125
126func (o *DeactivateUserProductCouponBundleRequest) MarshalJSON() ([]byte, error) {
127 type Alias DeactivateUserProductCouponBundleRequest
128 a := &struct {
129 UserCouponBundleId *string `json:"user_coupon_bundle_id,omitempty"`
130 Openid *string `json:"openid,omitempty"`
131 *Alias
132 }{
133
134 UserCouponBundleId: nil,
135 Openid: nil,
136 Alias: (*Alias)(o),
137 }
138 return json.Marshal(a)
139}
140
141type DeactivateUserProductCouponBundleResponse struct {
142 UserCouponBundleId *string `json:"user_coupon_bundle_id,omitempty"`
143 UserProductCouponList []UserProductCouponEntity `json:"user_product_coupon_list,omitempty"`
144}
145
146type UserProductCouponEntity struct {
147 CouponCode *string `json:"coupon_code,omitempty"`
148 CouponState *UserProductCouponState `json:"coupon_state,omitempty"`
149 ValidBeginTime *time.Time `json:"valid_begin_time,omitempty"`
150 ValidEndTime *time.Time `json:"valid_end_time,omitempty"`
151 ReceiveTime *string `json:"receive_time,omitempty"`
152 SendRequestNo *string `json:"send_request_no,omitempty"`
153 SendChannel *UserProductCouponSendChannel `json:"send_channel,omitempty"`
154 ConfirmRequestNo *string `json:"confirm_request_no,omitempty"`
155 ConfirmTime *time.Time `json:"confirm_time,omitempty"`
156 DeactivateRequestNo *string `json:"deactivate_request_no,omitempty"`
157 DeactivateTime *string `json:"deactivate_time,omitempty"`
158 DeactivateReason *string `json:"deactivate_reason,omitempty"`
159 ProgressiveBundleUsageDetail *CouponUsageDetail `json:"progressive_bundle_usage_detail,omitempty"`
160 UserProductCouponBundleInfo *UserProductCouponBundleInfo `json:"user_product_coupon_bundle_info,omitempty"`
161 ProductCoupon *ProductCouponEntity `json:"product_coupon,omitempty"`
162 Stock *StockEntity `json:"stock,omitempty"`
163 Attach *string `json:"attach,omitempty"`
164 ChannelCustomInfo *string `json:"channel_custom_info,omitempty"`
165 CouponTagInfo *CouponTagInfo `json:"coupon_tag_info,omitempty"`
166 BrandId *string `json:"brand_id,omitempty"`
167}
168
169type UserProductCouponState string
170
171func (e UserProductCouponState) Ptr() *UserProductCouponState {
172 return &e
173}
174
175const (
176 USERPRODUCTCOUPONSTATE_CONFIRMING UserProductCouponState = "CONFIRMING"
177 USERPRODUCTCOUPONSTATE_PENDING UserProductCouponState = "PENDING"
178 USERPRODUCTCOUPONSTATE_EFFECTIVE UserProductCouponState = "EFFECTIVE"
179 USERPRODUCTCOUPONSTATE_USED UserProductCouponState = "USED"
180 USERPRODUCTCOUPONSTATE_EXPIRED UserProductCouponState = "EXPIRED"
181 USERPRODUCTCOUPONSTATE_DELETED UserProductCouponState = "DELETED"
182 USERPRODUCTCOUPONSTATE_DEACTIVATED UserProductCouponState = "DEACTIVATED"
183)
184
185type UserProductCouponSendChannel string
186
187func (e UserProductCouponSendChannel) Ptr() *UserProductCouponSendChannel {
188 return &e
189}
190
191const (
192 USERPRODUCTCOUPONSENDCHANNEL_BRAND_MANAGE UserProductCouponSendChannel = "BRAND_MANAGE"
193 USERPRODUCTCOUPONSENDCHANNEL_API UserProductCouponSendChannel = "API"
194 USERPRODUCTCOUPONSENDCHANNEL_RECEIVE_COMPONENT UserProductCouponSendChannel = "RECEIVE_COMPONENT"
195)
196
197type CouponUsageDetail struct {
198 UseRequestNo *string `json:"use_request_no,omitempty"`
199 UseTime *time.Time `json:"use_time,omitempty"`
200 ReturnRequestNo *string `json:"return_request_no,omitempty"`
201 ReturnTime *time.Time `json:"return_time,omitempty"`
202 AssociatedOrderInfo *UserProductCouponAssociatedOrderInfo `json:"associated_order_info,omitempty"`
203 AssociatedPayScoreOrderInfo *UserProductCouponAssociatedPayScoreOrderInfo `json:"associated_pay_score_order_info,omitempty"`
204 SavedAmount *int64 `json:"saved_amount,omitempty"`
205}
206
207type UserProductCouponBundleInfo struct {
208 UserCouponBundleId *string `json:"user_coupon_bundle_id,omitempty"`
209 UserCouponBundleIndex *int64 `json:"user_coupon_bundle_index,omitempty"`
210 TotalCount *int64 `json:"total_count,omitempty"`
211 UsedCount *int64 `json:"used_count,omitempty"`
212}
213
214type ProductCouponEntity struct {
215 ProductCouponId *string `json:"product_coupon_id,omitempty"`
216 Scope *ProductCouponScope `json:"scope,omitempty"`
217 Type *ProductCouponType `json:"type,omitempty"`
218 UsageMode *UsageMode `json:"usage_mode,omitempty"`
219 SingleUsageInfo *SingleUsageInfo `json:"single_usage_info,omitempty"`
220 ProgressiveBundleUsageInfo *ProgressiveBundleUsageInfo `json:"progressive_bundle_usage_info,omitempty"`
221 DisplayInfo *ProductCouponDisplayInfo `json:"display_info,omitempty"`
222 OutProductNo *string `json:"out_product_no,omitempty"`
223 State *ProductCouponState `json:"state,omitempty"`
224 DeactivateRequestNo *string `json:"deactivate_request_no,omitempty"`
225 DeactivateTime *string `json:"deactivate_time,omitempty"`
226 DeactivateReason *string `json:"deactivate_reason,omitempty"`
227 BrandId *string `json:"brand_id,omitempty"`
228}
229
230type StockEntity struct {
231 ProductCouponId *string `json:"product_coupon_id,omitempty"`
232 StockId *string `json:"stock_id,omitempty"`
233 Remark *string `json:"remark,omitempty"`
234 CouponCodeMode *CouponCodeMode `json:"coupon_code_mode,omitempty"`
235 CouponCodeCountInfo *CouponCodeCountInfo `json:"coupon_code_count_info,omitempty"`
236 StockSendRule *StockSendRule `json:"stock_send_rule,omitempty"`
237 ProgressiveBundleUsageRule *StockUsageRule `json:"progressive_bundle_usage_rule,omitempty"`
238 StockBundleInfo *StockBundleInfo `json:"stock_bundle_info,omitempty"`
239 UsageRuleDisplayInfo *UsageRuleDisplayInfo `json:"usage_rule_display_info,omitempty"`
240 CouponDisplayInfo *CouponDisplayInfo `json:"coupon_display_info,omitempty"`
241 NotifyConfig *NotifyConfig `json:"notify_config,omitempty"`
242 StoreScope *StockStoreScope `json:"store_scope,omitempty"`
243 SentCountInfo *StockSentCountInfo `json:"sent_count_info,omitempty"`
244 State *StockState `json:"state,omitempty"`
245 DeactivateRequestNo *string `json:"deactivate_request_no,omitempty"`
246 DeactivateTime *time.Time `json:"deactivate_time,omitempty"`
247 DeactivateReason *string `json:"deactivate_reason,omitempty"`
248 BrandId *string `json:"brand_id,omitempty"`
249}
250
251type CouponTagInfo struct {
252 CouponTagList []UserProductCouponTag `json:"coupon_tag_list,omitempty"`
253 MemberTagInfo *MemberTagInfo `json:"member_tag_info,omitempty"`
254}
255
256type UserProductCouponAssociatedOrderInfo struct {
257 TransactionId *string `json:"transaction_id,omitempty"`
258 OutTradeNo *string `json:"out_trade_no,omitempty"`
259 Mchid *string `json:"mchid,omitempty"`
260 SubMchid *string `json:"sub_mchid,omitempty"`
261}
262
263type UserProductCouponAssociatedPayScoreOrderInfo struct {
264 OrderId *string `json:"order_id,omitempty"`
265 OutOrderNo *string `json:"out_order_no,omitempty"`
266 Mchid *string `json:"mchid,omitempty"`
267 SubMchid *string `json:"sub_mchid,omitempty"`
268}
269
270type ProductCouponScope string
271
272func (e ProductCouponScope) Ptr() *ProductCouponScope {
273 return &e
274}
275
276const (
277 PRODUCTCOUPONSCOPE_ALL ProductCouponScope = "ALL"
278 PRODUCTCOUPONSCOPE_SINGLE ProductCouponScope = "SINGLE"
279)
280
281type ProductCouponType string
282
283func (e ProductCouponType) Ptr() *ProductCouponType {
284 return &e
285}
286
287const (
288 PRODUCTCOUPONTYPE_NORMAL ProductCouponType = "NORMAL"
289 PRODUCTCOUPONTYPE_DISCOUNT ProductCouponType = "DISCOUNT"
290 PRODUCTCOUPONTYPE_EXCHANGE ProductCouponType = "EXCHANGE"
291)
292
293type UsageMode string
294
295func (e UsageMode) Ptr() *UsageMode {
296 return &e
297}
298
299const (
300 USAGEMODE_SINGLE UsageMode = "SINGLE"
301 USAGEMODE_PROGRESSIVE_BUNDLE UsageMode = "PROGRESSIVE_BUNDLE"
302)
303
304type SingleUsageInfo struct {
305 NormalCoupon *NormalCouponUsageRule `json:"normal_coupon,omitempty"`
306 DiscountCoupon *DiscountCouponUsageRule `json:"discount_coupon,omitempty"`
307}
308
309type ProgressiveBundleUsageInfo struct {
310 Count *int64 `json:"count,omitempty"`
311 IntervalDays *int64 `json:"interval_days,omitempty"`
312}
313
314type ProductCouponDisplayInfo struct {
315 Name *string `json:"name,omitempty"`
316 ImageUrl *string `json:"image_url,omitempty"`
317 BackgroundUrl *string `json:"background_url,omitempty"`
318 DetailImageUrlList []string `json:"detail_image_url_list,omitempty"`
319 OriginalPrice *int64 `json:"original_price,omitempty"`
320 ComboPackageList []ComboPackage `json:"combo_package_list,omitempty"`
321}
322
323type ProductCouponState string
324
325func (e ProductCouponState) Ptr() *ProductCouponState {
326 return &e
327}
328
329const (
330 PRODUCTCOUPONSTATE_AUDITING ProductCouponState = "AUDITING"
331 PRODUCTCOUPONSTATE_EFFECTIVE ProductCouponState = "EFFECTIVE"
332 PRODUCTCOUPONSTATE_DEACTIVATED ProductCouponState = "DEACTIVATED"
333)
334
335type CouponCodeMode string
336
337func (e CouponCodeMode) Ptr() *CouponCodeMode {
338 return &e
339}
340
341const (
342 COUPONCODEMODE_WECHATPAY CouponCodeMode = "WECHATPAY"
343 COUPONCODEMODE_UPLOAD CouponCodeMode = "UPLOAD"
344)
345
346type CouponCodeCountInfo struct {
347 TotalCount *int64 `json:"total_count,omitempty"`
348 AvailableCount *int64 `json:"available_count,omitempty"`
349}
350
351type StockSendRule struct {
352 MaxCount *int64 `json:"max_count,omitempty"`
353 MaxCountPerDay *int64 `json:"max_count_per_day,omitempty"`
354 MaxCountPerUser *int64 `json:"max_count_per_user,omitempty"`
355}
356
357type StockUsageRule struct {
358 CouponAvailablePeriod *CouponAvailablePeriod `json:"coupon_available_period,omitempty"`
359 NormalCoupon *NormalCouponUsageRule `json:"normal_coupon,omitempty"`
360 DiscountCoupon *DiscountCouponUsageRule `json:"discount_coupon,omitempty"`
361 ExchangeCoupon *ExchangeCouponUsageRule `json:"exchange_coupon,omitempty"`
362}
363
364type StockBundleInfo struct {
365 StockBundleId *string `json:"stock_bundle_id,omitempty"`
366 StockBundleIndex *int64 `json:"stock_bundle_index,omitempty"`
367}
368
369type UsageRuleDisplayInfo struct {
370 CouponUsageMethodList []CouponUsageMethod `json:"coupon_usage_method_list,omitempty"`
371 MiniProgramAppid *string `json:"mini_program_appid,omitempty"`
372 MiniProgramPath *string `json:"mini_program_path,omitempty"`
373 AppPath *string `json:"app_path,omitempty"`
374 UsageDescription *string `json:"usage_description,omitempty"`
375 CouponAvailableStoreInfo *CouponAvailableStoreInfo `json:"coupon_available_store_info,omitempty"`
376}
377
378type CouponDisplayInfo struct {
379 CodeDisplayMode *CouponCodeDisplayMode `json:"code_display_mode,omitempty"`
380 BackgroundColor *string `json:"background_color,omitempty"`
381 EntranceMiniProgram *EntranceMiniProgram `json:"entrance_mini_program,omitempty"`
382 EntranceOfficialAccount *EntranceOfficialAccount `json:"entrance_official_account,omitempty"`
383 EntranceFinder *EntranceFinder `json:"entrance_finder,omitempty"`
384}
385
386type NotifyConfig struct {
387 NotifyAppid *string `json:"notify_appid,omitempty"`
388}
389
390type StockStoreScope string
391
392func (e StockStoreScope) Ptr() *StockStoreScope {
393 return &e
394}
395
396const (
397 STOCKSTORESCOPE_NONE StockStoreScope = "NONE"
398 STOCKSTORESCOPE_ALL StockStoreScope = "ALL"
399 STOCKSTORESCOPE_SPECIFIC StockStoreScope = "SPECIFIC"
400)
401
402type StockSentCountInfo struct {
403 TotalCount *int64 `json:"total_count,omitempty"`
404 TodayCount *int64 `json:"today_count,omitempty"`
405}
406
407type StockState string
408
409func (e StockState) Ptr() *StockState {
410 return &e
411}
412
413const (
414 STOCKSTATE_AUDITING StockState = "AUDITING"
415 STOCKSTATE_SENDING StockState = "SENDING"
416 STOCKSTATE_PAUSED StockState = "PAUSED"
417 STOCKSTATE_STOPPED StockState = "STOPPED"
418 STOCKSTATE_DEACTIVATED StockState = "DEACTIVATED"
419)
420
421type UserProductCouponTag string
422
423func (e UserProductCouponTag) Ptr() *UserProductCouponTag {
424 return &e
425}
426
427const (
428 USERPRODUCTCOUPONTAG_MEMBER UserProductCouponTag = "MEMBER"
429)
430
431type MemberTagInfo struct {
432 MemberCardId *string `json:"member_card_id,omitempty"`
433}
434
435type NormalCouponUsageRule struct {
436 Threshold *int64 `json:"threshold,omitempty"`
437 DiscountAmount *int64 `json:"discount_amount,omitempty"`
438}
439
440type DiscountCouponUsageRule struct {
441 Threshold *int64 `json:"threshold,omitempty"`
442 PercentOff *int64 `json:"percent_off,omitempty"`
443}
444
445type ComboPackage struct {
446 Name *string `json:"name,omitempty"`
447 PickCount *int64 `json:"pick_count,omitempty"`
448 ChoiceList []ComboPackageChoice `json:"choice_list,omitempty"`
449}
450
451type CouponAvailablePeriod struct {
452 AvailableBeginTime *string `json:"available_begin_time,omitempty"`
453 AvailableEndTime *string `json:"available_end_time,omitempty"`
454 AvailableDays *int64 `json:"available_days,omitempty"`
455 WaitDaysAfterReceive *int64 `json:"wait_days_after_receive,omitempty"`
456 WeeklyAvailablePeriod *FixedWeekPeriod `json:"weekly_available_period,omitempty"`
457 IrregularAvailablePeriodList []TimePeriod `json:"irregular_available_period_list,omitempty"`
458}
459
460type ExchangeCouponUsageRule struct {
461 Threshold *int64 `json:"threshold,omitempty"`
462 ExchangePrice *int64 `json:"exchange_price,omitempty"`
463}
464
465type CouponUsageMethod string
466
467func (e CouponUsageMethod) Ptr() *CouponUsageMethod {
468 return &e
469}
470
471const (
472 COUPONUSAGEMETHOD_OFFLINE CouponUsageMethod = "OFFLINE"
473 COUPONUSAGEMETHOD_MINI_PROGRAM CouponUsageMethod = "MINI_PROGRAM"
474 COUPONUSAGEMETHOD_APP CouponUsageMethod = "APP"
475 COUPONUSAGEMETHOD_PAYMENT_CODE CouponUsageMethod = "PAYMENT_CODE"
476)
477
478type CouponAvailableStoreInfo struct {
479 Description *string `json:"description,omitempty"`
480 MiniProgramAppid *string `json:"mini_program_appid,omitempty"`
481 MiniProgramPath *string `json:"mini_program_path,omitempty"`
482}
483
484type CouponCodeDisplayMode string
485
486func (e CouponCodeDisplayMode) Ptr() *CouponCodeDisplayMode {
487 return &e
488}
489
490const (
491 COUPONCODEDISPLAYMODE_INVISIBLE CouponCodeDisplayMode = "INVISIBLE"
492 COUPONCODEDISPLAYMODE_BARCODE CouponCodeDisplayMode = "BARCODE"
493 COUPONCODEDISPLAYMODE_QRCODE CouponCodeDisplayMode = "QRCODE"
494)
495
496type EntranceMiniProgram struct {
497 Appid *string `json:"appid,omitempty"`
498 Path *string `json:"path,omitempty"`
499 EntranceWording *string `json:"entrance_wording,omitempty"`
500 GuidanceWording *string `json:"guidance_wording,omitempty"`
501}
502
503type EntranceOfficialAccount struct {
504 Appid *string `json:"appid,omitempty"`
505}
506
507type EntranceFinder struct {
508 FinderId *string `json:"finder_id,omitempty"`
509 FinderVideoId *string `json:"finder_video_id,omitempty"`
510 FinderVideoCoverImageUrl *string `json:"finder_video_cover_image_url,omitempty"`
511}
512
513type ComboPackageChoice struct {
514 Name *string `json:"name,omitempty"`
515 Price *int64 `json:"price,omitempty"`
516 Count *int64 `json:"count,omitempty"`
517 ImageUrl *string `json:"image_url,omitempty"`
518 MiniProgramAppid *string `json:"mini_program_appid,omitempty"`
519 MiniProgramPath *string `json:"mini_program_path,omitempty"`
520}
521
522type FixedWeekPeriod struct {
523 DayList []WeekEnum `json:"day_list,omitempty"`
524 DayPeriodList []PeriodOfTheDay `json:"day_period_list,omitempty"`
525}
526
527type TimePeriod struct {
528 BeginTime *string `json:"begin_time,omitempty"`
529 EndTime *string `json:"end_time,omitempty"`
530}
531
532type WeekEnum string
533
534func (e WeekEnum) Ptr() *WeekEnum {
535 return &e
536}
537
538const (
539 WEEKENUM_MONDAY WeekEnum = "MONDAY"
540 WEEKENUM_TUESDAY WeekEnum = "TUESDAY"
541 WEEKENUM_WEDNESDAY WeekEnum = "WEDNESDAY"
542 WEEKENUM_THURSDAY WeekEnum = "THURSDAY"
543 WEEKENUM_FRIDAY WeekEnum = "FRIDAY"
544 WEEKENUM_SATURDAY WeekEnum = "SATURDAY"
545 WEEKENUM_SUNDAY WeekEnum = "SUNDAY"
546)
547
548type PeriodOfTheDay struct {
549 BeginTime *int64 `json:"begin_time,omitempty"`
550 EndTime *int64 `json:"end_time,omitempty"`
551}
552