免邮券接口.md 1.64 KB

接口列表

接口名称 接口描述
app.coupons.queryFreePostCoupons 查询用户可领取的免邮券列表
app.coupons.getFreePostCoupons 领取免邮券

1、查询用户可领取的免邮券列表

GET请求

请求参数

Param Name Param Type Required Param Value Desc
method String true app.coupons.queryFreePostCoupons 请求方法
uid int true 用户uid

响应

{
"alg": "SALT_MD5",
"code": 200,
"data": {
    "name": "7月运费券",
    "freePostCoupons": [
        {
            "amount": 10,
            "couponId": 16242,
            "couponName": "7月份免邮券",
            "endTime": 1501516799,
            "startTime": 1499679634
        }
    ]
},
"md5": "2ef978a0c6b860cad8c2855e6f2b2b7d",
"message": "操作成功"
}
说明:code不是200,直接展示错误消息message。

2、领取免邮券

GET请求

请求参数

Param Name Param Type Required Param Value Desc
method String true app.coupons.getFreePostCoupons 请求方法
uid int true 用户uid

响应

{
"alg": "SALT_MD5",
"code": 200,
"data": true,
"md5": "40f3824dd1e55b340dc5357dd7ccab72",
"message": "操作成功"
}
说明:code不是200,直接展示错误消息message。