Authored by chenjian

Update coupon.md

@@ -411,3 +411,77 @@ @@ -411,3 +411,77 @@
411 | 408 | 很抱歉!优惠券未到领取时间哦~ | 411 | 408 | 很抱歉!优惠券未到领取时间哦~ |
412 | 409 | 很抱歉!优惠券已经过期不可领取哦~ | 412 | 409 | 很抱歉!优惠券已经过期不可领取哦~ |
413 | 440 | 很抱歉!该优惠券已经作废,无法使用 | 413 | 440 | 很抱歉!该优惠券已经作废,无法使用 |
  414 +
  415 +
  416 +### 8、优惠券列表--供用户中心查询用(method=app.coupons.get)
  417 +
  418 +#### 请求参数
  419 +| Param Name | Param Type | Required | Param Value | Desc |
  420 +| :-- | --: | --: | --: | --: |
  421 +| method | String | true |app.coupons.get| 请求方法|
  422 +| uid | int | true | 7893817 |用户ID |
  423 +| type | String | true |use |券使用类型 use:已使用,notuse:未使用,overtime:过期|
  424 +| filter | int | false | 1 |优惠券过滤:0/null:无; 1:店铺券; 2:活动券; 3:免邮券 |
  425 +| limit | int | true | 20 |每页限制数 |
  426 +| page |int | true | 2 |第几页 |
  427 +
  428 +#### 响应内容
  429 +```json
  430 +{
  431 + "alg": "SALT_MD5",
  432 + "code": 200,
  433 + "data": {
  434 + "couponList": [
  435 + {
  436 + "coupon_id": 17318,
  437 + "coupon_name": "111", //券名称
  438 + "coupon_type": "6", //券类型:1,平台券;2,B券......
  439 + "coupon_type_max": 100, //券分组:100,店铺券; 200,活动券; 300,免邮券
  440 + "coupon_validity": "2018.03.08-2018.03.31", //有效期
  441 + "coupon_value": 111, //券面值
  442 + "coupon_value_str": "¥111", //券面值中文描述
  443 + "is_overtime": "N", //是否过期
  444 + "notes": [ //使用说明
  445 + "限店铺:nike店铺",
  446 + "特例商品暂不支持使用优惠券"
  447 + ],
  448 + "use_rule": "满0件可用" //使用限制
  449 + },
  450 + {
  451 + "coupon_id": 17196,
  452 + "coupon_name": "邀请新人优惠券",
  453 + "coupon_type": "1",
  454 + "coupon_type_max": 200,
  455 + "coupon_validity": "2018.02.01-2018.12.30",
  456 + "coupon_value": 30,
  457 + "coupon_value_str": "¥30",
  458 + "is_overtime": "N",
  459 + "notes": [
  460 + "全场通用",
  461 + "特例商品暂不支持使用优惠券",
  462 + "说明:邀请新人优惠券"
  463 + ],
  464 + "use_rule": ""
  465 + },
  466 + {
  467 + "coupon_id": 17200,
  468 + "coupon_name": "助力活动优惠券",
  469 + "coupon_type": "5",
  470 + "coupon_type_max": 300,
  471 + "coupon_validity": "2018.02.07-2018.12.30",
  472 + "coupon_value": 100,
  473 + "coupon_value_str": "顺丰",
  474 + "is_overtime": "N",
  475 + "notes": [
  476 + "全场通用",
  477 + "特例商品暂不支持使用优惠券"
  478 + ],
  479 + "use_rule": ""
  480 + }
  481 + ],
  482 + "total": 10
  483 + },
  484 + "md5": "00bd2b952891997e5b25a7435d0665da",
  485 + "message": "操作成功"
  486 +}
  487 +```