POST api/Account/SendSMSValid
发送短信验证码 忘记密码第二步
Request Information
URI Parameters
None.
Body Parameters
SendSMSValidRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Tel |
用户手机号 |
string |
Required String length: inclusive between 11 and 11 |
| ClientCode |
客户端Code |
string |
Required Max length: 32 |
| IsAdmin |
true 管理员,false 普通用户 |
boolean |
None. |
| ImgValidCode |
图片验证码 |
string |
Required String length: inclusive between 4 and 4 |
Request Formats
application/json, text/json
Sample:
{
"Tel": "sample string 1",
"ClientCode": "sample string 2",
"IsAdmin": true,
"ImgValidCode": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseResultObjOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Mesg | string |
None. |
|
| Data | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Mesg": "sample string 2",
"Data": "sample string 3"
}