Commit a6a8ea4b7b078e3894e6d935931ff199247511bd
1 parent
49d57b63
update
Showing
1 changed file
with
66 additions
and
0 deletions
04.用户云/3.2 找回或修改密码前发激活邮件.md
| 1 | +#### 请求参数说明: | |
| 2 | +<table class="table table-bordered table-striped table-condensed"> | |
| 3 | + <tr> | |
| 4 | + <th>参数</th> | |
| 5 | + <th>必选</th> | |
| 6 | + <th>类型</th> | |
| 7 | + <th>说明</th> | |
| 8 | + </tr> | |
| 9 | + <tr> | |
| 10 | + <td>appId</td> | |
| 11 | + <td>true</td> | |
| 12 | + <td>string</td> | |
| 13 | + <td>应用ID</td> | |
| 14 | + </tr> | |
| 15 | + <tr> | |
| 16 | + <td>emailAddr</td> | |
| 17 | + <td>true</td> | |
| 18 | + <td>string</td> | |
| 19 | + <td>收件人地址</td> | |
| 20 | + </tr> | |
| 21 | + <tr> | |
| 22 | + <td>content</td> | |
| 23 | + <td>true</td> | |
| 24 | + <td>string</td> | |
| 25 | + <td>邮件模版内容</td> | |
| 26 | + </tr> | |
| 27 | + <tr> | |
| 28 | + <td>clientPlat</td> | |
| 29 | + <td>true</td> | |
| 30 | + <td>string</td> | |
| 31 | + <td>客户端平台[i:IOS客户端,a:Android客户端]</td> | |
| 32 | + </tr> | |
| 33 | +</table> | |
| 34 | + | |
| 35 | +----- | |
| 36 | +#### 返回格式说明: | |
| 37 | +``` | |
| 38 | +{ | |
| 39 | + "errorCode":"0", | |
| 40 | + "errorMessage":"成功" | |
| 41 | +} | |
| 42 | +{ | |
| 43 | + "errorCode":"1", | |
| 44 | + "errorMessage":"请求参数无效" | |
| 45 | +} | |
| 46 | +{ | |
| 47 | + "errorCode":"41017", | |
| 48 | + "errorMessage":"邮箱格式错误" | |
| 49 | +} | |
| 50 | +{ | |
| 51 | + "errorCode": "41005", | |
| 52 | + "errorMessage": "ClientPlat无效" | |
| 53 | +} | |
| 54 | +{ | |
| 55 | + "errorCode": "41054", | |
| 56 | + "errorMessage": "邮箱未注册" | |
| 57 | +} | |
| 58 | +{ | |
| 59 | + "errorCode": "41055", | |
| 60 | + "errorMessage": "邮件发送失败" | |
| 61 | +} | |
| 62 | +{ | |
| 63 | + "errorCode":"40005", | |
| 64 | + "errorMessage":"其他错误" | |
| 65 | +} | |
| 66 | +``` | |
| 0 | 67 | \ No newline at end of file | ... | ... |