Anchor to section titled 'undefined'

productFeedCreate
mutation

Requires Access allowed for apps with read_product_listings scope.

Creates a product feed for a specific publication.


The properties of the new product feed.


Was this section helpful?

The newly created product feed.

The list of errors that occurred from executing the mutation.


Was this section helpful?
Hide code
Mutation reference
Copy
mutation productFeedCreate {
  productFeedCreate {
    productFeed {
      # ProductFeed fields
    }
    userErrors {
      field
      message
    }
  }
}
Hide code
Input
Copy
{
  "input": {
    "country": "AC",
    "language": "AF"
  }
}
input ProductFeedInput {
  country: CountryCode!
  language: LanguageCode!
}