简要描述:
- 系统校验验证码
请求URL:
- /api/message/check
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
phoneNumber | 是 | string | 手机号码 |
type | 是 | string | Register注册,SetPassword密码重置 |
code | 是 | string | 验证码 |
入参示例:
{
"type": "register",
"phoneNumber": "string",
"code": "string"
}
返回示例:
正确时返回:
{
"code": 200,
"success": true,
"message": null,
"result": true
}
错误时返回:
返回参数说明:
Data数据说明
参数名 | 类型 | 说明 |
---|---|---|
result | bool | true校验成功 |
备注:
-