Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 737 Bytes

ForgotPassword.md

File metadata and controls

42 lines (31 loc) · 737 Bytes

Forgot password

An email is sent with a link to a webpage which contains a form where the user can enter the new password.

HTTP Request

PUT musora-api/forgot

Permissions

- Without restrictions

Request Parameters

Type Key Required Notes
body email yes

Request Example:

$.ajax({
    url: 'https://www.domain.com' +
             '/musora-api/forgot',
{
    "email": "email@email.ro"
}
   ,
    success: function(response) {},
    error: function(response) {}
});

Response Example (200):

{
    "success": true,
    "title": "Please check your email",
    "message": "Follow the instructions sent to your email address to reset your password."
}