For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
          • MUTcreateAppExtension
          • MUTupdateAppExtension
          • MUTdeleteAppExtension
          • MUTcreateChannel
          • MUTremoveProductBasicInformationOverrides
          • MUTremoveProductSeoInformationOverrides
          • MUTremoveProductOptionsOverrides
          • MUTremoveProductStorefrontDetailsOverrides
          • MUTremoveProductPreOrderSettingsOverrides
          • MUTsetProductBasicInformation
          • MUTsetProductIsFeatured
          • MUTremoveProductIsFeaturedOverride
          • MUTsetProductSeoInformation
          • MUTsetProductStorefrontDetails
          • MUTsetProductPreOrderSettings
          • MUTsetProductOptionsInformation
          • MUTsetProductUrlPath
          • MUTremoveProductUrlPathOverride
          • MUTsetProductModifiersInformation
          • MUTremoveProductModifiersOverrides
          • MUTremoveProductCustomFieldsOverrides
          • MUTupdateProductCustomFields
          • MUTaddImagesToProduct
          • MUTremoveImagesFromProduct
          • MUTupdateProductImageProperties
          • MUTremoveProductImagePropertiesOverrides
          • MUTsetSharedProductModifiersInformation
          • MUTremoveSharedProductModifiersOverrides
          • MUTsetSharedProductOptionsInformation
          • MUTremoveSharedProductOptionsOverrides
          • MUTsettings
          • MUTupdateTranslations
          • MUTdeleteTranslations
          • MUTaddLocale
          • MUTdeleteLocale
          • MUTupdateLocale
          • MUTcreateEventBridgeWebhook
          • MUTcreatePubSubWebhook
          • MUTupdatePubSubWebhook
          • MUTupdateEventBridgeWebhook
          • MUTcreateHttpsWebhook
          • MUTdeleteWebhook
          • MUTupdateHttpsWebhook
          • MUTcreateMetafield
          • MUTupdateMetafield
          • MUTdeleteMetafield
          • MUTreassignMetafieldsOwner
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAdminMutations

createChannel

Example Query
1mutation ExampleMutation($input: CreateChannelInput) {
2 createChannel(input: $input) {
3 channel {
4 id
5 currencies
6 dateCreated
7 dateModified
8 externalId
9 iconUrl
10 isListableFromUi
11 isVisible
12 name
13 platform
14 }
15 }
16}
Variables
1{
2 "input": {
3 "externalId": "example",
4 "isListableFromUi": true,
5 "isVisible": true,
6 "name": "example",
7 "platform": "example",
8 "status": "ACTIVE",
9 "type": "example"
10 }
11}
Example response
1{
2 "data": {
3 "createChannel": {
4 "channel": {
5 "id": "example",
6 "currencies": {
7 "defaultCurrencyCode": null,
8 "enabledCurrencyCodes": null
9 },
10 "dateCreated": "DateTime",
11 "dateModified": "DateTime",
12 "externalId": "example",
13 "iconUrl": "example",
14 "isListableFromUi": true,
15 "isVisible": true,
16 "name": "example",
17 "platform": "example"
18 }
19 }
20 }
21}
Creates a channel.
Was this page helpful?
Previous

deleteAppExtension

Next

removeProductBasicInformationOverrides

Built with

Arguments

inputCreateChannelInputRequired

Returns

an optional CreateChannelResult
channelChannel
The Channel that is created as a result of mutation.