POST api/User/Reg3_RegisterInfoCollect
用户注册第三步:收集用户账号、验证码、密码,对验证码进行核对,通过后进行用户注册数据写入 注册信息
Request Information
URI Parameters
None.
Body Parameters
M_UserRegisterInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| MobileNumber |
用户注册的账号(手机号码)[C11] |
string |
None. |
| VerificationCode |
验证码[C6],4位数字 |
string |
None. |
| LoginPassword |
登录密码[20],最小长度4位,最长20位 |
string |
None. |
| DomainName |
来访域名(用户访问该站点时输入的域名) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MobileNumber": "sample string 1",
"VerificationCode": "sample string 2",
"LoginPassword": "sample string 3",
"DomainName": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
执行结果反馈[State值]:1表示手机号码有效,可以进行注册;0表示手机号码检测过程中出错,-1表示手机号码已被注,-2表示手机号码无效;
APIResponseModelOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| State | integer |
None. |
|
| Msg |
返回的错误或描述信息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"State": 2,
"Msg": "sample string 3"
}