amazon-mws-plus 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.project +12 -0
  4. data/Gemfile +13 -0
  5. data/README.markdown +30 -0
  6. data/Rakefile +50 -0
  7. data/amazon-mws-plus.gemspec +23 -0
  8. data/amazon-mws.tmproj +27 -0
  9. data/examples/xml/cancel_feed_submissions.xml +16 -0
  10. data/examples/xml/cancel_fulfillment_order.xml +6 -0
  11. data/examples/xml/cancel_report_requests.xml +18 -0
  12. data/examples/xml/create_fulfillment_order.xml +6 -0
  13. data/examples/xml/error.xml +10 -0
  14. data/examples/xml/get_feed_submission_count.xml +10 -0
  15. data/examples/xml/get_feed_submission_list.xml +18 -0
  16. data/examples/xml/get_feed_submission_list_by_next_token.xml +16 -0
  17. data/examples/xml/get_feed_submission_result.xml +30 -0
  18. data/examples/xml/get_fulfillment_order.xml +113 -0
  19. data/examples/xml/get_fulfillment_preview.xml +148 -0
  20. data/examples/xml/get_matching_product.xml +115 -0
  21. data/examples/xml/get_matching_product_for_id.xml +119 -0
  22. data/examples/xml/get_report.xml +237 -0
  23. data/examples/xml/get_report_count.xml +9 -0
  24. data/examples/xml/get_report_list.xml +17 -0
  25. data/examples/xml/get_report_request_count.xml +8 -0
  26. data/examples/xml/get_report_request_list.xml +120 -0
  27. data/examples/xml/get_report_request_list_by_next_token.xml +20 -0
  28. data/examples/xml/get_report_schedule_count.xml +10 -0
  29. data/examples/xml/get_report_schedule_list.xml +15 -0
  30. data/examples/xml/get_report_schedule_list_by_next_token.xml +15 -0
  31. data/examples/xml/list_all_fulfillment_orders.xml +69 -0
  32. data/examples/xml/list_all_fulfillment_orders_by_next_token.xml +61 -0
  33. data/examples/xml/manage_report_schedule.xml +14 -0
  34. data/examples/xml/orders_request.xml +39 -0
  35. data/examples/xml/request_order_items.xml +51 -0
  36. data/examples/xml/request_order_items_by_next_token.xml +51 -0
  37. data/examples/xml/request_orders.xml +43 -0
  38. data/examples/xml/request_orders_by_next_token.xml +69 -0
  39. data/examples/xml/request_report.xml +17 -0
  40. data/examples/xml/submit_feed.xml +14 -0
  41. data/examples/xml/update_report_acknowledgements.xml +18 -0
  42. data/examples/xsd/Inventory.xsd +49 -0
  43. data/examples/xsd/Item.xsd +285 -0
  44. data/examples/xsd/Listings.xsd +32 -0
  45. data/examples/xsd/OrderAcknowledgement.xsd +55 -0
  46. data/examples/xsd/OrderAdjustment.xsd +94 -0
  47. data/examples/xsd/OrderFulfillment.xsd +57 -0
  48. data/examples/xsd/Override.xsd +48 -0
  49. data/examples/xsd/Price.xsd +59 -0
  50. data/examples/xsd/ProcessingReport.xsd +87 -0
  51. data/examples/xsd/Product.xsd +220 -0
  52. data/examples/xsd/Product/AutoAccessory.xsd +807 -0
  53. data/examples/xsd/Product/Beauty.xsd +114 -0
  54. data/examples/xsd/Product/CE.xsd +544 -0
  55. data/examples/xsd/Product/CameraPhoto.xsd +2410 -0
  56. data/examples/xsd/Product/FoodAndBeverages.xsd +270 -0
  57. data/examples/xsd/Product/Gourmet.xsd +85 -0
  58. data/examples/xsd/Product/Health.xsd +189 -0
  59. data/examples/xsd/Product/Home.xsd +654 -0
  60. data/examples/xsd/Product/Jewelry.xsd +603 -0
  61. data/examples/xsd/Product/Miscellaneous.xsd +157 -0
  62. data/examples/xsd/Product/MusicalInstruments.xsd +853 -0
  63. data/examples/xsd/Product/Office.xsd +550 -0
  64. data/examples/xsd/Product/PetSupplies.xsd +40 -0
  65. data/examples/xsd/Product/ProductClothing.xsd +197 -0
  66. data/examples/xsd/Product/SWVG.xsd +238 -0
  67. data/examples/xsd/Product/Sports.xsd +308 -0
  68. data/examples/xsd/Product/TiresAndWheels.xsd +159 -0
  69. data/examples/xsd/Product/Tools.xsd +62 -0
  70. data/examples/xsd/Product/ToysBaby.xsd +241 -0
  71. data/examples/xsd/Product/Wireless.xsd +77 -0
  72. data/examples/xsd/ProductImage.xsd +39 -0
  73. data/examples/xsd/Relationship.xsd +47 -0
  74. data/examples/xsd/SettlementReport.xsd +158 -0
  75. data/examples/xsd/amzn-base.xsd +1600 -0
  76. data/examples/xsd/amzn-envelope.xsd +98 -0
  77. data/examples/xsd/amzn-header.xsd +45 -0
  78. data/lib/amazon-mws.rb +6 -0
  79. data/lib/amazon/mws.rb +69 -0
  80. data/lib/amazon/mws/authentication.rb +10 -0
  81. data/lib/amazon/mws/authentication/query_string.rb +36 -0
  82. data/lib/amazon/mws/authentication/signature.rb +43 -0
  83. data/lib/amazon/mws/base.rb +74 -0
  84. data/lib/amazon/mws/connection.rb +107 -0
  85. data/lib/amazon/mws/connection/management.rb +95 -0
  86. data/lib/amazon/mws/connection/request_builder.rb +67 -0
  87. data/lib/amazon/mws/exceptions.rb +55 -0
  88. data/lib/amazon/mws/lib/extensions.rb +178 -0
  89. data/lib/amazon/mws/lib/memoizable.rb +10 -0
  90. data/lib/amazon/mws/request/feed.rb +276 -0
  91. data/lib/amazon/mws/request/feed_builder.rb +83 -0
  92. data/lib/amazon/mws/request/fulfillment.rb +50 -0
  93. data/lib/amazon/mws/request/orders.rb +107 -0
  94. data/lib/amazon/mws/request/products.rb +38 -0
  95. data/lib/amazon/mws/request/report.rb +330 -0
  96. data/lib/amazon/mws/response.rb +43 -0
  97. data/lib/amazon/mws/response/feed/cancel_feed_submissions_response.rb +15 -0
  98. data/lib/amazon/mws/response/feed/get_feed_submission_count_response.rb +13 -0
  99. data/lib/amazon/mws/response/feed/get_feed_submission_list_by_next_token_response.rb +17 -0
  100. data/lib/amazon/mws/response/feed/get_feed_submission_list_response.rb +16 -0
  101. data/lib/amazon/mws/response/feed/get_feed_submission_result_response.rb +54 -0
  102. data/lib/amazon/mws/response/feed/models/feed_submission.rb +16 -0
  103. data/lib/amazon/mws/response/feed/submit_feed_response.rb +15 -0
  104. data/lib/amazon/mws/response/fulfillment_order/cancel_fulfillment_order_response.rb +11 -0
  105. data/lib/amazon/mws/response/fulfillment_order/create_fulfillment_order_response.rb +12 -0
  106. data/lib/amazon/mws/response/fulfillment_order/get_fulfillment_order_response.rb +19 -0
  107. data/lib/amazon/mws/response/fulfillment_order/list_all_fulfillment_orders_by_next_token_response.rb +16 -0
  108. data/lib/amazon/mws/response/fulfillment_order/list_all_fulfillment_orders_response.rb +15 -0
  109. data/lib/amazon/mws/response/fulfillment_order/models/fulfillment_address.rb +18 -0
  110. data/lib/amazon/mws/response/fulfillment_order/models/fulfillment_order.rb +24 -0
  111. data/lib/amazon/mws/response/fulfillment_order/models/fulfillment_order_item.rb +20 -0
  112. data/lib/amazon/mws/response/fulfillment_order/models/fulfillment_shipment.rb +18 -0
  113. data/lib/amazon/mws/response/fulfillment_order/models/fulfillment_shipment_item.rb +14 -0
  114. data/lib/amazon/mws/response/order/models/order.rb +43 -0
  115. data/lib/amazon/mws/response/order/models/order_item.rb +48 -0
  116. data/lib/amazon/mws/response/order/models/promotion_id.rb +9 -0
  117. data/lib/amazon/mws/response/order/request_get_order_response.rb +15 -0
  118. data/lib/amazon/mws/response/order/request_order_items_response.rb +25 -0
  119. data/lib/amazon/mws/response/order/request_orders_response.rb +28 -0
  120. data/lib/amazon/mws/response/product/get_matching_proudct.rb +31 -0
  121. data/lib/amazon/mws/response/product/models/product.rb +36 -0
  122. data/lib/amazon/mws/response/report/cancel_report_requests_response.rb +16 -0
  123. data/lib/amazon/mws/response/report/get_report_count_response.rb +13 -0
  124. data/lib/amazon/mws/response/report/get_report_list_response.rb +17 -0
  125. data/lib/amazon/mws/response/report/get_report_request_count_response.rb +13 -0
  126. data/lib/amazon/mws/response/report/get_report_request_list_by_next_token_response.rb +17 -0
  127. data/lib/amazon/mws/response/report/get_report_request_list_response.rb +17 -0
  128. data/lib/amazon/mws/response/report/get_report_schedule_count_response.rb +13 -0
  129. data/lib/amazon/mws/response/report/get_report_schedule_list_by_next_token_response.rb +17 -0
  130. data/lib/amazon/mws/response/report/get_report_schedule_list_response.rb +17 -0
  131. data/lib/amazon/mws/response/report/manage_report_schedule_response.rb +16 -0
  132. data/lib/amazon/mws/response/report/models/report_info.rb +16 -0
  133. data/lib/amazon/mws/response/report/models/report_request.rb +20 -0
  134. data/lib/amazon/mws/response/report/models/report_schedule.rb +13 -0
  135. data/lib/amazon/mws/response/report/request_report_response.rb +15 -0
  136. data/lib/amazon/mws/response/report/update_reports_acknowledgements_response.rb +16 -0
  137. data/lib/amazon/mws/response/response.rb +43 -0
  138. data/lib/amazon/mws/response/response_error.rb +21 -0
  139. data/test/connection_test.rb +14 -0
  140. data/test/feed_builder_test.rb +74 -0
  141. data/test/feed_test.rb +144 -0
  142. data/test/fulfillment_order.rb +49 -0
  143. data/test/orders_test.rb +78 -0
  144. data/test/products_test.rb +28 -0
  145. data/test/query_string_test.rb +18 -0
  146. data/test/report_test.rb +88 -0
  147. data/test/response_test.rb +172 -0
  148. data/test/signature_test.rb +32 -0
  149. data/test/test_config.yml +6 -0
  150. data/test/test_helper.rb +33 -0
  151. metadata +335 -0
