#### 订单中获取优惠券 - 接口说明 订单中获取可用优惠券列表 - 请求地址 /coupons_api/get_use_coupon_order - 请求参数 参数名称 | 类型 | 描述 | 是否必须 ---|---|---|--- token|string|授权token header中提交|是 totalPrice|float|订单总价格|是 - 请求方式 GET - 响应数据 ``` { "code": 200, "msg": "ok", "data": [{ "id": 6, "cid": 4, "uid": 2, "coupon_title": "全场优惠券1元", "coupon_price": "1.00", "use_min_price": "0.00", "add_time": "2019\/03\/29", "end_time": "2019\/04\/08", "use_time": 0, "type": "get", "status": 0, "is_fail": 0 }], "count": 0 } ```