Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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>

Does anyone know about this issue and tell me how to fix it and How to add Quantity in the above code ? I used this code from Amazon Feed API reference.

like image 486
sabari Avatar asked Jan 24 '13 07:01

sabari


People also ask

How do you add quantity variation on Amazon?

On your Seller Central home page, navigate to the Inventory drop-down, click Add a Product and click Add a variation using Variation Wizard.

How do I change the selling price on Amazon seller Central?

However, in manage inventory you just need to click on the edit box on the far-right hand side of the screen, you can then amend the sale price and click on save to save it.


1 Answers

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

like image 146
Balaji Kandasamy Avatar answered Sep 28 '22 18:09

Balaji Kandasamy