ResetByEmailStartParameters

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

Data class used for wrapping parameters used with Passwords ResetByEmailStart endpoint

Constructors

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

Properties

Link copied to clipboard
val emailAddress: String

is the member's email address

Link copied to clipboard
val loginRedirectUrl: String? = null

is the url where you should be redirected after a login

Link copied to clipboard
val organizationId: String

is the member's organization ID

Link copied to clipboard
val resetPasswordExpirationMinutes: UInt? = null

is the duration after which a reset password request should expire

Link copied to clipboard
val resetPasswordRedirectUrl: String? = null

is the url where you should be redirected after a reset

Link copied to clipboard
val resetPasswordTemplateId: String? = null

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.