CustomerVerifyEmailPayload
Result of customerVerifyEmail — confirms the e-mail address using the one-shot token from the verification e-mail.
type CustomerVerifyEmailPayload {
success: Boolean!
userErrors: [UserError!]!
}
Fields
CustomerVerifyEmailPayload.success ● Boolean! non-null scalar
True when the address is verified (also on a repeated click after a successful verification — safe to show a success screen).
CustomerVerifyEmailPayload.userErrors ● [UserError!]! non-null object
Errors carrying a stable CustomerErrorCode in code (e.g. TOKEN_INVALID, TOKEN_EXPIRED, TOKEN_USED).
Returned By
customerVerifyEmail mutation