简要说明
- 发起密码重置请求,成功后向账户的邮箱发送重置密码的邮件。(修改页面仍在SSO)
请求URL
https://sso-cas.gridsumdissector.com/api/v2/password/forget
请求方式
- POST
请求头
Key | Value |
---|---|
Content-Type | application/json |
请求体参数
名称 | 必选 | 类型 | 说明 |
---|---|---|---|
loginEmail | 是 | string | 账户的登录名 |
返回示例
- 成功
{
"errorCode": 0,
"data": null,
"message": "Success"
}
- 账户不存在
{
"errorCode": 4022,
"data": null,
"message": "Params wrong"
}
备注
- 更多返回错误代码请看错误代码描述