Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (25 loc) · 1.16 KB

File metadata and controls

36 lines (25 loc) · 1.16 KB

Forgot Password

Send an email to reset your password.

HTTP MethodURLRequires Auth
POST/api/v1/users.forgotPasswordno

{% hint style="info" %} Please ensure that you have completed the configuration of the Email; otherwise, your users will not receive the mail normally. Accessible from Administration -> Email. {% endhint %}

Body Parameters

KeyExample ValueDescription
email*email@rocket.catThe email to send password reset link.

Example Call

curl -H "Content-type:application/json" \
      http://localhost:3000/api/v1/users.forgotPassword \
      -d '{ 
            "email": "email@rocket.cat" }'

Example Response

{
  "status": "success"
}

Change Log

Version Description
0.64.0 Added