Upload invoice amazon MWS - amazon-mws

About which Webservice is it possible to upload a pdf invoice for an order?
Since some weeks it is possible to about via sellercentral or third party software. But I can not find a way about mws api.

Maybe you should check this guide
https://m.media-amazon.com/images/G/01/B2B/DeveloperGuide/vat_calculation_service__dev_guide_H383rf73k4hsu1TYRH139kk134yzs.pdf
"Once invoices have been generated, they must be uploaded to Amazon through the Feed type _UPLOAD_VAT_INVOICE_ in the Feed API"

Related

Is there any way to download Amazon's business report using Amazon MWS API?

I am trying to download the 'Detail Page Sales and Traffic' and 'Detail Page Sales and Traffic By Child Item' automatically. Because manual pulling takes extra effort to complete this job. Also scraping option is not possible.So if there is any way to pull using MWS Api.
As far as I can tell, this report (and many others) are not available via the MWS API. The only reports available via MWS are the ones listed here:
https://docs.developer.amazonservices.com/en_US/reports/Reports_ReportType.html

Using Amazon MWS as an e-commerce solution

I'm currently looking into using Amazon Marketplace Web Services (MWS, https://developer.amazonservices.com/) as e-commerce solution for a client's website.
We will be putting this client's products on Amazon, the questions I have about MWS I have are as follows:
Is it possible to pull products from an Amazon Seller Account onto a non-Amazon seller website using MWS?
Is it possible to submit orders for those products on the non-Amazon seller website and have Amazon do all the payment processing and shipping?
Following the previous question, would it be possible to receive shipping updates for products customers order through this non-Amazon seller website?
I have been reading the MWS documentation and overview pages and it seems like MWS might be able to do everything I need, I just thought it would be nice to receive verification from someone who has worked with MWS before.
Thanks in advance.
Is it possible to pull products from an Amazon Seller Account onto a non-Amazon seller website using MWS?
Yes. You can use MWS to "download" data from Amazon. I haven't done that myself (all integrations I've done are the other way around), but it seems, that there may be considerable lag if you do this through the reporting API.
Is it possible to submit orders for those products on the non-Amazon seller website and have Amazon do all the payment processing and shipping?
Yes. For payment processing, look at Amazon's payment solutions which are not part of MWS. Shipping can be done through MWS using the FBA (Fulfillment by Amazon) calls, such as CreateFulfillmentOrder.
Following the previous question, would it be possible to receive shipping updates for products customers order through this non-Amazon seller website?
Yes. You can get at least some shipping and tracking information for FBA shipments from Amazon, see GetPackageTrackingDetails. I'm not sure if the included tracking number will always be valid - and this may very well depend on your country / region / other stuff. Depending on the level of detail you require, you might have to integrate with that shipping service's API as well.

Which API is used for getting Invoice and Label for Amazon orders using Amazon MWS

I am making an application that accesses the orders programmatically using Amazon MWS API. I want to get the invoice and label for order but I don't know which API is providing this facility, as I checked Merchant Fulfillment API but that is available only in the US,UK, and Germany and I am confused that is the API I am looking for.
Please suggest me which API is suited for this and also what is the difference between Inbound and outbound shipment API provided by Amazon MWS.
Any help would be appreciated
Thanks!

How can I add a product in amazon using the amazon API?

I'm doing a project using ebay and amazon api.
I've uploaded products to ebay sandbox using the api.
But I searched for api to add products in amazon api.
Is there any documentation or reference to do it?
You have to use the Amazon MWS API (it's not the same as AWS product API) in order to upload your products to Amazon.
Here you can read everything you need to know about MWS.
For your particular problem, you'll have to submit a feed which contains the product data you want to upload. Here is the documentation about Amazon's feed mechanism and feed submit operation.
UPDATE:
There are the feed client libraries, with the code samples, for C#, Java and PHP.
For example, if you download the Java client library, you'll find a great example within the file on the path: src\com\amazonaws\mws\samples\SubmitFeedSample.java, etc.
If you are using another language, you'll have to write your own code, but the approach should be straightforward: you have a WS end-point (i.e. https://mws.amazonservices.com) and you have to execute the SubmitFeed operation against it.
An XML sample of the feed content
Feed content example.

Where is the PHP API for uploading MWS Order Confirmations?

I want to upload order confirmations to MWS. I have the flat file template. I need the actual PHP code library that makes the confirmation possible.
I have used the PHP API that MWS provides to handle products and orders. I just don't know where to find the Order Confirmation api.
To provide shipment confirmations to Amazon, you need to use the SubmitFeed operation in the Amazon MWS API with the _POST_ORDER_FULFILLMENT_DATA_ FeedType.
For an example of how to do this in PHP, you should download the sample PHP client library and refer to the file named SubmitFeedSample.php.

Resources