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

# accountAddressUpdate Mutation

Updates an address of the logged-in user.

Requires one of the following permissions: MANAGE\_USERS IS\_OWNER

Triggers the following webhook events:

-   ADDRESS\_UPDATED (async): An address was updated.

```graphql
accountAddressUpdate(
  id: ID!
  input: AddressInput!
): AccountAddressUpdate
```

Details

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

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

### Arguments

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

#### [`id`](#id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

ID of the address to update.

<a id="input"></a>

#### [`input`](#input) ● [`AddressInput!`](/api-reference/miscellaneous/inputs/address-input.md)

Fields required to update the address.

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

### Type

<a id="accountaddressupdate"></a>

#### [`AccountAddressUpdate`](/api-reference/users/objects/account-address-update.md)

Updates an address of the logged-in user.

Requires one of the following permissions: MANAGE\_USERS IS\_OWNER

Triggers the following webhook events:

-   ADDRESS\_UPDATED (async): An address was updated.
