> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/users/llms.txt)
> Source: https://docs.saleor.io/api-reference/users/objects/confirm-email-change

# ConfirmEmailChange Object

Confirm the email change of the logged-in user.

Requires the AUTHENTICATED\_USER permission.

Triggers the following webhook events:

-   CUSTOMER\_UPDATED (async): A customer account was updated.
-   NOTIFY\_USER (async): A notification that account email change was confirmed.
-   ACCOUNT\_EMAIL\_CHANGED (async): An account email was changed.

```graphql
type ConfirmEmailChange {
  user: User
  accountErrors: [AccountError!]! @deprecated
  errors: [AccountError!]!
}
```

<a id="fields"></a>

### Fields

<a id="user"></a>

#### [`user`](#user) ● [`User`](/api-reference/users/objects/user.md)

A user instance with a new email.

<a id="errors"></a>

#### [`errors`](#errors) ● [`[AccountError!]!`](/api-reference/users/objects/account-error.md)

Show deprecatedHide deprecated

<a id="account-errors"></a>

#### [`accountErrors`](#account-errors) ● [`[AccountError!]!`](/api-reference/users/objects/account-error.md)

DEPRECATED

Use `errors` field instead.

<a id="returned-by"></a>

### Returned By

[`confirmEmailChange`](/api-reference/users/mutations/confirm-email-change.md) mutation
