🔨 In Development — This section is still being developed and may change.
The Resend email response object represents the response returned when successfully resending an email verification code.
success boolean required
Indicates if the email resend operation was successful.
message string required
Human-readable message describing the result of the resend operation.
email string required
The email address that the verification code was sent to.
is_login boolean required
Whether this resend was for login verification (true) or registration verification (false).
email_key string required
Unique verification key for the new email verification code. Format: UUID v4.
{
"success": true,
"message": "Verification email sent successfully",
"email": "user@example.com",
"is_login": false,
"email_key": "uuid-12345678-1234-1234-1234-123456789abc"
}