Authentication
Reset Password
Reset user password using the token received via email
POST
This is a public endpoint that does not require authentication. The reset token from the email is used for verification.
Request Body
The password reset token received in the email. This is a JWT token containing the user ID.
The new password for the account. Must meet password requirements.
Response
A successful request returns HTTP 200 OK status, indicating that the password has been successfully updated.Error Responses
Error details when the request fails
Common error cases:
- 400 Bad Request: Invalid or missing token
- 400 Bad Request: Password validation failed
- 401 Unauthorized: Expired or invalid token
- 404 Not Found: User not found
