🔐 Authentication
Reset forgotten password
The API endpoint enables users to reset their password through the password reset email.
By providing the new password and the password reset token obtained from the URL, users can securely reset their password and regain access to their account.
This functionality ensures a secure and streamlined password reset process, allowing users to update their password conveniently and protect their account from unauthorized access.
post/users/reset-password/{resetToken}
Request body
Example request
{
"newPassword": "test@123"
}Response
Reset forgotten password
Example response
{
"message": "Password reset successfully",
"statusCode": 200,
"success": true
}