Showing
1 changed file
with
44 additions
and
0 deletions
个人中心/app.user.birthdayHistory.md
0 → 100644
1 | +#用户生日历史记录 | ||
2 | + | ||
3 | +## 接口列表 | ||
4 | +| 接口名称 | 接口描述 | | ||
5 | +| --------| -------- | | ||
6 | +|[app.user.birthdayHistory](#1-app.user.birthdayHistory)|查询用户优惠券的列表 购物车页面用| | ||
7 | + | ||
8 | + | ||
9 | +## 接口描述 | ||
10 | + | ||
11 | +### 1、查询用户生日历史记录(app.user.birthdayHistory) | ||
12 | + | ||
13 | +#### 请求参数 | ||
14 | +| Param Name | Param Type | Required | Param Value | Desc | | ||
15 | +| :-- | --: | --: | --: | --: | | ||
16 | +| method | String | true |app.user.birthdayHistory| 请求方法| | ||
17 | +| uid | int | true | 7893817 |用户ID | | ||
18 | + | ||
19 | + | ||
20 | +#### 响应内容 | ||
21 | +```json | ||
22 | +{ | ||
23 | + "alg": "SALT_MD5", | ||
24 | + "code": 200, | ||
25 | + "data": [ | ||
26 | + { | ||
27 | + "modifiedTimeStamp": 1496729187, | ||
28 | + "newBirthday": "2017-06-06", | ||
29 | + "orgBirthday": "2017-05-06", | ||
30 | + "uid": 1 | ||
31 | + } | ||
32 | + ], | ||
33 | + "md5": "f2751a4047382120a55e84275af5aee4", | ||
34 | + "message": "操作成功" | ||
35 | +} | ||
36 | + | ||
37 | +说明:modifiedTimeStamp 修改时间戳 | ||
38 | + orgBirthday 修改前生日 | ||
39 | + newBirthday 修改后生日 | ||
40 | + uid 用户ID | ||
41 | +``` | ||
42 | + | ||
43 | + | ||
44 | + |
-
Please register or login to post a comment