How to add price and quantity details when adding a product to Amazon seller central Using Amazon MWS?
Asked Answered
V

1

6

I am using Amazon MWS Feeds API for adding products to Amazon seller central store. When I use an example from Amazon's Feeds API Section Reference, products added to the store without price. I've added the code below I used for adding product to Amazon seller central store.

<?xml version="1.0" encoding="iso-8859-1"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
    <Header>
        <DocumentVersion>1.01</DocumentVersion>
        <MerchantIdentifier>M_EXAMPLE_123456</MerchantIdentifier>
    </Header>
  <MessageType>Product</MessageType>
  <PurgeAndReplace>false</PurgeAndReplace>
  <Message>
    <MessageID>1</MessageID>
    <OperationType>Update</OperationType>
    <Product>
        <SKU>TEST1234</SKU>
        <StandardProductID>
          <Type>ASIN</Type>
          <Value>B0EXAMPLEG</Value>
        </StandardProductID>
        <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
        <DescriptionData>
          <Title>Example Product Title</Title>
          <Brand>Example Product Brand</Brand>
          <Description>This is an example product description.</Description>
          <MSRP currency="USD">25.19</MSRP>
          <Manufacturer>Example Product Manufacturer</Manufacturer>
          <ItemType>example-item-type</ItemType>
        </DescriptionData>
        <ProductData>
          <Health>
            <ProductType>
              <HealthMisc>
                <Ingredients>Example Ingredients</Ingredients>
                <Directions>Example Directions</Directions>
              </HealthMisc>
            </ProductType>
          </Health>
        </ProductData>
    </Product>
  </Message>
</AmazonEnvelope>

What's the cause of this issue and how can it be fixed, and how can I add Quantity in the above code? I used this code from Amazon Feed API reference.

Viscus answered 24/1, 2013 at 7:36 Comment(1)
can u tell me what is the product type showing in seller central account. Is that MISC_OTHER????Soliloquize
D
6

You need to submit different xml files and feed types for product,price,inventory etc. You cannot send this information together in xml files to upload a product. But if you are using excel spreadsheets you can send all this information in a single file. you can refer this to know about spreadsheet upload. http://www.amazon.com/gp/help/customer/display.html?nodeId=200203300

Disunion answered 30/1, 2013 at 6:56 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.