Skip to Content
Clerk logo

Clerk Docs

Ctrl + K
Go to clerkstage.dev

User password management

These are all methods on the [User][signup-ref] class that help you manage a user's password.

updatePassword()

Updates the user's password.

function updatePassword: (params: UpdateUserPasswordParams) => Promise<User>;

UpdateUserPasswordParams

NameTypeDescription
newPasswordstringThe user's new password.
currentPassword?stringThe user's current password.
signOutOfOtherSessions?boolean | undefinedIf set to true, all sessions will be signed out.

updatePassword() returns

TypeDescription
Promise<User>A Promise which resolves with the current User.

removePassword()

Removes the user's password.

function removePassword: (params: RemoveUserPasswordParams) => Promise<User>;

RemoveUserPasswordParams

NameTypeDescription
currentPasswordstringThe user's current password.

removePassword() returns

TypeDescription
Promise<User>A Promise which resolves with the current User.

What did you think of this content?

Clerk © 2024