Skip to content

password change

Rohin Awale edited this page Jul 16, 2019 · 1 revision
METHOD ROUTES DESCRIPTION ALLOWED USERS
PUT /v1/api/users/password-reset allows users to change password All Authorized Users

body(apppliation/json)

{
	"old_password":"apple#123",
	"new_password":"mango#123",
	"confirm_password":"mango#123"
}

response

{
    "status": true,
    "message": "Password changed sucessfully"
}

Note:

  • When password is change successfully email is sent to the user.So be sure to include your email and password in credentials.yaml file
Clone this wiki locally