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

# requestEmailChange Mutation

Request email change of the logged in user.

Requires the AUTHENTICATED\_USER permission.

Triggers the following webhook events:

-   NOTIFY\_USER (async): A notification for account email change.
-   ACCOUNT\_CHANGE\_EMAIL\_REQUESTED (async): An account email change was requested.

```graphql
requestEmailChange(
  channel: String
  newEmail: String!
  password: String!
  redirectUrl: String!
): RequestEmailChange
```

Details

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

<a id="arguments"></a>

### Arguments

<a id="channel"></a>

#### [`channel`](#channel) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

Slug of a channel which will be used to notify users. Optional when only one channel exists.

<a id="new-email"></a>

#### [`newEmail`](#new-email) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

New user email.

<a id="password"></a>

#### [`password`](#password) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

User password.

<a id="redirect-url"></a>

#### [`redirectUrl`](#redirect-url) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

URL of a view where users should be redirected to update the email address. URL in RFC 1808 format.

<a id="type"></a>

### Type

<a id="requestemailchange"></a>

#### [`RequestEmailChange`](/api-reference/users/objects/request-email-change.md)

Request email change of the logged in user.

Requires the AUTHENTICATED\_USER permission.

Triggers the following webhook events:

-   NOTIFY\_USER (async): A notification for account email change.
-   ACCOUNT\_CHANGE\_EMAIL\_REQUESTED (async): An account email change was requested.
