Questions tagged [amazon-mws]

Amazon Marketplace Web Service (Amazon MWS) is an integrated Web service API that helps Amazon sellers to programmatically exchange data on listings, orders, payments, reports, and more.

Amazon MWS Developer Site - Provides all documentation and source code (in PHP, C# and Java). A seller account is needed to access the forums.

Resources

Guides

API Reference

826 questions
0
votes
1 answer

Unmatched response on ItemLookup based on UPC

I have tried using ItemLookup operation to identify an ItemId based on IdType UPC. I expected to get a unique result, since it is based on UPC. But for some of the queries made, more than one result came up and sometimes, items clearly not related…
0
votes
1 answer

AMTU (Amazon Transport Utility) crashing and service not running

Having a problem running AMTU on a windows 7 Pro Machine. It runs fine when it opens but it crashes after running a few days. Here is the Crash Report. 2013-09-14 09:48:19,482 [pool-3-thread-3] com.amazon.merchants.services.RetrieverService -…
monsey11
  • 243
  • 4
  • 18
0
votes
1 answer

XML Serialization with Array

Introduction My goal is to convert a LIST into XML format. This list will consist of several "REPORT" nodes all with child elements.I am using XML Serialization to achieve this result. The resulting XML, will appear as this:
user1698144
  • 754
  • 4
  • 13
  • 36
0
votes
1 answer

ASP.NET - How to Transfer to XML File

What would be the easier way to transfer the code below into an XML File. I have tried to use XDocument, but the code gets very confusing with all of the if statments. My Code: public class GetReportListSample { public static void…
user1698144
  • 754
  • 4
  • 13
  • 36
0
votes
1 answer

Amazon MWS update product using _POST_PRODUCT_DATA_ / Product feed

I want to update the ShippingWeight in some of our products. I think the Product feed should do this for me. The feed below seems to work fine, the data is updated in amazon, but I get an error response. What's wrong with the feed, why do I get an…
nrx
  • 103
  • 2
  • 6
0
votes
1 answer

Amazon Marketplace Web Service (MWS) - add my offer to an existing product

On Amazon Marketplace, there can be multiple offers from different sellers on a single product. So for example Duracell Coppertop AA Batteries are sold by 110 different merchants. What I need to do is programmatically add my own offer to specific…
SharpAffair
  • 5,558
  • 13
  • 78
  • 158
0
votes
1 answer

Amazon MWS API - How do I get product reviews from Amazon?

I am using Amazon MWS API to list our products and other things as inventory/orders management on Amazon but I am not able to get the customer reviews on our products from Amazon. Is there anyone who can let me guide how to do that?
Harsh
  • 183
  • 2
  • 12
0
votes
2 answers

XML Error: Ill-formed at the Amazon Envelope XML level at (or near) line 8, column 18

I am trying to upload product feed on Amazon.de marketplace by using Amazon MWS (in php) but get an error "XML you submitted is ill-formed at the Amazon Envelope XML level at (or near) line 8, column 18". In addition while tried to upload the same…
Rupesh
  • 1
  • 5
0
votes
1 answer

Post a proudct with MWS api and Ruby on Rails

I'm trying to upload a new product to mws with the mws api and mws gem The product is added (like Fix failed listings, because, doen't have a quantity and price) I'm trying with the next code: mws = Mws.connect( merchant: 'merchant', …
Benjamin RD
  • 11,516
  • 14
  • 87
  • 157
0
votes
1 answer

Post a new product with ruby on rails, spree and aws

I'm trying to post a product with the mws api with ruby on rails and spree. But, always this message is displayed: undefined method `sku' for # require 'mws-connect' class Spree::Admin::MeController <…
Benjamin RD
  • 11,516
  • 14
  • 87
  • 157
0
votes
1 answer

Request for examples of VB.net code to retrieve Amazon orders via MWS API

I have been tasked to generate a VB.net application to download our Amazon orders and order items using the API. Can anyone point me in the direction of any samples to assist. The API documentation is very thorough but thought it would save time if…
user2516387
  • 91
  • 2
  • 4
  • 8
0
votes
2 answers

jruby cannot load java class from jar

I'm trying to wrap the amazon-merchant-web-service-java-sdk in jruby for a jruby-on-rails project. In my test, I am able to instantiate some classes .... require 'java' require 'lib/MaWSJavaClientLibrary-1.1.jar' module MWS include_package…
Homan
  • 25,618
  • 22
  • 70
  • 107
0
votes
1 answer

Amazon: Product not showing in inventory list on seller central

Any one experienced with Amazon MWS might help me. I am trying to push a product through XML to my inventory in my seller central account. But it doesnot appear on there. I am using sample file provided by Amazon.
Saaram
  • 337
  • 3
  • 7
  • 29
0
votes
1 answer

Amazon MWS - How can we update the inventory on Amazon instantly?

I was wondering if there is any way to update inventory instantly on Amazon by using MWS. We are having the issue, when getting an out of stock order from Amazon side. Actually we are updating the inventory hourly for example at 9:05, 10:05, 11:05,…
Rupesh
  • 1
  • 5
0
votes
1 answer

Amazon error: Invalid ProductType value for SKU

I am new to Amazon MWS API. I am working on Product feed and having problem with SKU. My scenario is when SKU length is less than 12 then add "WH" string with SKU value. For example if SKU is 920126, it will become WH920126. When i get Amazon feed…