Skip to content

Request Password

Mridul Ganga edited this page Oct 7, 2019 · 1 revision

GET: Request password reset token

curl -i -X GET \
 'https://nisb-auth.herokuapp.com/resetpassword?email=mridul.kepler%40gmail.com'

POST: enter token and change password

curl -i -X POST \
   -H "Content-Type:application/json" \
   -d \
'{
  "email":"[email protected]",
  "token":"545164",
  "password":"mridul123"
}' \
 'https://nisb-auth.herokuapp.com/resetpassword'
Clone this wiki locally