Skip to content
Last updated

The Resend email response object represents the response returned when successfully resending an email verification code.

Properties

success boolean required

Indicates if the email resend operation was successful. Always true for successful requests.

message string required

Human-readable message describing the result of the resend operation.

email_key string required

The email verification key for the new verification code. Format: UUID v4.

type string required

The type of verification being resent. One of:

  • "registration" - for new user signups
  • "login" - for existing user logins
  • "password_reset" - for password reset requests
{
  "success": true,
  "message": "A new verification code has been sent to your email",
  "email_key": "bbe7fe02-965d-4132-9a78-ef6782497561",
  "type": "registration"
}