Skip to main content
Response returned when creating an email-based account. Email accounts require subsequent authentication through initAuth and completeAuth flows before they can be used.

Example

{
  "type": "email",
  "email": "user@example.com",
  "status": "pending_verification",
  "otp_sent": true,
  "created_at": "2024-01-15T10:30:00Z",
  "expires_at": "2024-01-15T10:35:00Z"
}

Properties

PropertyTypeDescription
type"email"Discriminator field indicating this is an email account
emailstringEmail address associated with the account
statusstringCurrent status of the email account
otp_sentbooleanWhether an OTP code was sent to the email
created_atstringISO timestamp when the account was created
expires_atstringISO timestamp when the account request expires
memo?stringOptional memo for the account
I