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
      • Playground
          • MUTproductUpload
          • MUTproductAnonUpload
          • MUTupdateAccountSettings
          • MUTupdateCustomerAccountSettings
          • MUTinvoicePdf
          • MUTinvoicesExport
          • MUTinvoiceCreateBcCart
          • MUTinvoiceFinishBcPayment
          • MUTcreateOrder
          • MUTshoppingListsCreate
          • MUTshoppingListsUpdate
          • MUTshoppingListsDelete
          • MUTshoppingListsDuplicate
          • MUTshoppingListsItemsCreate
          • MUTshoppingListsItemsUpdate
          • MUTshoppingListsItemsDelete
          • MUTcustomerShoppingListsCreate
          • MUTcustomerShoppingListsUpdate
          • MUTcustomerShoppingListsDelete
          • MUTcustomerShoppingListsDuplicate
          • MUTcustomerShoppingListsItemsCreate
          • MUTcustomerShoppingListsItemsUpdate
          • MUTcustomerShoppingListsItemsDelete
          • MUTquoteCreate
          • MUTquoteUpdate
          • MUTquoteCheckout
          • MUTquoteOrdered
          • MUTquoteEmail
          • MUTquotePdfExport
          • MUTquoteAttachFileDelete
          • MUTquoteAttachFileCreate
          • MUTquoteFrontendPdf
          • MUTsuperAdminBeginMasquerade
          • MUTsuperAdminEndMasquerade
          • MUTcompanyCreate
          • MUTlogin
          • MUTcheckoutLogin
          • MUTauthorization
          • MUTuserCreate
          • MUTuserUpdate
          • MUTuserDelete
          • MUTstoreFrontToken
          • MUTcustomerCreate
          • MUTcustomerSubscribersCreate
          • MUTuserMasqueradingCompanyBegin
          • MUTuserMasqueradingCompanyEnd
          • MUTaddressCreate
          • MUTaddressUpdate
          • MUTaddressDelete
          • MUTcustomerAddressCreate
          • MUTcustomerAddressUpdate
          • MUTcustomerAddressDelete
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLB2BMutations

productAnonUpload

Example Query
1mutation ExampleMutation($productListData: ProductAnonUploadInputType) {
2 productAnonUpload(productListData: $productListData) {
3 result {
4 errorFile
5 errorProduct
6 validProduct
7 stockErrorFile
8 stockErrorSkus
9 }
10 }
11}
Variables
1{
2 "productListData": {
3 "productList": [
4 {
5 "sku": "example",
6 "qty": "example"
7 }
8 ],
9 "currencyCode": "example",
10 "channelId": 0,
11 "isToCart": true,
12 "withModifiers": true,
13 "storeHash": "example"
14 }
15}
Example response
1{
2 "data": {
3 "productAnonUpload": {
4 "result": {
5 "errorFile": "example",
6 "errorProduct": "GenericScalar",
7 "validProduct": "GenericScalar",
8 "stockErrorFile": "example",
9 "stockErrorSkus": "GenericScalar"
10 }
11 }
12 }
13}
CSV Upload for anon Doesn't require a Token.
Was this page helpful?
Previous

productUpload

Next

updateAccountSettings

Built with

Arguments

productListDataProductAnonUploadInputTypeOptional

Returns

an optional ProductsAnonUpload
resultProductUploadType