sendResetPasswordCode
suspend fun SignIn.sendResetPasswordCode(block: SendCodeBuilder.() -> Unit): ClerkResult<SignIn, ClerkErrorResponse>
Sends a password reset verification code.
Return
A ClerkResult containing the updated SignIn object on success, or a ClerkErrorResponse on failure.
Example usage:
signIn.sendResetPasswordCode { email = "user@email.com" }
// or
signIn.sendResetPasswordCode { phone = "+1234567890" }Content copied to clipboard
Parameters
block
Builder block to configure where to send the reset code.