ResetByEmailStartParameters

data class ResetByEmailStartParameters(    val email: String,     val loginRedirectUrl: String? = null,     val loginExpirationMinutes: UInt? = null,     val resetPasswordRedirectUrl: String? = null,     val resetPasswordExpirationMinutes: UInt? = null,     val resetPasswordTemplateId: String? = null)

Data class used for wrapping parameters used with Passwords ResetByEmailStart endpoint

Parameters

email

is the account identifier for the account in the form of an Email address to identify which account's password you wish to start resettting

loginRedirectUrl

is the url where you should be redirected after a login

loginExpirationMinutes

is the duration after which the login should expire

resetPasswordRedirectUrl

is the url where you should be redirected after a reset

resetPasswordExpirationMinutes

is the duration after which a reset password request should expire

resetPasswordTemplateId

Use a custom template for password reset emails. By default, it will use your default email template. The template must be a template using our built-in customizations or a custom HTML email for Password Reset.

Constructors

Link copied to clipboard
fun ResetByEmailStartParameters(    email: String,     loginRedirectUrl: String? = null,     loginExpirationMinutes: UInt? = null,     resetPasswordRedirectUrl: String? = null,     resetPasswordExpirationMinutes: UInt? = null,     resetPasswordTemplateId: String? = null)

Properties

Link copied to clipboard
val email: String
Link copied to clipboard
val loginExpirationMinutes: UInt? = null
Link copied to clipboard
val loginRedirectUrl: String? = null
Link copied to clipboard
val resetPasswordExpirationMinutes: UInt? = null
Link copied to clipboard
val resetPasswordRedirectUrl: String? = null
Link copied to clipboard
val resetPasswordTemplateId: String? = null