Skip to main content
POST
/
api
/
auth
/
password
/
reset
/
confirm
{
  "token": "reset_token_here",
  "new_password": "NewPassword123!",
  "new_password_confirm": "NewPassword123!"
}
{
  "message": "Password reset successfully"
}
Confirm password reset with token and new password.
token
string
required
Password reset token from email
new_password
string
required
New password
new_password_confirm
string
required
New password confirmation

Request Example

{
  "token": "reset_token_here",
  "new_password": "NewPassword123!",
  "new_password_confirm": "NewPassword123!"
}

Success Response (200)

message
string
Success message
{
  "message": "Password reset successfully"
}