Skip to main content

Send reset password email

POST 

/user/reset_password

Sends a one-time reset code to the user's registered email address. The code must then be supplied to PUT /user/reset_password together with the new password.

Requirements

  • Password reset must be enabled in the plugin settings.
  • If "Reset Password Requires Auth Code" is enabled, AUTH_KEY must be provided.
  • The email address must belong to an existing WordPress user.

Flow

  1. Call POST /user/reset_password with email (and AUTH_KEY if required).
  2. The user receives an email containing a one-time code.
  3. Call PUT /user/reset_password with email, code, and new_password.

Request

Responses

Reset password email sent successfully.