Skip to main content

Reset Password Endpoint

POST /auth/resetpassword

Initiates a password reset for a user. If successful, sends a password reset email to the user (unless sendEmail is set to false which is recommended for custom reset password flows). Then, the redirectUri in the email sent to the user will bring the user to a page that calls the /auth/setpassword endpoint after the user enters their new password.

Check out custom emails for directions to create a custom reset password flow.

info

To see an example, check out the the code for the Medplum app's reset password page in ResetPasswordPage.tsx.

warning

Please note that you may need to specify projectId if your User is project scoped and recaptchaSiteKey and recaptchaToken if you are using your own recaptcha keys.

Request Body

FieldTypeRequiredDescription
emailstringYesUser's email address (3-72 characters)
projectIdstringNoProject ID for project-scoped users. See project scoped users Omit for system-level users
sendEmailbooleanNoWhether to send Medplum labeled reset email (defaults to true)
redirectUristringNoURI to redirect after password reset
recaptchaSiteKeystringNoreCAPTCHA site key for verification
recaptchaTokenstringNoreCAPTCHA token for verification

Response

Returns a 200 OK response regardless of whether a user was found.

Example

await medplum.post('auth/resetpassword', {
email: 'user@example.com',
projectId: 'project-123',
sendEmail: true,
redirectUri: 'https://app.example.com/reset',
recaptchaSiteKey: '6LeIxAcTAAAAAJ55555555555555555555555555555555',
recaptchaToken: 'recaptcha-token'
});

Notes

  • When resetting password for project-scoped users, projectId must be provided
  • Omit projectId when resetting password for system-level users
  • If you are building a custom reset password email, set sendEmail to false