@@ -0,0 +1,115 @@
1
+ <?xml version="1.0"?>
2
+ <GetMatchingProductResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
3
+ <GetMatchingProductResult ASIN="B00828DQGM" status="Success">
4
+ <Product xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01" xmlns:ns2="http://mws.amazonservices.com/schema/Products/2011-10-01/default.xsd">
5
+ <Identifiers>
6
+ <MarketplaceASIN>
7
+ <MarketplaceId>AAHKV2X7AFYLW</MarketplaceId>
8
+ <ASIN>B00828DQGM</ASIN>
9
+ </MarketplaceASIN>
10
+ </Identifiers>
11
+ <AttributeSets>
12
+ <ns2:ItemAttributes xml:lang="zh-CN">
13
+ <ns2:Binding>平装</ns2:Binding>
14
+ <ns2:Brand>中信出版股份有限公司</ns2:Brand>
15
+ <ns2:Edition>第1版</ns2:Edition>
16
+ <ns2:Feature>蒋方舟倾力推荐,读完从头哭到尾,感人程度远远超过《灿烂千阳》。</ns2:Feature>
17
+ <ns2:Label>中信出版社</ns2:Label>
18
+ <ns2:Languages>
19
+ <ns2:Language>
20
+ <ns2:Name>unknown</ns2:Name>
21
+ </ns2:Language>
22
+ <ns2:Language>
23
+ <ns2:Name>chinese</ns2:Name>
24
+ </ns2:Language>
25
+ </ns2:Languages>
26
+ <ns2:ListPrice>
27
+ <ns2:Amount>28.00</ns2:Amount>
28
+ <ns2:CurrencyCode>CNY</ns2:CurrencyCode>
29
+ </ns2:ListPrice>
30
+ <ns2:Manufacturer>中信出版社</ns2:Manufacturer>
31
+ <ns2:NumberOfPages>320</ns2:NumberOfPages>
32
+ <ns2:PackageDimensions>
33
+ <ns2:Height Units="inches">0.70</ns2:Height>
34
+ <ns2:Length Units="inches">8.10</ns2:Length>
35
+ <ns2:Width Units="inches">5.70</ns2:Width>
36
+ <ns2:Weight Units="pounds">0.97</ns2:Weight>
37
+ </ns2:PackageDimensions>
38
+ <ns2:ProductGroup>Book</ns2:ProductGroup>
39
+ <ns2:ProductTypeName>ABIS_BOOK</ns2:ProductTypeName>
40
+ <ns2:PublicationDate>2012-06-01</ns2:PublicationDate>
41
+ <ns2:Publisher>中信出版社</ns2:Publisher>
42
+ <ns2:ReleaseDate>2012-06-10</ns2:ReleaseDate>
43
+ <ns2:SmallImage>
44
+ <ns2:URL>http://ec4.images-amazon.com/images/I/515NXC6iKtL._SL75_.jpg</ns2:URL>
45
+ <ns2:Height Units="pixels">75</ns2:Height>
46
+ <ns2:Width Units="pixels">51</ns2:Width>
47
+ </ns2:SmallImage>
48
+ <ns2:Studio>中信出版社</ns2:Studio>
49
+ <ns2:Title>我不要你死于一事无成:给女儿的17封告别信</ns2:Title>
50
+ </ns2:ItemAttributes>
51
+ </AttributeSets>
52
+ <Relationships/>
53
+ <SalesRankings>
54
+ <SalesRank>
55
+ <ProductCategoryId>book_display_on_website</ProductCategoryId>
56
+ <Rank>51</Rank>
57
+ </SalesRank>
58
+ <SalesRank>
59
+ <ProductCategoryId>2130609051</ProductCategoryId>
60
+ <Rank>6</Rank>
61
+ </SalesRank>
62
+ </SalesRankings>
63
+ </Product>
64
+ </GetMatchingProductResult>
65
+ <GetMatchingProductResult ASIN="B008ZAGES4" status="Success">
66
+ <Product xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01" xmlns:ns2="http://mws.amazonservices.com/schema/Products/2011-10-01/default.xsd">
67
+ <Identifiers>
68
+ <MarketplaceASIN>
69
+ <MarketplaceId>AAHKV2X7AFYLW</MarketplaceId>
70
+ <ASIN>B008ZAGES4</ASIN>
71
+ </MarketplaceASIN>
72
+ </Identifiers>
73
+ <AttributeSets>
74
+ <ns2:ItemAttributes xml:lang="zh-CN">
75
+ <ns2:Binding>电子出版物</ns2:Binding>
76
+ <ns2:Brand>Leicke 莱克</ns2:Brand>
77
+ <ns2:Color>红色</ns2:Color>
78
+ <ns2:Feature>方便、安全、抗震。</ns2:Feature>
79
+ <ns2:Feature>超薄先进设计。</ns2:Feature>
80
+ <ns2:Feature>手工边框压制,精准到位,体现完美品质。</ns2:Feature>
81
+ <ns2:Feature>表面光滑,手感舒适。四角扣位,防止机器滑落。</ns2:Feature>
82
+ <ns2:Feature>独特的“超纤”设计,具有呵护机身的作用。</ns2:Feature>
83
+ <ns2:Label>Leicke 莱克</ns2:Label>
84
+ <ns2:Manufacturer>Leicke 莱克</ns2:Manufacturer>
85
+ <ns2:PackageQuantity>1</ns2:PackageQuantity>
86
+ <ns2:ProductGroup>CE</ns2:ProductGroup>
87
+ <ns2:ProductTypeName>CONSUMER_ELECTRONICS</ns2:ProductTypeName>
88
+ <ns2:Publisher>Leicke 莱克</ns2:Publisher>
89
+ <ns2:Size>PU配米色线边</ns2:Size>
90
+ <ns2:SmallImage>
91
+ <ns2:URL>http://ec4.images-amazon.com/images/I/41lrTuxjIqL._SL75_.jpg</ns2:URL>
92
+ <ns2:Height Units="pixels">75</ns2:Height>
93
+ <ns2:Width Units="pixels">75</ns2:Width>
94
+ </ns2:SmallImage>
95
+ <ns2:Studio>Leicke 莱克</ns2:Studio>
96
+ <ns2:Title>Leicke 莱克 Manna iPhone 5 热定型皮套 红色疯马纹配米色线边 竖版</ns2:Title>
97
+ </ns2:ItemAttributes>
98
+ </AttributeSets>
99
+ <Relationships>
100
+ <VariationParent>
101
+ <Identifiers>
102
+ <MarketplaceASIN>
103
+ <MarketplaceId>AAHKV2X7AFYLW</MarketplaceId>
104
+ <ASIN>B008ZAGE1Q</ASIN>
105
+ </MarketplaceASIN>
106
+ </Identifiers>
107
+ </VariationParent>
108
+ </Relationships>
109
+ <SalesRankings/>
110
+ </Product>
111
+ </GetMatchingProductResult>
112
+ <ResponseMetadata>
113
+ <RequestId>7297006f-4652-4cae-81ac-988a863d4c4a</RequestId>
114
+ </ResponseMetadata>
115
+ </GetMatchingProductResponse>
@@ -0,0 +1,119 @@
1
+ <?xml version="1.0"?>
2
+ <GetMatchingProductForIdResponse xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01">
3
+ <GetMatchingProductForIdResult Id="B00828DQGM" IdType="ASIN" status="Success">
4
+ <Products xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01" xmlns:ns2="http://mws.amazonservices.com/schema/Products/2011-10-01/default.xsd">
5
+ <Product>
6
+ <Identifiers>
7
+ <MarketplaceASIN>
8
+ <MarketplaceId>AAHKV2X7AFYLW</MarketplaceId>
9
+ <ASIN>B00828DQGM</ASIN>
10
+ </MarketplaceASIN>
11
+ </Identifiers>
12
+ <AttributeSets>
13
+ <ns2:ItemAttributes xml:lang="zh-CN">
14
+ <ns2:Binding>平装</ns2:Binding>
15
+ <ns2:Brand>中信出版股份有限公司</ns2:Brand>
16
+ <ns2:Edition>第1版</ns2:Edition>
17
+ <ns2:Feature>蒋方舟倾力推荐,读完从头哭到尾,感人程度远远超过《灿烂千阳》。</ns2:Feature>
18
+ <ns2:Label>中信出版社</ns2:Label>
19
+ <ns2:Languages>
20
+ <ns2:Language>
21
+ <ns2:Name>unknown</ns2:Name>
22
+ </ns2:Language>
23
+ <ns2:Language>
24
+ <ns2:Name>chinese</ns2:Name>
25
+ </ns2:Language>
26
+ </ns2:Languages>
27
+ <ns2:ListPrice>
28
+ <ns2:Amount>28.00</ns2:Amount>
29
+ <ns2:CurrencyCode>CNY</ns2:CurrencyCode>
30
+ </ns2:ListPrice>
31
+ <ns2:Manufacturer>中信出版社</ns2:Manufacturer>
32
+ <ns2:NumberOfPages>320</ns2:NumberOfPages>
33
+ <ns2:PackageDimensions>
34
+ <ns2:Height Units="inches">0.70</ns2:Height>
35
+ <ns2:Length Units="inches">8.10</ns2:Length>
36
+ <ns2:Width Units="inches">5.70</ns2:Width>
37
+ <ns2:Weight Units="pounds">0.97</ns2:Weight>
38
+ </ns2:PackageDimensions>
39
+ <ns2:ProductGroup>Book</ns2:ProductGroup>
40
+ <ns2:ProductTypeName>ABIS_BOOK</ns2:ProductTypeName>
41
+ <ns2:PublicationDate>2012-06-01</ns2:PublicationDate>
42
+ <ns2:Publisher>中信出版社</ns2:Publisher>
43
+ <ns2:ReleaseDate>2012-06-10</ns2:ReleaseDate>
44
+ <ns2:SmallImage>
45
+ <ns2:URL>http://ec4.images-amazon.com/images/I/515NXC6iKtL._SL75_.jpg</ns2:URL>
46
+ <ns2:Height Units="pixels">75</ns2:Height>
47
+ <ns2:Width Units="pixels">51</ns2:Width>
48
+ </ns2:SmallImage>
49
+ <ns2:Studio>中信出版社</ns2:Studio>
50
+ <ns2:Title>我不要你死于一事无成:给女儿的17封告别信</ns2:Title>
51
+ </ns2:ItemAttributes>
52
+ </AttributeSets>
53
+ <Relationships/>
54
+ <SalesRankings>
55
+ <SalesRank>
56
+ <ProductCategoryId>book_display_on_website</ProductCategoryId>
57
+ <Rank>45</Rank>
58
+ </SalesRank>
59
+ <SalesRank>
60
+ <ProductCategoryId>2130609051</ProductCategoryId>
61
+ <Rank>5</Rank>
62
+ </SalesRank>
63
+ </SalesRankings>
64
+ </Product>
65
+ </Products>
66
+ </GetMatchingProductForIdResult>
67
+ <GetMatchingProductForIdResult Id="B008ZAGES4" IdType="ASIN" status="Success">
68
+ <Products xmlns="http://mws.amazonservices.com/schema/Products/2011-10-01" xmlns:ns2="http://mws.amazonservices.com/schema/Products/2011-10-01/default.xsd">
69
+ <Product>
70
+ <Identifiers>
71
+ <MarketplaceASIN>
72
+ <MarketplaceId>AAHKV2X7AFYLW</MarketplaceId>
73
+ <ASIN>B008ZAGES4</ASIN>
74
+ </MarketplaceASIN>
75
+ </Identifiers>
76
+ <AttributeSets>
77
+ <ns2:ItemAttributes xml:lang="zh-CN">
78
+ <ns2:Binding>电子出版物</ns2:Binding>
79
+ <ns2:Brand>Leicke 莱克</ns2:Brand>
80
+ <ns2:Color>红色</ns2:Color>
81
+ <ns2:Feature>方便、安全、抗震。</ns2:Feature>
82
+ <ns2:Feature>超薄先进设计。</ns2:Feature>
83
+ <ns2:Feature>手工边框压制,精准到位,体现完美品质。</ns2:Feature>
84
+ <ns2:Feature>表面光滑,手感舒适。四角扣位,防止机器滑落。</ns2:Feature>
85
+ <ns2:Feature>独特的“超纤”设计,具有呵护机身的作用。</ns2:Feature>
86
+ <ns2:Label>Leicke 莱克</ns2:Label>
87
+ <ns2:Manufacturer>Leicke 莱克</ns2:Manufacturer>
88
+ <ns2:PackageQuantity>1</ns2:PackageQuantity>
89
+ <ns2:ProductGroup>CE</ns2:ProductGroup>
90
+ <ns2:ProductTypeName>CONSUMER_ELECTRONICS</ns2:ProductTypeName>
91
+ <ns2:Publisher>Leicke 莱克</ns2:Publisher>
92
+ <ns2:Size>PU配米色线边</ns2:Size>
93
+ <ns2:SmallImage>
94
+ <ns2:URL>http://ec4.images-amazon.com/images/I/41lrTuxjIqL._SL75_.jpg</ns2:URL>
95
+ <ns2:Height Units="pixels">75</ns2:Height>
96
+ <ns2:Width Units="pixels">75</ns2:Width>
97
+ </ns2:SmallImage>
98
+ <ns2:Studio>Leicke 莱克</ns2:Studio>
99
+ <ns2:Title>Leicke 莱克 Manna iPhone 5 热定型皮套 红色疯马纹配米色线边 竖版</ns2:Title>
100
+ </ns2:ItemAttributes>
101
+ </AttributeSets>
102
+ <Relationships>
103
+ <VariationParent>
104
+ <Identifiers>
105
+ <MarketplaceASIN>
106
+ <MarketplaceId>AAHKV2X7AFYLW</MarketplaceId>
107
+ <ASIN>B008ZAGE1Q</ASIN>
108
+ </MarketplaceASIN>
109
+ </Identifiers>
110
+ </VariationParent>
111
+ </Relationships>
112
+ <SalesRankings/>
113
+ </Product>
114
+ </Products>
115
+ </GetMatchingProductForIdResult>
116
+ <ResponseMetadata>
117
+ <RequestId>3562eaad-287e-4f79-9b74-3a563b900ea6</RequestId>
118
+ </ResponseMetadata>
119
+ </GetMatchingProductForIdResponse>
@@ -0,0 +1,237 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
3
+ <Header>
4
+ <DocumentVersion>1.01</DocumentVersion>
5
+ <MerchantIdentifier>M_DJFJSDK_324345</MerchantIdentifier>
6
+ </Header>
7
+ <MessageType>OrderReport</MessageType>
8
+ <Message>
9
+ <MessageID>1</MessageID>
10
+ <OrderReport>
11
+ <AmazonOrderID>134-5223438-49234234</AmazonOrderID>
12
+ <AmazonSessionID>123-2343428-4234235</AmazonSessionID>
13
+ <OrderDate>2012-03-28T05:08:03-07:00</OrderDate>
14
+ <OrderPostedDate>2012-03-28T05:08:03-07:00</OrderPostedDate>
15
+ <BillingData>
16
+ <BuyerEmailAddress>01k234343@marketplace.amazon.com</BuyerEmailAddress>
17
+ <BuyerName>Joe Smith</BuyerName>
18
+ <BuyerPhoneNumber>55555555555</BuyerPhoneNumber>
19
+ </BillingData>
20
+ <FulfillmentData>
21
+ <FulfillmentMethod>Ship</FulfillmentMethod>
22
+ <FulfillmentServiceLevel>Standard</FulfillmentServiceLevel>
23
+ <Address>
24
+ <Name>Joe Smith</Name>
25
+ <AddressFieldOne>234 Main St</AddressFieldOne>
26
+ <City>BROOKLYN</City>
27
+ <StateOrRegion>NEW YORK</StateOrRegion>
28
+ <PostalCode>12234-6543</PostalCode>
29
+ <CountryCode>US</CountryCode>
30
+ <PhoneNumber>76543454</PhoneNumber>
31
+ </Address>
32
+ </FulfillmentData>
33
+ <Item>
34
+ <AmazonOrderItemCode>345345435454345</AmazonOrderItemCode>
35
+ <SKU>3453454-345-M</SKU>
36
+ <Title>Hand Warmer Black, M</Title>
37
+ <CustomizationInfo>
38
+ <Type>Condition</Type>
39
+ <Data>new</Data>
40
+ </CustomizationInfo>
41
+ <CustomizationInfo>
42
+ <Type>ConditionType</Type>
43
+ <Data>new</Data>
44
+ </CustomizationInfo>
45
+ <CustomizationInfo>
46
+ <Type>url</Type>
47
+ <Data>http://www.amazon.com</Data>
48
+ </CustomizationInfo>
49
+ <CustomizationInfo>
50
+ <Type>CompoundTitle</Type>
51
+ <Data>Hand Warmer Black</Data>
52
+ </CustomizationInfo>
53
+ <CustomizationInfo>
54
+ <Type>DateListed</Type>
55
+ <Data>2010-08-21T16:48:41+00:00</Data>
56
+ </CustomizationInfo>
57
+ <CustomizationInfo>
58
+ <Type>ListingID</Type>
59
+ <Data>122asdfdsYV</Data>
60
+ </CustomizationInfo>
61
+ <CustomizationInfo>
62
+ <Type>UPC</Type>
63
+ <Data>7753425234543</Data>
64
+ </CustomizationInfo>
65
+ <CustomizationInfo>
66
+ <Type>MarketplaceID</Type>
67
+ <Data>ATASDFSADFDER</Data>
68
+ </CustomizationInfo>
69
+ <Quantity>1</Quantity>
70
+ <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
71
+ <ItemPrice>
72
+ <Component>
73
+ <Type>Principal</Type>
74
+ <Amount currency="USD">121.99</Amount>
75
+ </Component>
76
+ <Component>
77
+ <Type>Shipping</Type>
78
+ <Amount currency="USD">0.00</Amount>
79
+ </Component>
80
+ <Component>
81
+ <Type>Tax</Type>
82
+ <Amount currency="USD">0.00</Amount>
83
+ </Component>
84
+ <Component>
85
+ <Type>ShippingTax</Type>
86
+ <Amount currency="USD">0.00</Amount>
87
+ </Component>
88
+ </ItemPrice>
89
+ <ItemFees>
90
+ <Fee>
91
+ <Type>Commission</Type>
92
+ <Amount currency="USD">-13.30</Amount>
93
+ </Fee>
94
+ </ItemFees>
95
+ <ItemTaxData>
96
+ <TaxJurisdictions>
97
+ <TaxLocationCode>330472010</TaxLocationCode>
98
+ <City>KLONDIKE</City>
99
+ <County>NOT APPLICABLE</County>
100
+ <State>NJ</State>
101
+ </TaxJurisdictions>
102
+ <TaxableAmounts>
103
+ <District currency="USD">0.00</District>
104
+ <City currency="USD">0.00</City>
105
+ <County currency="USD">0.00</County>
106
+ <State currency="USD">0.00</State>
107
+ </TaxableAmounts>
108
+ <NonTaxableAmounts>
109
+ <District currency="USD">121.99</District>
110
+ <City currency="USD">121.99</City>
111
+ <County currency="USD">0.00</County>
112
+ <State currency="USD">121.99</State>
113
+ </NonTaxableAmounts>
114
+ <ZeroRatedAmounts>
115
+ <District currency="USD">0.00</District>
116
+ <City currency="USD">0.00</City>
117
+ <County currency="USD">121.99</County>
118
+ <State currency="USD">0.00</State>
119
+ </ZeroRatedAmounts>
120
+ <TaxCollectedAmounts>
121
+ <District currency="USD">0.00</District>
122
+ <City currency="USD">0.00</City>
123
+ <County currency="USD">0.00</County>
124
+ <State currency="USD">0.00</State>
125
+ </TaxCollectedAmounts>
126
+ <TaxRates>
127
+ <District>0.0000</District>
128
+ <City>0.0000</City>
129
+ <County>0.0000</County>
130
+ <State>0.0000</State>
131
+ </TaxRates>
132
+ </ItemTaxData>
133
+ </Item>
134
+ <Item>
135
+ <AmazonOrderItemCode>33468359097962</AmazonOrderItemCode>
136
+ <SKU>1234341-256-S</SKU>
137
+ <Title>Arm warmer black, M</Title>
138
+ <CustomizationInfo>
139
+ <Type>Condition</Type>
140
+ <Data>new</Data>
141
+ </CustomizationInfo>
142
+ <CustomizationInfo>
143
+ <Type>ConditionType</Type>
144
+ <Data>new</Data>
145
+ </CustomizationInfo>
146
+ <CustomizationInfo>
147
+ <Type>url</Type>
148
+ <Data>http://www.amazon.com</Data>
149
+ </CustomizationInfo>
150
+ <CustomizationInfo>
151
+ <Type>CompoundTitle</Type>
152
+ <Data>Arm Warmer Black, M</Data>
153
+ </CustomizationInfo>
154
+ <CustomizationInfo>
155
+ <Type>DateListed</Type>
156
+ <Data>2012-01-23T16:49:12+00:00</Data>
157
+ </CustomizationInfo>
158
+ <CustomizationInfo>
159
+ <Type>ListingID</Type>
160
+ <Data>122223434323434C</Data>
161
+ </CustomizationInfo>
162
+ <CustomizationInfo>
163
+ <Type>UPC</Type>
164
+ <Data>77234324324</Data>
165
+ </CustomizationInfo>
166
+ <CustomizationInfo>
167
+ <Type>MarketplaceID</Type>
168
+ <Data>ATVPASDFASDFER</Data>
169
+ </CustomizationInfo>
170
+ <Quantity>1</Quantity>
171
+ <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
172
+ <ItemPrice>
173
+ <Component>
174
+ <Type>Principal</Type>
175
+ <Amount currency="USD">121.91</Amount>
176
+ </Component>
177
+ <Component>
178
+ <Type>Shipping</Type>
179
+ <Amount currency="USD">0.00</Amount>
180
+ </Component>
181
+ <Component>
182
+ <Type>Tax</Type>
183
+ <Amount currency="USD">0.00</Amount>
184
+ </Component>
185
+ <Component>
186
+ <Type>ShippingTax</Type>
187
+ <Amount currency="USD">0.00</Amount>
188
+ </Component>
189
+ </ItemPrice>
190
+ <ItemFees>
191
+ <Fee>
192
+ <Type>Commission</Type>
193
+ <Amount currency="USD">-13.29</Amount>
194
+ </Fee>
195
+ </ItemFees>
196
+ <ItemTaxData>
197
+ <TaxJurisdictions>
198
+ <TaxLocationCode>123432434</TaxLocationCode>
199
+ <City>KLONDIKE</City>
200
+ <County>NOT APPLICABLE</County>
201
+ <State>NJ</State>
202
+ </TaxJurisdictions>
203
+ <TaxableAmounts>
204
+ <District currency="USD">0.00</District>
205
+ <City currency="USD">0.00</City>
206
+ <County currency="USD">0.00</County>
207
+ <State currency="USD">0.00</State>
208
+ </TaxableAmounts>
209
+ <NonTaxableAmounts>
210
+ <District currency="USD">121.91</District>
211
+ <City currency="USD">121.91</City>
212
+ <County currency="USD">0.00</County>
213
+ <State currency="USD">121.91</State>
214
+ </NonTaxableAmounts>
215
+ <ZeroRatedAmounts>
216
+ <District currency="USD">0.00</District>
217
+ <City currency="USD">0.00</City>
218
+ <County currency="USD">121.91</County>
219
+ <State currency="USD">0.00</State>
220
+ </ZeroRatedAmounts>
221
+ <TaxCollectedAmounts>
222
+ <District currency="USD">0.00</District>
223
+ <City currency="USD">0.00</City>
224
+ <County currency="USD">0.00</County>
225
+ <State currency="USD">0.00</State>
226
+ </TaxCollectedAmounts>
227
+ <TaxRates>
228
+ <District>0.0000</District>
229
+ <City>0.0000</City>
230
+ <County>0.0000</County>
231
+ <State>0.0000</State>
232
+ </TaxRates>
233
+ </ItemTaxData>
234
+ </Item>
235
+ </OrderReport>
236
+ </Message>
237
+ </AmazonEnvelope>