We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
GET: check cred exists
curl -i -X GET \ 'https://nisb-auth.herokuapp.com/credential?email=mridul.kepler%40gmail.com'
POST : Create creds (signup)
curl -i -X POST \ -H "Content-Type:application/json" \ -d \ '{ "email" : "mridul.kepler@gmail.com", "password" : "mridul123" }' \ 'https://nisb-auth.herokuapp.com/credential'
PUT: Change password
curl -i -X PUT \ -H "Content-Type:application/json" \ -d \ '{ "email" : "mridul.kepler@gmail.com", "password" : "mridul123", "oldpassword" : "mridul1234" }' \ 'https://nisb-auth.herokuapp.com/credential'