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

# channelUpdate Mutation

Update a channel.

Requires the MANAGE\_CHANNELS permission.

Requires one of the following permissions when updating only \`orderSettings\` field: \`MANAGE\_CHANNELS\` \`MANAGE\_ORDERS\`

Requires one of the following permissions when updating only \`checkoutSettings\` field: \`MANAGE\_CHANNELS\` \`MANAGE\_CHECKOUTS\`

Requires one of the following permissions when updating only \`paymentSettings\` field: \`MANAGE\_CHANNELS\` \`HANDLE\_PAYMENTS\`

Triggers the following webhook events:

-   CHANNEL\_UPDATED (async): A channel was updated.
-   CHANNEL\_METADATA\_UPDATED (async): Optionally triggered when public or private metadata is updated.

```graphql
channelUpdate(
  id: ID!
  input: ChannelUpdateInput!
): ChannelUpdate
```

Details

```graphql
type ChannelUpdate {
  channelErrors: [ChannelError!]! @deprecated
  errors: [ChannelError!]!
  channel: Channel
}
```

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

### Arguments

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

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

ID of a channel to update.

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

#### [`input`](#input) ● [`ChannelUpdateInput!`](/api-reference/channels/inputs/channel-update-input.md)

Fields required to update a channel.

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

### Type

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

#### [`ChannelUpdate`](/api-reference/channels/objects/channel-update.md)

Update a channel.

Requires the MANAGE\_CHANNELS permission.

Requires one of the following permissions when updating only \`orderSettings\` field: \`MANAGE\_CHANNELS\` \`MANAGE\_ORDERS\`

Requires one of the following permissions when updating only \`checkoutSettings\` field: \`MANAGE\_CHANNELS\` \`MANAGE\_CHECKOUTS\`

Requires one of the following permissions when updating only \`paymentSettings\` field: \`MANAGE\_CHANNELS\` \`HANDLE\_PAYMENTS\`

Triggers the following webhook events:

-   CHANNEL\_UPDATED (async): A channel was updated.
-   CHANNEL\_METADATA\_UPDATED (async): Optionally triggered when public or private metadata is updated.
