We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create an API endpoint that allows users to update their passwords with input validation and proper security measures.
/api/v1/auth/password-update
<token>
{ “current_password”: “CurrentPassword123", “new_password”: “NewPassword123" }
200
{ “status”: “success”, “message”: “Password updated successfully” }
{ “status”: “unsuccessful”, “message”: “field must be provided” }
{ “status_code”: 400, “message”: “Current password is incorrect” }
{ “status_code”: 400, “message”: “New password does not meet security requirements”, “error”: “Bad Request” }
Provides a secure backend service that allows users to update their passwords.
/api/v1/password-update
NB: This issue has been approved in the main issue here
The text was updated successfully, but these errors were encountered:
Slack ID - @Israel_B.O
Sorry, something went wrong.
No branches or pull requests
Description
Create an API endpoint that allows users to update their passwords with input validation and proper security measures.
Acceptance Criteria
/api/v1/auth/password-update
<token>
200
OK status code.Purpose
Provides a secure backend service that allows users to update their passwords.
Requirements
Expected Outcome
Tasks
/api/v1/password-update
route.Testing
NB: This issue has been approved in the main issue here
The text was updated successfully, but these errors were encountered: