Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon Marketplace API

Tags:

c#

amazon

I was expecting amazon marketplace web service to be as simple as any other web service but it is not....

There seems to be a tiny bit of information about marketplace product feeds, and could any one help me on how to start from uploading a new product(step by step-as i am new to this),and also updating the quantity or price in future onto amazon in C#.net

If anyone can give a short summary, I'd be very grateful. All I want to do is I have a web site which displays a list of products. I need to send this list onto amazon for display through one of their API using C#.net. After digging I felt like Marketplace Web Service is appropriate but I dont see any wsdl url to upload the product info.Please help.

like image 795
swethavangala Avatar asked Oct 12 '11 09:10

swethavangala


People also ask

Does Amazon marketplace have an API?

The AWS Marketplace Catalog API Service provides an API interface for approved providers to programmatically manage their products.

Can you use Amazon API for free?

With Amazon API Gateway, you only pay when your APIs are in use. There are no minimum fees or upfront commitments. For HTTP APIs and REST APIs, you pay only for the API calls you receive and the amount of data transferred out.

What is Amazon Seller API?

SP-API is a suite of REST-based APIs that provides Amazon selling partners programmatic access to their Amazon Seller Central account data. With SP-API, you can build applications that help sellers and vendors manage their Amazon business.

Is Amazon MWS still available?

Amazon Marketplace Web Service (MWS) will no longer be available after December 31, 2023. In 2020 we announced the launch of Selling Partner API (SP-API), a modernized suite of REST APIs using standards that today's developers expect, which includes all the functionality available in Amazon MWS plus many new APIs.


3 Answers

Use the amazon C# client library here: https://developer.amazonservices.com/gp/mws/api.html/180-1400280-4320051?ie=UTF8&section=feeds&group=bde&version=latest

like image 130
George Duckett Avatar answered Oct 23 '22 16:10

George Duckett


The main steps for submitting an Amazon Marketplace product feed that I've used are:

  • Use the SubmitFeed method to upload the feed to Amazon in CSV or XML.
  • Use the GetFeedSubmissionList method to get the list of current submissions and their 'FeedProcessingStatus'.
  • Continue to poll this method and the FeedProcessingStatus will change from 'SUBMITTED' to 'IN_PROGRESS' to 'DONE'.
  • Use the GetFeedSubmissionResult method to get the Feed Processing Summary.

Temboo has a good library for Amazon Marketplace which actually chains these steps together, so it can be a time saver. The Temboo SDKs are available for JAVA, Python, PHP, Ruby, Node.js, Android, and iOS. You can check it out here: https://www.temboo.com/library/Library/Amazon/Marketplace/

(Full disclosure: I work at Temboo)

like image 43
ajennings Avatar answered Oct 23 '22 17:10

ajennings


There are a few ways to upload products to amazon. The Marketplace web service as mentioned and the AMTU, amazon merchant transport utility. Version 2 of AMTU is based on MWS.

Regardless of the method you choose you will still have to format feeds in XML or flat file format. The xsd's for XML and flat file formats are documented and samples of these are available through your seller account.

like image 2
Derek Beattie Avatar answered Oct 23 '22 18:10

Derek Beattie