confirmAccount Mutation
Confirm user account with token sent by email during registration.
Triggers the following webhook events:
- ACCOUNT_CONFIRMED (async): Account was confirmed.
confirmAccount(
email: String!
token: String!
): ConfirmAccount
Details
type ConfirmAccount {
user: User
accountErrors: [AccountError!]! @deprecated
errors: [AccountError!]!
}
Arguments
email ● String!
E-mail of the user performing account confirmation.
token ● String!
A one-time token required to confirm the account.
Type
ConfirmAccount
Confirm user account with token sent by email during registration.
Triggers the following webhook events:
- ACCOUNT_CONFIRMED (async): Account was confirmed.