用户领取的优惠券记录

# 用户领取的优惠券记录 ## 请求地址 ``` 充值站/api/data/ ``` ## 请求参数 |参数|默认值|说明|是否必填| |-|-|-|-| |type|receive.game.discount.record.user | 接口配置的pid|是| |uid|| 信游平台用户标识|是| |uname| | 信游平台用户账号|是| |isuse| 传空代表全部 0未使用 1 已使用||是| |page| |页码 默认1|是| |size| |条数 默认20|是| |time| |时间戳|是| |sign| |sign = md5(time#type)示例 签名前 1595915905#receive.game.discount.record.user 签名d7413a3a6778876db59e7e9212fc9eab|是| ## 请求响应 ``` json { "code": 1, "msg": "", "data": { "data": [ { "discode_usetime": "2020-07-28 13:37:43", "discode_receivetime": "2020-07-29 14:44:54", //领取时间 "discode_code": "C9794A0484F0662A", //卡号 "discount_state": 0, //使用状态 "discode_uid": 0, //使用用户编号 "discount_receive_uid": 10000, //领取用户编号 "discode_uname": "", //使用用户 "discount_receive_uname": "xykj888" //领取用户 } ], "total": 3 } } ```