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
9
votes
1 answer

Is it possible to register as a developer for Amazon SP-API without having a seller account?

I plan to develop an app for Amazon Selling Partner API (SP-API). The general idea of the app is that it will be the app, that different sellers can use to help them manage their stock on Amazon. I myself am not a seller on Amazon, and I don't work…
Mykhailo Seniutovych
  • 3,527
  • 4
  • 28
  • 50
9
votes
2 answers

Get Amazon MWS results to Json or Xml and elaborate them

Is there any way to get results of an Amazon MWS request in the Json or Xml format instead of a plain string? my code is the following: public function listOrders() { $request = "https://mws.amazonservices.it/Orders/2013-09-01?"; $request .=…
Martina
  • 1,852
  • 8
  • 41
  • 78
9
votes
2 answers

How do you parse Relationships in MWS GetMatchingProduct?

The Data: ATVPDKIKX0DER B002KT3XQC
fwho
  • 248
  • 2
  • 14
8
votes
2 answers

Amazon mws ability to take notice of restricted products

When I'm using my account api keys, which endpoint and which API do I need to hit to be able to tell if I can sell a given product or not?
Gandalf StormCrow
  • 25,788
  • 70
  • 174
  • 263
8
votes
3 answers

Redefinition of parameter $quotaMax error when using MWS to get product information

I'm trying to get information from a product using Amazon MWS API and I'm get this annoying error: Fatal error: Redefinition of parameter $quotaMax in....(path to file ResponseHeaderMetadata.php) My MWS credentials are ok because I tried the exact…
Lincoln
  • 880
  • 14
  • 25
8
votes
4 answers

GetLowestPricedOffersForSKU failed processing arguments

I have a slight issue when trying to call GetLowestPricedOffersForSKU, I get the response : Failed processing arguments of org.jboss.resteasy.spi.metadata I can call other functions in the Product Api and they work fine, just get the above error…
Potman100
  • 151
  • 1
  • 10
8
votes
2 answers

Amazon MWS Marking order as shipped

I have listed all of my Amazon orders to my site. Now, i want to have ability to mark order as shipped from my site and the status will be instantly updated on amazon. I have looked at amazon feed api but not clear about the format of feed xml. I…
Waqas Malik
  • 659
  • 2
  • 11
  • 27
8
votes
3 answers

Getting internal error with Response Status Code 0 on Amazon Marketplace API Requests

I've downloaded Amazon's Marketplace SDK and I'm trying out one of the samples in the samples dir. However, I'm getting an exception with the following details whenever I try it: Caught Exception: Internal Error Response Status Code: 0 Error Code:…
Ali
  • 261,656
  • 265
  • 575
  • 769
7
votes
2 answers

How can I search for specific keys in this nested dictionary in Python?

I am new to programming and I'm trying to extract values from the Amazon MWS API. It returns the biggest nested dictionary I've seen and I'm having trouble figuring out how to loop through it to find the value I need. Example: {'Products':…
Youn Jung Chung
  • 83
  • 1
  • 1
  • 6
7
votes
1 answer

MWS Feeds Update Quantities in php - Amazon

it's a few days that I am trying to update the quantity of inventory on Amazon through php and Amazon MWS in php (without using MWS APIs because in my opinion are out of dated) Here is my code: $param = array(); $param['AWSAccessKeyId'] =…
Martina
  • 1,852
  • 8
  • 41
  • 78
7
votes
2 answers

How to update prices of products with Amazon Marketplace Web Service (Amazon MWS) API

Just tried to find out, how easy (or maybe difficult) it is to update prices of products of a amazon marketplace shop. After some search I found docs about "Amazon Marketplace Web Service (Amazon MWS)". I have also checked the API docs and one of…
everyman
  • 3,377
  • 1
  • 34
  • 33
7
votes
1 answer

How can I return XML from boto calls?

I am using boto 2.32.1 with Python 2.7.6. I am having problems with the list_orders function of boto's mws modules to get the XML data of my Amazon orders. Here is the call I make: response =…
7
votes
2 answers

Amazon MWS Order API timestamp must follow ISO8601

I am using Amazon MWS order API (ListOrders) and I can successfully run it on Amazon Scratchpad but I am getting the following error Sender MalformedInput timestamp must follow ISO8601 Below is the php script which I got from some…
Kamran Akhter
  • 513
  • 2
  • 9
  • 21
7
votes
3 answers

Mapping amazon product category to the correct category XSD

Within the _POST_PRODUCT_DATA_ feed the "ProductData" node contains data that is specific to the category that the item is within. How exactly though should the category the item is in be mapped to an XSD as there doesn't (always) seem to be a…
robjmills
  • 18,438
  • 15
  • 77
  • 121
7
votes
3 answers

Amazon mws api Class 'MarketplaceWebService_Client' not found error

After downloading an unzipping Amazon's MWS client library api I have tried to run one of the scripts to see if everything is working. when trying to run the file GetReportCountSample.php I get the error Fatal error: Class…
mk_89
  • 2,692
  • 7
  • 44
  • 62
1
2
3
55 56