Auth
Reset Password
Resets a user's password using a valid reset code and a new password, deriving the user from the code in the database.
post/v1/auth/password-reset/reset
Request body
Example request
{
"code": "123456",
"new_password": "NewSecretPassword123!"
}Response
Password reset successfully
Example response
{
"message": "password reset successfully",
"email": "user@example.com"
}