mws

Usage

1. Initialize Client

client = MWS::Client.new({
  :access_key_id => "",
  :secret_access_key => "",
  :merchant_id => "",
  :marketplace_id => ""
})

2. Set Address

client.from_address = {
  :name => "",
  :address_line_1 => "",
  :address_line_2 => "",
  :city => "",
  :state_or_province_code => "",
  :country_code => "",
  :postal_code => ""
}

3. Add Items

client.items << {
  :condition => "",
  :seller_sku => "",
  :asin => "",
  :quantity => ""
}

4. Create Inbound Shipment Plan

inbound_shipment_plan = client.create_inbound_shipment_plan

5. Create Inbound Shipment

inbound_shipment = client.create_inbound_shipment

6. Generate Label & Packing Slip

Contributing to mws

Copyright © 2011 Anton Zolotov. See LICENSE.txt for further details.