user1535423
user1535423

Reputation: 11

Amazon MWS PHP-API Access and Print Out Packing List

How do I use Amazon MWS with PHP to access and print out packing lists? What is the process, and if possible what are the steps? Examples would be helpful.

Upvotes: 0

Views: 2581

Answers (2)

Hazzit
Hazzit

Reputation: 6882

Because you're talking about MWS and "packing lists", I assume the following to be true:

  • You are an Amazon Seller
  • You are sending out packages yourself (MFN / merchant fulfillment), and not using AFN / FBA (Fulfillment by Amazon)

To create packing lists, you will roughly have to do the following:

  1. Fetch the "OrderReport" from the Amazon MWS Servers. The returned XML will contain details for your all outstanding orders including: shipping address, quantities, SKUs and product names.
  2. Confirm the reception of those orders through the "OrderAcknowledgment" API call
  3. Use above data to create pretty HTML files, images, PDF files or whatever else that can be printed as packing lists

While you're at it, you may want to look at the "OrderFulfillment" call. This lets Amazon know that you've actually shipped. The sample PHP code you linked should help you with steps 1 and 2.

(for future reference: sample client code in PHP,C# and Java is available at https://developer.amazonservices.com/ . Follow the API documentation links to get current versions)

Upvotes: 1

Robert H
Robert H

Reputation: 11730

I am a little confused by your question because of the use of packing lists.

Amazon makes labels available, but the labels are used to differentiate between multiple sellers of the same SKU, and is not a packing list in and of itself. Amazon generates their own packing list when an order is placed for AFN orders, and MFN orders are send to you for processing via your own process.

However, assuming you are looking for the Amazon labels I took a quick look through all the API's and did not see any information on printing them. As far as I know this is only available through seller central, however if any API does that functionality it would be the feeds API.

I would suggest creating an account on https://sellercentral.amazon.com/forums/forum.jspa?forumID=35 and asking the folks there - several Amazon Employee's monitor that forum and Oneida Books is the resident guru and can pretty much answer anything API related.

Upvotes: 0

Related Questions