POST api/Register/LoginCode
发送注册登录验证码(说明:App端接口,新增需求)
Request Information
URI Parameters
None.
Body Parameters
参数列表
API_SendLoginCode| Name | Description | Type | Additional information |
|---|---|---|---|
| PhoneNumber |
手机号码 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PhoneNumber": "sample string 1"
}
Response Information
Resource Description
返状态码: 403:请求不合理,服务器拒绝执行(1、请求参数不正确 2、手机号已被绑定)... 。 400:发送失败... 。200:成功... 。
SendLoginCodeResult| Name | Description | Type | Additional information |
|---|---|---|---|
| requestId |
请求编号 |
string |
None. |
| openId |
用户OpenId |
string |
None. |
| status |
公共返回值: 500:服务器内部错误。 |
integer |
None. |
| msg |
消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"requestId": "sample string 1",
"openId": "sample string 2",
"status": 3,
"msg": "sample string 4"
}