I'm getting started with Amazon MWS and I can't seem to see any real information on the correct flow for listing an item as an existing ASIN. Let's say for example I am selling a "Vulli Sophie the Giraffe Teether". I do an initial lookup using "listMatchingProducts" and find that my item already exists with the ASIN "B000IDSLOG". What is the next stage in the process?. All the documentation talks about the fact that the product feed is intended to match our SKU to the Amazon ASIN but i've not seen any definitive information to suggest how this actually works - especially in the scenario where you already know the ASIN you wish to use.
Ideally i'm interested in seeing the correct flow for each scenario (existing product for search found/not found) in terms of what API calls should be made in what order.
Thanks
The process of listing an item on Amazon is actually very similar for existing ASINs and new ones.
Listing items can consist of these steps:
Call
SubmitFeed()
to send a_POST_PRODUCT_DATA_
feedCall
SubmitFeed()
to send a_POST_PRODUCT_RELATIONSHIP_DATA_
feedCall
SubmitFeed()
to send a_POST_PRODUCT_IMAGE_DATA_
feedCall
SubmitFeed()
to send a_POST_PRODUCT_PRICING_DATA_
feedCall
SubmitFeed()
to send a_POST_INVENTORY_AVAILABILITY_DATA_
feedCall
SubmitFeed()
to send a_POST_PRODUCT_OVERRIDES_DATA_
feedMore information on feeds is available on the Amazon Developer Documentation website and in Selling on Amazon: Guide to XML
You can simply use flat file template from amazon to load your feeds to marketplace with your seller account credentials using marketplace web service.
Use 'inventory loader' file type template that will override the existing items or create new if doesn't exists.
You can define 'ASIN-Hint' fields/column in file for the items those already exists over marketplace as your case is.
Idea behind is that amazon matches the provided ASIN value with feed with the already existed product detail and synch information accordingly.
Try uploading your product without ASIN-Hint and see process report you will get a good idea then.
You may also refer http://prashantpandeytech.blogspot.in/2015/03/mws-amazon-marketplace-web-service-api.html for step wise implementation
It seems in the case of adding a product with an existing ASIN you can actually send a very basic XML request such as this, making sure to include the ASIN:
Essentially though, from what i've read elsewhere it seems that Amazon will attempt to match a product to an existing ASIN according to the data within the _POST_PRODUCT_DATA_ feed even if an ASIN isn't provided. It will use elements such as title, manufacturer, brand, and other product specific information to compare that to their catalog and determine if it is an existing item or a new one to be added. If you do know it already has an ASIN though you can provide a very simple XML feed as shown above.