使用手机号重置密码
POST
/sms/reset_password请求参数
Body 参数application/json
phone
string
手机号
country_code
string
国家代码
password
string
新密码
password_confirmation
string
确认新密码
code
string
短信验证码
示例
{
"phone": "13888888888",
"country_code": "cn",
"password": "12345678",
"password_confirmation": "12345678",
"code": "123456"
}
示例代码
返回响应
成功(200)
参数错误(422)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
message
string
必需
time
integer
必需
示例
{
"status": "error",
"message": "Phone 不存在。 (还有 1 个错误)",
"data": {
"errors": {
"phone": [
"Phone 不存在。"
],
"code": [
"Invalid verification code."
]
}
},
"time": 1723626772
}
最后修改时间: 1 个月前