Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon API Marking orders as shipped

Tags:

I'm currently using the amazon orders API to get order details. I then create orders on our system, which then get shipped from here.

I'd like to update the amazon orders once the goods have been shipped with our shipment number etc., but can't find any API to do this.

Is there an API to update amazon's orders with shipment information, if so, where/what is it?

I've searched all over the place, but haven't found anything so any help would be greatly appreciated.

like image 734
George Duckett Avatar asked May 09 '11 09:05

George Duckett


People also ask

How do I mark an item as delivered on Amazon?

Visit the Order History tab, select your order, scroll to the bottom of the page and click Mark as Delivered.

Does Amazon have an order API?

With the Orders API section of Amazon Marketplace Web Service (Amazon MWS), you can build simple applications that retrieve only the order information that you need.

Can you set shipping preferences on Amazon?

To set delivery preferences for an individual address: Go to the Your Account page and select Your addresses. Identify the address for which you want to set delivery preferences, and select Edit delivery preferences. Note: Delivery preferences do not apply to orders made via Amazon Punchout.

How do I change shipping mode on Amazon seller?

To set your preferences: Select Settings at the top right of any page in Seller Central, click Account Info, and then click Buy Shipping Preferences under Shipping and Returns Information.


1 Answers

There is no API to modify orders directly. However, you can use the feed submission API in MWS to submit a feed to confirm orders, mark them as shipped, and add shipment tracking information.

Here's where you'll get the detailed technical information:

MWS Feed API Reference is here: https://developer.amazonservices.com/gp/mws/api.html/189-7733093-6915107?ie=UTF8&section=feeds&group=bde&version=latest

You'll need to invoke SubmitFeed with a feed of type _POST_ORDER_FULFILLMENT_DATA_

For the details of the feed itself, the info is : https://sellercentral.amazon.com/gp/help/help.html/ref=au_200357600_cont_help?ie=UTF8&itemID=200357600&language=en_US

You're looking for an Order Fulfillment feed: https://sellercentral.amazon.com/gp/help/help.html/ref=ag_381_cont_341?ie=UTF8&itemID=381&language=en_US

There's a sample available on Seller Central.

like image 69
fmr Avatar answered Oct 20 '22 11:10

fmr