How do I add pricing and quantity information when adding a product to an Amazon central sales center Using Amazon MWS?

I use the Amazon MWS API to add products to the Amazon seller’s central store. When I use the example from the Amazon Feed API Partition Reference , products are added to the store at no cost. I added the code below, which I used to add the product to the Amazon seller’s 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 problem 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 information.

+4
source share
1 answer

You need to send various xml files and types of feeds for the product, price, inventory, etc. You cannot send this information together in xml files to download the product. But if you use excel spreadsheets, you can send all this information to a single file. You can refer to this to learn about downloading spreadsheets. http://www.amazon.com/gp/help/customer/display.html?nodeId=200203300

+3
source

All Articles