channeladvisor 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (205) hide show
  1. data/.gitignore +7 -0
  2. data/.rspec +2 -0
  3. data/.travis.yml +6 -0
  4. data/.yardopts +8 -0
  5. data/Gemfile +31 -0
  6. data/Guardfile +28 -0
  7. data/LICENSE +19 -0
  8. data/README.md +40 -0
  9. data/Rakefile +69 -0
  10. data/channeladvisor.gemspec +29 -0
  11. data/lib/channeladvisor.rb +27 -0
  12. data/lib/channeladvisor/account_authorization.rb +14 -0
  13. data/lib/channeladvisor/address.rb +39 -0
  14. data/lib/channeladvisor/admin.rb +75 -0
  15. data/lib/channeladvisor/base.rb +34 -0
  16. data/lib/channeladvisor/client.rb +3 -0
  17. data/lib/channeladvisor/configuration.rb +11 -0
  18. data/lib/channeladvisor/error.rb +30 -0
  19. data/lib/channeladvisor/line_item.rb +38 -0
  20. data/lib/channeladvisor/order.rb +179 -0
  21. data/lib/channeladvisor/order_status.rb +14 -0
  22. data/lib/channeladvisor/payment.rb +15 -0
  23. data/lib/channeladvisor/services.rb +11 -0
  24. data/lib/channeladvisor/services/admin_service.rb +47 -0
  25. data/lib/channeladvisor/services/base_service.rb +26 -0
  26. data/lib/channeladvisor/services/inventory_service.rb +90 -0
  27. data/lib/channeladvisor/services/order_service.rb +117 -0
  28. data/lib/channeladvisor/services/shipping_service.rb +164 -0
  29. data/lib/channeladvisor/shipment.rb +71 -0
  30. data/lib/channeladvisor/shopping_cart.rb +26 -0
  31. data/lib/channeladvisor/version.rb +3 -0
  32. data/spec/fixtures/requests/admin_service/get_authorization_list.xml +1 -0
  33. data/spec/fixtures/requests/admin_service/get_authorization_list_with_local_id.xml +1 -0
  34. data/spec/fixtures/requests/admin_service/ping.xml +1 -0
  35. data/spec/fixtures/requests/admin_service/request_access.xml +1 -0
  36. data/spec/fixtures/requests/inventory_service/ping.xml +1 -0
  37. data/spec/fixtures/requests/inventory_service/update_inventory_item_quantity_and_price_list/with_one_item/price_only.xml +1 -0
  38. data/spec/fixtures/requests/inventory_service/update_inventory_item_quantity_and_price_list/with_one_item/quantity_and_price.xml +1 -0
  39. data/spec/fixtures/requests/inventory_service/update_inventory_item_quantity_and_price_list/with_one_item/quantity_only.xml +1 -0
  40. data/spec/fixtures/requests/inventory_service/update_inventory_item_quantity_and_price_list/with_two_items/price_only.xml +1 -0
  41. data/spec/fixtures/requests/inventory_service/update_inventory_item_quantity_and_price_list/with_two_items/quantity_and_price.xml +1 -0
  42. data/spec/fixtures/requests/inventory_service/update_inventory_item_quantity_and_price_list/with_two_items/quantity_only.xml +1 -0
  43. data/spec/fixtures/requests/inventory_service/update_item_price.xml +1 -0
  44. data/spec/fixtures/requests/inventory_service/update_item_quantity.xml +1 -0
  45. data/spec/fixtures/requests/inventory_service/update_item_quantity_and_price.xml +1 -0
  46. data/spec/fixtures/requests/order_service/get_order_list/with_checkout_status_filter.xml +1 -0
  47. data/spec/fixtures/requests/order_service/get_order_list/with_created_from_date.xml +1 -0
  48. data/spec/fixtures/requests/order_service/get_order_list/with_created_to_date.xml +1 -0
  49. data/spec/fixtures/requests/order_service/get_order_list/with_detail_level.xml +1 -0
  50. data/spec/fixtures/requests/order_service/get_order_list/with_distribution_center_code.xml +1 -0
  51. data/spec/fixtures/requests/order_service/get_order_list/with_export_state.xml +1 -0
  52. data/spec/fixtures/requests/order_service/get_order_list/with_join_dates.xml +1 -0
  53. data/spec/fixtures/requests/order_service/get_order_list/with_one_client_order_id.xml +1 -0
  54. data/spec/fixtures/requests/order_service/get_order_list/with_one_order_id.xml +1 -0
  55. data/spec/fixtures/requests/order_service/get_order_list/with_order_state_filter.xml +1 -0
  56. data/spec/fixtures/requests/order_service/get_order_list/with_page_number_filter.xml +1 -0
  57. data/spec/fixtures/requests/order_service/get_order_list/with_page_size.xml +1 -0
  58. data/spec/fixtures/requests/order_service/get_order_list/with_payment_status_filter.xml +1 -0
  59. data/spec/fixtures/requests/order_service/get_order_list/with_refund_status_filter.xml +1 -0
  60. data/spec/fixtures/requests/order_service/get_order_list/with_shipping_status_filter.xml +1 -0
  61. data/spec/fixtures/requests/order_service/get_order_list/with_two_client_order_ids.xml +1 -0
  62. data/spec/fixtures/requests/order_service/get_order_list/with_two_order_ids.xml +1 -0
  63. data/spec/fixtures/requests/order_service/get_order_list/with_updated_from_date.xml +1 -0
  64. data/spec/fixtures/requests/order_service/get_order_list/with_updated_to_date.xml +1 -0
  65. data/spec/fixtures/requests/order_service/get_order_list/without_order_criteria.xml +1 -0
  66. data/spec/fixtures/requests/order_service/ping.xml +1 -0
  67. data/spec/fixtures/requests/order_service/set_orders_export_status/with_one_client_order_id.xml +1 -0
  68. data/spec/fixtures/requests/order_service/set_orders_export_status/with_two_client_order_ids.xml +1 -0
  69. data/spec/fixtures/requests/shipping_service/get_shipping_carrier_list.xml +1 -0
  70. data/spec/fixtures/requests/shipping_service/ping.xml +1 -0
  71. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/full_shipment/with_one_shipment.xml +1 -0
  72. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/full_shipment/with_two_shipments.xml +1 -0
  73. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/full_shipment/without_carrier_code.xml +1 -0
  74. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/full_shipment/without_class_code.xml +1 -0
  75. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/full_shipment/without_client_order_id.xml +1 -0
  76. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/full_shipment/without_seller_id.xml +1 -0
  77. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/full_shipment/without_tracking_number.xml +1 -0
  78. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/partial_shipment/with_one_line_item.xml +1 -0
  79. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/partial_shipment/with_two_line_items.xml +1 -0
  80. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/partial_shipment/with_two_shipments.xml +1 -0
  81. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/partial_shipment/without_carrier_code.xml +1 -0
  82. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/partial_shipment/without_class_code.xml +1 -0
  83. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/partial_shipment/without_seller_id.xml +1 -0
  84. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/partial_shipment/without_tracking_number.xml +1 -0
  85. data/spec/fixtures/requests/shipping_service/submit_order_shipment_list/with_partial_and_full_shipments.xml +1 -0
  86. data/spec/fixtures/responses/admin/get_authorization_list/failure.yml +50 -0
  87. data/spec/fixtures/responses/admin/get_authorization_list/no_authorizations.yml +49 -0
  88. data/spec/fixtures/responses/admin/get_authorization_list/one_authorization.yml +49 -0
  89. data/spec/fixtures/responses/admin/get_authorization_list/success.yml +49 -0
  90. data/spec/fixtures/responses/admin/get_authorization_list/two_authorizations.yml +49 -0
  91. data/spec/fixtures/responses/admin/ping/failure.yml +50 -0
  92. data/spec/fixtures/responses/admin/ping/success.yml +218 -0
  93. data/spec/fixtures/responses/admin/request_access/failure.yml +50 -0
  94. data/spec/fixtures/responses/admin/request_access/success.yml +49 -0
  95. data/spec/fixtures/responses/admin_service/get_authorization_list/with_invalid_local_id.yml +219 -0
  96. data/spec/fixtures/responses/admin_service/get_authorization_list/with_local_id/success.yml +218 -0
  97. data/spec/fixtures/responses/admin_service/get_authorization_list/with_valid_local_id/multiple_authorizations.yml +49 -0
  98. data/spec/fixtures/responses/admin_service/get_authorization_list/with_valid_local_id/no_authorizations.yml +49 -0
  99. data/spec/fixtures/responses/admin_service/get_authorization_list/with_valid_local_id/one_authorization.yml +49 -0
  100. data/spec/fixtures/responses/admin_service/get_authorization_list/with_valid_local_id/success.yml +218 -0
  101. data/spec/fixtures/responses/admin_service/get_authorization_list/without_local_id/multiple_authorizations.yml +49 -0
  102. data/spec/fixtures/responses/admin_service/get_authorization_list/without_local_id/no_authorizations.yml +49 -0
  103. data/spec/fixtures/responses/admin_service/get_authorization_list/without_local_id/one_authorization.yml +49 -0
  104. data/spec/fixtures/responses/admin_service/get_authorization_list/without_local_id/success.yml +218 -0
  105. data/spec/fixtures/responses/admin_service/ping/failure.yml +222 -0
  106. data/spec/fixtures/responses/admin_service/ping/success.yml +218 -0
  107. data/spec/fixtures/responses/admin_service/request_access/failure.yml +219 -0
  108. data/spec/fixtures/responses/admin_service/request_access/success.yml +218 -0
  109. data/spec/fixtures/responses/http_error.yml +48 -0
  110. data/spec/fixtures/responses/inventory_service/ping.yml +1356 -0
  111. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price.yml +1356 -0
  112. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price/price_only.yml +144 -0
  113. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price/quantity_and_price.yml +191 -0
  114. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price/quantity_only.yml +1403 -0
  115. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price_list.yml +243 -0
  116. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price_list/with_one_item/price_only.yml +97 -0
  117. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price_list/with_one_item/quantity_and_price.yml +144 -0
  118. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price_list/with_one_item/quantity_only.yml +51 -0
  119. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price_list/with_two_items/price_only.yml +238 -0
  120. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price_list/with_two_items/quantity_and_price.yml +285 -0
  121. data/spec/fixtures/responses/inventory_service/update_inventory_item_quantity_and_price_list/with_two_items/quantity_only.yml +191 -0
  122. data/spec/fixtures/responses/order/instance_set_export_status.yml +51 -0
  123. data/spec/fixtures/responses/order/instance_set_export_status/failure.yml +51 -0
  124. data/spec/fixtures/responses/order/instance_set_export_status/success/result_false.yml +51 -0
  125. data/spec/fixtures/responses/order/instance_set_export_status/success/result_true.yml +51 -0
  126. data/spec/fixtures/responses/order/list.yml +58 -0
  127. data/spec/fixtures/responses/order/list/failure.yml +56 -0
  128. data/spec/fixtures/responses/order/list/no_matching_orders.yml +56 -0
  129. data/spec/fixtures/responses/order/list/one_matching_order.yml +57 -0
  130. data/spec/fixtures/responses/order/list/two_matching_orders.yml +59 -0
  131. data/spec/fixtures/responses/order/list/with_criteria.yml +52 -0
  132. data/spec/fixtures/responses/order/list/with_no_criteria.yml +58 -0
  133. data/spec/fixtures/responses/order/ping.yml +868 -0
  134. data/spec/fixtures/responses/order/ping/failure.yml +50 -0
  135. data/spec/fixtures/responses/order/ping/success.yml +867 -0
  136. data/spec/fixtures/responses/order/set_export_status/failure.yml +51 -0
  137. data/spec/fixtures/responses/order/set_export_status/success/with_one_client_order_id.yml +51 -0
  138. data/spec/fixtures/responses/order/set_export_status/success/with_two_client_order_ids.yml +51 -0
  139. data/spec/fixtures/responses/order_service/get_order_list/.gitkeep +0 -0
  140. data/spec/fixtures/responses/order_service/get_order_list/with_checkout_status_filter.yml +875 -0
  141. data/spec/fixtures/responses/order_service/get_order_list/with_created_from_date.yml +874 -0
  142. data/spec/fixtures/responses/order_service/get_order_list/with_created_to_date.yml +874 -0
  143. data/spec/fixtures/responses/order_service/get_order_list/with_detail_level.yml +875 -0
  144. data/spec/fixtures/responses/order_service/get_order_list/with_distribution_center_code.yml +872 -0
  145. data/spec/fixtures/responses/order_service/get_order_list/with_export_state.yml +875 -0
  146. data/spec/fixtures/responses/order_service/get_order_list/with_join_dates.yml +869 -0
  147. data/spec/fixtures/responses/order_service/get_order_list/with_one_client_order_id.yml +872 -0
  148. data/spec/fixtures/responses/order_service/get_order_list/with_one_order_id.yml +873 -0
  149. data/spec/fixtures/responses/order_service/get_order_list/with_order_state_filter.yml +875 -0
  150. data/spec/fixtures/responses/order_service/get_order_list/with_page_number_filter.yml +875 -0
  151. data/spec/fixtures/responses/order_service/get_order_list/with_page_size.yml +874 -0
  152. data/spec/fixtures/responses/order_service/get_order_list/with_payment_status_filter.yml +875 -0
  153. data/spec/fixtures/responses/order_service/get_order_list/with_refund_status_filter.yml +875 -0
  154. data/spec/fixtures/responses/order_service/get_order_list/with_shipping_status_filter.yml +875 -0
  155. data/spec/fixtures/responses/order_service/get_order_list/with_two_client_order_ids.yml +872 -0
  156. data/spec/fixtures/responses/order_service/get_order_list/with_two_order_ids.yml +875 -0
  157. data/spec/fixtures/responses/order_service/get_order_list/with_updated_from_date.yml +874 -0
  158. data/spec/fixtures/responses/order_service/get_order_list/with_updated_to_date.yml +874 -0
  159. data/spec/fixtures/responses/order_service/get_order_list/without_order_criteria.yml +871 -0
  160. data/spec/fixtures/responses/order_service/get_order_refund_history/.gitkeep +0 -0
  161. data/spec/fixtures/responses/order_service/order_merge/.gitkeep +0 -0
  162. data/spec/fixtures/responses/order_service/order_split/.gitkeep +0 -0
  163. data/spec/fixtures/responses/order_service/ping/.gitkeep +0 -0
  164. data/spec/fixtures/responses/order_service/ping/failure.yml +871 -0
  165. data/spec/fixtures/responses/order_service/ping/success.yml +868 -0
  166. data/spec/fixtures/responses/order_service/set_orders_export_status/with_one_client_order_id.yml +867 -0
  167. data/spec/fixtures/responses/order_service/set_orders_export_status/with_two_client_order_id.yml +867 -0
  168. data/spec/fixtures/responses/order_service/set_seller_order_id/.gitkeep +0 -0
  169. data/spec/fixtures/responses/order_service/set_seller_order_item_id_list/.gitkeep +0 -0
  170. data/spec/fixtures/responses/order_service/submit_order/.gitkeep +0 -0
  171. data/spec/fixtures/responses/order_service/submit_order_refund/.gitkeep +0 -0
  172. data/spec/fixtures/responses/order_service/update_order_list/.gitkeep +0 -0
  173. data/spec/fixtures/responses/shipment/get_carriers.yml +53 -0
  174. data/spec/fixtures/responses/shipment/get_carriers/failure.yml +52 -0
  175. data/spec/fixtures/responses/shipment/submit.yml +464 -0
  176. data/spec/fixtures/responses/shipment/submit/failure.yml +462 -0
  177. data/spec/fixtures/responses/shipment/submit/one_shipment.yml +464 -0
  178. data/spec/fixtures/responses/shipment/submit/two_shipments.yml +56 -0
  179. data/spec/fixtures/responses/shipping_service/get_shipping_carrier_list.yml +953 -0
  180. data/spec/fixtures/responses/shipping_service/ping/failure.yml +55 -0
  181. data/spec/fixtures/responses/shipping_service/ping/success.yml +460 -0
  182. data/spec/fixtures/responses/shipping_service/submit_order_shipment_list.yml +55 -0
  183. data/spec/fixtures/responses/soap_fault.yml +53 -0
  184. data/spec/lib/channeladvisor/address_spec.rb +107 -0
  185. data/spec/lib/channeladvisor/admin_spec.rb +216 -0
  186. data/spec/lib/channeladvisor/line_item_spec.rb +147 -0
  187. data/spec/lib/channeladvisor/order_spec.rb +623 -0
  188. data/spec/lib/channeladvisor/order_status_spec.rb +36 -0
  189. data/spec/lib/channeladvisor/payment_spec.rb +38 -0
  190. data/spec/lib/channeladvisor/services/admin_service_spec.rb +65 -0
  191. data/spec/lib/channeladvisor/services/base_service_spec.rb +11 -0
  192. data/spec/lib/channeladvisor/services/inventory_service_spec.rb +214 -0
  193. data/spec/lib/channeladvisor/services/order_service_spec.rb +267 -0
  194. data/spec/lib/channeladvisor/services/shipping_service_spec.rb +288 -0
  195. data/spec/lib/channeladvisor/shipment_spec.rb +257 -0
  196. data/spec/lib/channeladvisor/shopping_cart_spec.rb +173 -0
  197. data/spec/lib/channeladvisor_spec.rb +18 -0
  198. data/spec/spec_helper.rb +29 -0
  199. data/spec/support/credentials.rb +15 -0
  200. data/spec/support/matchers/boolean.rb +17 -0
  201. data/spec/support/matchers/markup.rb +50 -0
  202. data/spec/support/rr.rb +38 -0
  203. data/spec/support/shared_examples.rb +4 -0
  204. data/spec/support/vcr.rb +38 -0
  205. metadata +501 -0
@@ -0,0 +1,144 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
6
+ body:
7
+ encoding: US-ASCII
8
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
10
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:PriceInfo><ins0:Cost>2.99</ins0:Cost><ins0:RetailPrice>11.99</ins0:RetailPrice><ins0:StartingPrice>5.99</ins0:StartingPrice><ins0:ReservePrice>7.99</ins0:ReservePrice><ins0:TakeItPrice>9.99</ins0:TakeItPrice><ins0:SecondChanceOfferPrice>8.99</ins0:SecondChanceOfferPrice><ins0:StorePrice>9.49</ins0:StorePrice></ins0:PriceInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
11
+ headers:
12
+ soapaction:
13
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
14
+ content-type:
15
+ - text/xml;charset=UTF-8
16
+ content-length:
17
+ - '1105'
18
+ accept:
19
+ - ! '*/*'
20
+ user-agent:
21
+ - Ruby
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ date:
28
+ - Fri, 15 Jun 2012 05:02:07 GMT
29
+ server:
30
+ - Microsoft-IIS/6.0
31
+ x-servername:
32
+ - RDU-IISWEB-03
33
+ x-powered-by:
34
+ - ASP.NET
35
+ x-aspnet-version:
36
+ - 4.0.30319
37
+ cache-control:
38
+ - private, max-age=0
39
+ content-type:
40
+ - text/xml; charset=utf-8
41
+ content-length:
42
+ - '556'
43
+ body:
44
+ encoding: US-ASCII
45
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
46
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
47
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
48
+ http_version: '1.1'
49
+ recorded_at: Fri, 15 Jun 2012 05:02:02 GMT
50
+ - request:
51
+ method: post
52
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
53
+ body:
54
+ encoding: US-ASCII
55
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
56
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
57
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:PriceInfo><ins0:Cost>2.99</ins0:Cost><ins0:RetailPrice>11.99</ins0:RetailPrice><ins0:StartingPrice>5.99</ins0:StartingPrice><ins0:ReservePrice>7.99</ins0:ReservePrice><ins0:TakeItPrice>9.99</ins0:TakeItPrice><ins0:SecondChanceOfferPrice>8.99</ins0:SecondChanceOfferPrice><ins0:StorePrice>9.49</ins0:StorePrice></ins0:PriceInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
58
+ headers:
59
+ soapaction:
60
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
61
+ content-type:
62
+ - text/xml;charset=UTF-8
63
+ content-length:
64
+ - '1105'
65
+ accept:
66
+ - ! '*/*'
67
+ user-agent:
68
+ - Ruby
69
+ response:
70
+ status:
71
+ code: 200
72
+ message: OK
73
+ headers:
74
+ date:
75
+ - Fri, 15 Jun 2012 05:02:03 GMT
76
+ server:
77
+ - Microsoft-IIS/6.0
78
+ x-servername:
79
+ - RDU-IISWEB-11
80
+ x-powered-by:
81
+ - ASP.NET
82
+ x-aspnet-version:
83
+ - 4.0.30319
84
+ cache-control:
85
+ - private, max-age=0
86
+ content-type:
87
+ - text/xml; charset=utf-8
88
+ content-length:
89
+ - '556'
90
+ body:
91
+ encoding: US-ASCII
92
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
93
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
94
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
95
+ http_version: '1.1'
96
+ recorded_at: Fri, 15 Jun 2012 05:02:03 GMT
97
+ - request:
98
+ method: post
99
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
100
+ body:
101
+ encoding: US-ASCII
102
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
103
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
104
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:PriceInfo><ins0:Cost>2.99</ins0:Cost><ins0:RetailPrice>11.99</ins0:RetailPrice><ins0:StartingPrice>5.99</ins0:StartingPrice><ins0:ReservePrice>7.99</ins0:ReservePrice><ins0:TakeItPrice>9.99</ins0:TakeItPrice><ins0:SecondChanceOfferPrice>8.99</ins0:SecondChanceOfferPrice><ins0:StorePrice>9.49</ins0:StorePrice></ins0:PriceInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
105
+ headers:
106
+ soapaction:
107
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
108
+ content-type:
109
+ - text/xml;charset=UTF-8
110
+ content-length:
111
+ - '1105'
112
+ accept:
113
+ - ! '*/*'
114
+ user-agent:
115
+ - Ruby
116
+ response:
117
+ status:
118
+ code: 200
119
+ message: OK
120
+ headers:
121
+ date:
122
+ - Fri, 15 Jun 2012 05:02:04 GMT
123
+ server:
124
+ - Microsoft-IIS/6.0
125
+ x-servername:
126
+ - RDU-IISWEB-06
127
+ x-powered-by:
128
+ - ASP.NET
129
+ x-aspnet-version:
130
+ - 4.0.30319
131
+ cache-control:
132
+ - private, max-age=0
133
+ content-type:
134
+ - text/xml; charset=utf-8
135
+ content-length:
136
+ - '556'
137
+ body:
138
+ encoding: US-ASCII
139
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
140
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
141
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
142
+ http_version: '1.1'
143
+ recorded_at: Fri, 15 Jun 2012 05:02:04 GMT
144
+ recorded_with: VCR 2.2.0
@@ -0,0 +1,191 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
6
+ body:
7
+ encoding: US-ASCII
8
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
10
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:QuantityInfo><ins0:UpdateType>Absolute</ins0:UpdateType><ins0:Total>5000</ins0:Total></ins0:QuantityInfo><ins0:PriceInfo><ins0:Cost>2.99</ins0:Cost><ins0:RetailPrice>11.99</ins0:RetailPrice><ins0:StartingPrice>5.99</ins0:StartingPrice><ins0:ReservePrice>7.99</ins0:ReservePrice><ins0:TakeItPrice>9.99</ins0:TakeItPrice><ins0:SecondChanceOfferPrice>8.99</ins0:SecondChanceOfferPrice><ins0:StorePrice>9.49</ins0:StorePrice></ins0:PriceInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
11
+ headers:
12
+ soapaction:
13
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
14
+ content-type:
15
+ - text/xml;charset=UTF-8
16
+ content-length:
17
+ - '1216'
18
+ accept:
19
+ - ! '*/*'
20
+ user-agent:
21
+ - Ruby
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ date:
28
+ - Fri, 15 Jun 2012 05:02:05 GMT
29
+ server:
30
+ - Microsoft-IIS/6.0
31
+ x-servername:
32
+ - RDU-IISWEB-06
33
+ x-powered-by:
34
+ - ASP.NET
35
+ x-aspnet-version:
36
+ - 4.0.30319
37
+ cache-control:
38
+ - private, max-age=0
39
+ content-type:
40
+ - text/xml; charset=utf-8
41
+ content-length:
42
+ - '556'
43
+ body:
44
+ encoding: US-ASCII
45
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
46
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
47
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
48
+ http_version: '1.1'
49
+ recorded_at: Fri, 15 Jun 2012 05:02:05 GMT
50
+ - request:
51
+ method: post
52
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
53
+ body:
54
+ encoding: US-ASCII
55
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
56
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
57
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:QuantityInfo><ins0:UpdateType>Absolute</ins0:UpdateType><ins0:Total>5000</ins0:Total></ins0:QuantityInfo><ins0:PriceInfo><ins0:Cost>2.99</ins0:Cost><ins0:RetailPrice>11.99</ins0:RetailPrice><ins0:StartingPrice>5.99</ins0:StartingPrice><ins0:ReservePrice>7.99</ins0:ReservePrice><ins0:TakeItPrice>9.99</ins0:TakeItPrice><ins0:SecondChanceOfferPrice>8.99</ins0:SecondChanceOfferPrice><ins0:StorePrice>9.49</ins0:StorePrice></ins0:PriceInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
58
+ headers:
59
+ soapaction:
60
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
61
+ content-type:
62
+ - text/xml;charset=UTF-8
63
+ content-length:
64
+ - '1216'
65
+ accept:
66
+ - ! '*/*'
67
+ user-agent:
68
+ - Ruby
69
+ response:
70
+ status:
71
+ code: 200
72
+ message: OK
73
+ headers:
74
+ date:
75
+ - Fri, 15 Jun 2012 05:02:05 GMT
76
+ server:
77
+ - Microsoft-IIS/6.0
78
+ x-servername:
79
+ - RDU-IISWEB-07
80
+ x-powered-by:
81
+ - ASP.NET
82
+ x-aspnet-version:
83
+ - 4.0.30319
84
+ cache-control:
85
+ - private, max-age=0
86
+ content-type:
87
+ - text/xml; charset=utf-8
88
+ content-length:
89
+ - '556'
90
+ body:
91
+ encoding: US-ASCII
92
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
93
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
94
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
95
+ http_version: '1.1'
96
+ recorded_at: Fri, 15 Jun 2012 05:02:06 GMT
97
+ - request:
98
+ method: post
99
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
100
+ body:
101
+ encoding: US-ASCII
102
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
103
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
104
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:QuantityInfo><ins0:UpdateType>Absolute</ins0:UpdateType><ins0:Total>5000</ins0:Total></ins0:QuantityInfo><ins0:PriceInfo><ins0:Cost>2.99</ins0:Cost><ins0:RetailPrice>11.99</ins0:RetailPrice><ins0:StartingPrice>5.99</ins0:StartingPrice><ins0:ReservePrice>7.99</ins0:ReservePrice><ins0:TakeItPrice>9.99</ins0:TakeItPrice><ins0:SecondChanceOfferPrice>8.99</ins0:SecondChanceOfferPrice><ins0:StorePrice>9.49</ins0:StorePrice></ins0:PriceInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
105
+ headers:
106
+ soapaction:
107
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
108
+ content-type:
109
+ - text/xml;charset=UTF-8
110
+ content-length:
111
+ - '1216'
112
+ accept:
113
+ - ! '*/*'
114
+ user-agent:
115
+ - Ruby
116
+ response:
117
+ status:
118
+ code: 200
119
+ message: OK
120
+ headers:
121
+ date:
122
+ - Fri, 15 Jun 2012 05:02:06 GMT
123
+ server:
124
+ - Microsoft-IIS/6.0
125
+ x-servername:
126
+ - RDU-IISWEB-07
127
+ x-powered-by:
128
+ - ASP.NET
129
+ x-aspnet-version:
130
+ - 4.0.30319
131
+ cache-control:
132
+ - private, max-age=0
133
+ content-type:
134
+ - text/xml; charset=utf-8
135
+ content-length:
136
+ - '556'
137
+ body:
138
+ encoding: US-ASCII
139
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
140
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
141
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
142
+ http_version: '1.1'
143
+ recorded_at: Fri, 15 Jun 2012 05:02:06 GMT
144
+ - request:
145
+ method: post
146
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
147
+ body:
148
+ encoding: US-ASCII
149
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
150
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
151
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:QuantityInfo><ins0:UpdateType>Absolute</ins0:UpdateType><ins0:Total>5000</ins0:Total></ins0:QuantityInfo><ins0:PriceInfo><ins0:Cost>2.99</ins0:Cost><ins0:RetailPrice>11.99</ins0:RetailPrice><ins0:StartingPrice>5.99</ins0:StartingPrice><ins0:ReservePrice>7.99</ins0:ReservePrice><ins0:TakeItPrice>9.99</ins0:TakeItPrice><ins0:SecondChanceOfferPrice>8.99</ins0:SecondChanceOfferPrice><ins0:StorePrice>9.49</ins0:StorePrice></ins0:PriceInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
152
+ headers:
153
+ soapaction:
154
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
155
+ content-type:
156
+ - text/xml;charset=UTF-8
157
+ content-length:
158
+ - '1216'
159
+ accept:
160
+ - ! '*/*'
161
+ user-agent:
162
+ - Ruby
163
+ response:
164
+ status:
165
+ code: 200
166
+ message: OK
167
+ headers:
168
+ date:
169
+ - Fri, 15 Jun 2012 05:02:07 GMT
170
+ server:
171
+ - Microsoft-IIS/6.0
172
+ x-servername:
173
+ - RDU-IISWEB-09
174
+ x-powered-by:
175
+ - ASP.NET
176
+ x-aspnet-version:
177
+ - 4.0.30319
178
+ cache-control:
179
+ - private, max-age=0
180
+ content-type:
181
+ - text/xml; charset=utf-8
182
+ content-length:
183
+ - '556'
184
+ body:
185
+ encoding: US-ASCII
186
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
187
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
188
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
189
+ http_version: '1.1'
190
+ recorded_at: Fri, 15 Jun 2012 05:02:08 GMT
191
+ recorded_with: VCR 2.2.0
@@ -0,0 +1,1403 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx?WSDL
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ accept:
11
+ - ! '*/*'
12
+ user-agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ date:
20
+ - Fri, 15 Jun 2012 05:01:57 GMT
21
+ server:
22
+ - Microsoft-IIS/6.0
23
+ x-servername:
24
+ - RDU-IISWEB-08
25
+ x-powered-by:
26
+ - ASP.NET
27
+ x-aspnet-version:
28
+ - 4.0.30319
29
+ cache-control:
30
+ - private, max-age=0
31
+ content-type:
32
+ - text/xml; charset=utf-8
33
+ content-length:
34
+ - '99544'
35
+ body:
36
+ encoding: US-ASCII
37
+ string: ! "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<wsdl:definitions xmlns:soap=\"http://schemas.xmlsoap.org/wsdl/soap/\"
38
+ xmlns:tm=\"http://microsoft.com/wsdl/mime/textMatching/\" xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"
39
+ xmlns:mime=\"http://schemas.xmlsoap.org/wsdl/mime/\" xmlns:tns=\"http://api.channeladvisor.com/webservices/\"
40
+ xmlns:s=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap12=\"http://schemas.xmlsoap.org/wsdl/soap12/\"
41
+ xmlns:http=\"http://schemas.xmlsoap.org/wsdl/http/\" targetNamespace=\"http://api.channeladvisor.com/webservices/\"
42
+ xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">\r\n <wsdl:types>\r\n <s:schema
43
+ elementFormDefault=\"qualified\" targetNamespace=\"http://api.channeladvisor.com/webservices/\">\r\n
44
+ \ <s:element name=\"DoesSkuExist\">\r\n <s:complexType>\r\n <s:sequence>\r\n
45
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\"
46
+ nillable=\"true\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
47
+ maxOccurs=\"1\" name=\"sku\" nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n
48
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"DoesSkuExistResponse\">\r\n
49
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
50
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"DoesSkuExistResult\" type=\"tns:APIResultOfBoolean\"
51
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
52
+ \ <s:complexType name=\"APIResultOfBoolean\">\r\n <s:sequence>\r\n
53
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
54
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
55
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
56
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
57
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
58
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"ResultData\" type=\"s:boolean\" />\r\n
59
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:simpleType name=\"ResultStatus\">\r\n
60
+ \ <s:restriction base=\"s:string\">\r\n <s:enumeration value=\"Success\"
61
+ />\r\n <s:enumeration value=\"Failure\" />\r\n </s:restriction>\r\n
62
+ \ </s:simpleType>\r\n <s:element name=\"APICredentials\" type=\"tns:APICredentials\"
63
+ />\r\n <s:complexType name=\"APICredentials\">\r\n <s:sequence>\r\n
64
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"DeveloperKey\"
65
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
66
+ name=\"Password\" type=\"s:string\" />\r\n </s:sequence>\r\n <s:anyAttribute
67
+ />\r\n </s:complexType>\r\n <s:element name=\"DoesSkuExistList\">\r\n
68
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
69
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\" nillable=\"true\" type=\"s:string\"
70
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"skuList\"
71
+ type=\"tns:ArrayOfString\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
72
+ \ </s:element>\r\n <s:complexType name=\"ArrayOfString\">\r\n <s:sequence>\r\n
73
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"string\"
74
+ nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
75
+ \ <s:element name=\"DoesSkuExistListResponse\">\r\n <s:complexType>\r\n
76
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
77
+ name=\"DoesSkuExistListResult\" type=\"tns:APIResultOfArrayOfDoesSkuExistResponse\"
78
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
79
+ \ <s:complexType name=\"APIResultOfArrayOfDoesSkuExistResponse\">\r\n
80
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
81
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
82
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
83
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
84
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
85
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
86
+ type=\"tns:ArrayOfDoesSkuExistResponse\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
87
+ \ <s:complexType name=\"ArrayOfDoesSkuExistResponse\">\r\n <s:sequence>\r\n
88
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"DoesSkuExistResponse\"
89
+ nillable=\"true\" type=\"tns:DoesSkuExistResponse\" />\r\n </s:sequence>\r\n
90
+ \ </s:complexType>\r\n <s:complexType name=\"DoesSkuExistResponse\">\r\n
91
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
92
+ name=\"Sku\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
93
+ maxOccurs=\"1\" name=\"Result\" type=\"s:boolean\" />\r\n <s:element
94
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ErrorMessage\" type=\"s:string\" />\r\n
95
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:element name=\"GetInventoryItemList\">\r\n
96
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
97
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\" nillable=\"true\" type=\"s:string\"
98
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"skuList\"
99
+ type=\"tns:ArrayOfString\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
100
+ \ </s:element>\r\n <s:element name=\"GetInventoryItemListResponse\">\r\n
101
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
102
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryItemListResult\" type=\"tns:APIResultOfArrayOfInventoryItemResponse\"
103
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
104
+ \ <s:complexType name=\"APIResultOfArrayOfInventoryItemResponse\">\r\n
105
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
106
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
107
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
108
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
109
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
110
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
111
+ type=\"tns:ArrayOfInventoryItemResponse\" />\r\n </s:sequence>\r\n
112
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfInventoryItemResponse\">\r\n
113
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
114
+ name=\"InventoryItemResponse\" nillable=\"true\" type=\"tns:InventoryItemResponse\"
115
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
116
+ name=\"InventoryItemResponse\">\r\n <s:sequence>\r\n <s:element
117
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Sku\" type=\"s:string\" />\r\n <s:element
118
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Title\" type=\"s:string\" />\r\n <s:element
119
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Subtitle\" type=\"s:string\" />\r\n
120
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ShortDescription\"
121
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
122
+ name=\"Description\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
123
+ maxOccurs=\"1\" name=\"Weight\" nillable=\"true\" type=\"s:double\" />\r\n
124
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SupplierCode\"
125
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
126
+ name=\"WarehouseLocation\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
127
+ maxOccurs=\"1\" name=\"TaxProductCode\" type=\"s:string\" />\r\n <s:element
128
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FlagStyle\" type=\"s:string\" />\r\n
129
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FlagDescription\"
130
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
131
+ name=\"IsBlocked\" nillable=\"true\" type=\"s:boolean\" />\r\n <s:element
132
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"BlockComment\" type=\"s:string\" />\r\n
133
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ASIN\" type=\"s:string\"
134
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ISBN\" type=\"s:string\"
135
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"UPC\" type=\"s:string\"
136
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"MPN\" type=\"s:string\"
137
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"EAN\" type=\"s:string\"
138
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Manufacturer\"
139
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
140
+ name=\"Brand\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
141
+ maxOccurs=\"1\" name=\"Condition\" type=\"s:string\" />\r\n <s:element
142
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Warranty\" type=\"s:string\" />\r\n
143
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ProductMargin\"
144
+ nillable=\"true\" type=\"s:decimal\" />\r\n <s:element minOccurs=\"0\"
145
+ maxOccurs=\"1\" name=\"SupplierPO\" type=\"s:string\" />\r\n <s:element
146
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"ReceivedInInventory\" nillable=\"true\"
147
+ type=\"s:dateTime\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
148
+ name=\"HarmonizedCode\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
149
+ maxOccurs=\"1\" name=\"Height\" nillable=\"true\" type=\"s:decimal\" />\r\n
150
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Length\" nillable=\"true\"
151
+ type=\"s:decimal\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
152
+ name=\"Width\" nillable=\"true\" type=\"s:decimal\" />\r\n <s:element
153
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Classification\" type=\"s:string\"
154
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"QuantityInfo\"
155
+ type=\"tns:QuantityInfoResponse\" />\r\n <s:element minOccurs=\"0\"
156
+ maxOccurs=\"1\" name=\"PriceInfo\" type=\"tns:PriceInfo\" />\r\n <s:element
157
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"AttributeList\" type=\"tns:ArrayOfAttributeInfo\"
158
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"VariationInfo\"
159
+ type=\"tns:VariationInfo\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
160
+ name=\"StoreInfo\" type=\"tns:StoreInfo\" />\r\n <s:element minOccurs=\"0\"
161
+ maxOccurs=\"1\" name=\"ImageList\" type=\"tns:ArrayOfImageInfoResponse\" />\r\n
162
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ShippingInfo\"
163
+ type=\"tns:ShippingInfo\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
164
+ name=\"MetaDescription\" type=\"s:string\" />\r\n </s:sequence>\r\n
165
+ \ </s:complexType>\r\n <s:complexType name=\"QuantityInfoResponse\">\r\n
166
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
167
+ name=\"Total\" type=\"s:int\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
168
+ name=\"Available\" type=\"s:int\" />\r\n <s:element minOccurs=\"1\"
169
+ maxOccurs=\"1\" name=\"Open\" type=\"s:int\" />\r\n <s:element minOccurs=\"1\"
170
+ maxOccurs=\"1\" name=\"PendingCheckout\" type=\"s:int\" />\r\n <s:element
171
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"PendingPayment\" type=\"s:int\" />\r\n
172
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"PendingShipment\"
173
+ type=\"s:int\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
174
+ name=\"IsScheduled\" type=\"s:boolean\" />\r\n <s:element minOccurs=\"1\"
175
+ maxOccurs=\"1\" name=\"OpenPooled\" type=\"s:int\" />\r\n <s:element
176
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"PendingCheckoutPooled\" type=\"s:int\"
177
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"PendingPaymentPooled\"
178
+ type=\"s:int\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
179
+ name=\"PendingShipmentPooled\" type=\"s:int\" />\r\n <s:element minOccurs=\"1\"
180
+ maxOccurs=\"1\" name=\"TotalPooled\" type=\"s:int\" />\r\n </s:sequence>\r\n
181
+ \ </s:complexType>\r\n <s:complexType name=\"PriceInfo\">\r\n <s:sequence>\r\n
182
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Cost\" nillable=\"true\"
183
+ type=\"s:decimal\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
184
+ name=\"RetailPrice\" nillable=\"true\" type=\"s:decimal\" />\r\n <s:element
185
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"StartingPrice\" nillable=\"true\" type=\"s:decimal\"
186
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ReservePrice\"
187
+ nillable=\"true\" type=\"s:decimal\" />\r\n <s:element minOccurs=\"1\"
188
+ maxOccurs=\"1\" name=\"TakeItPrice\" nillable=\"true\" type=\"s:decimal\"
189
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"SecondChanceOfferPrice\"
190
+ nillable=\"true\" type=\"s:decimal\" />\r\n <s:element minOccurs=\"1\"
191
+ maxOccurs=\"1\" name=\"StorePrice\" nillable=\"true\" type=\"s:decimal\" />\r\n
192
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"ArrayOfAttributeInfo\">\r\n
193
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
194
+ name=\"AttributeInfo\" nillable=\"true\" type=\"tns:AttributeInfo\" />\r\n
195
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"AttributeInfo\">\r\n
196
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
197
+ name=\"Name\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
198
+ maxOccurs=\"1\" name=\"Value\" type=\"s:string\" />\r\n </s:sequence>\r\n
199
+ \ </s:complexType>\r\n <s:complexType name=\"VariationInfo\">\r\n
200
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
201
+ name=\"IsInRelationship\" type=\"s:boolean\" />\r\n <s:element minOccurs=\"0\"
202
+ maxOccurs=\"1\" name=\"RelationshipName\" type=\"s:string\" />\r\n <s:element
203
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"IsParent\" type=\"s:boolean\" />\r\n
204
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ParentSku\" type=\"s:string\"
205
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
206
+ name=\"StoreInfo\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
207
+ maxOccurs=\"1\" name=\"DisplayInStore\" nillable=\"true\" type=\"s:boolean\"
208
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Title\"
209
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
210
+ name=\"Description\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
211
+ maxOccurs=\"1\" name=\"CategoryID\" nillable=\"true\" type=\"s:int\" />\r\n
212
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"ArrayOfImageInfoResponse\">\r\n
213
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
214
+ name=\"ImageInfoResponse\" nillable=\"true\" type=\"tns:ImageInfoResponse\"
215
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
216
+ name=\"ImageInfoResponse\">\r\n <s:sequence>\r\n <s:element
217
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"PlacementName\" type=\"s:string\" />\r\n
218
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FolderName\" type=\"s:string\"
219
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Url\" type=\"s:string\"
220
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ImageThumbList\"
221
+ type=\"tns:ArrayOfImageThumbInfo\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
222
+ \ <s:complexType name=\"ArrayOfImageThumbInfo\">\r\n <s:sequence>\r\n
223
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ImageThumbInfo\"
224
+ nillable=\"true\" type=\"tns:ImageThumbInfo\" />\r\n </s:sequence>\r\n
225
+ \ </s:complexType>\r\n <s:complexType name=\"ImageThumbInfo\">\r\n
226
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
227
+ name=\"TypeName\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
228
+ maxOccurs=\"1\" name=\"Url\" type=\"s:string\" />\r\n </s:sequence>\r\n
229
+ \ </s:complexType>\r\n <s:complexType name=\"ShippingInfo\">\r\n
230
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
231
+ name=\"DistributionCenterCode\" type=\"s:string\" />\r\n <s:element
232
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"IsFBA\" type=\"s:boolean\" />\r\n <s:element
233
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ShippingRateList\" type=\"tns:ArrayOfShippingRateInfo\"
234
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
235
+ name=\"ArrayOfShippingRateInfo\">\r\n <s:sequence>\r\n <s:element
236
+ minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ShippingRateInfo\" nillable=\"true\"
237
+ type=\"tns:ShippingRateInfo\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
238
+ \ <s:complexType name=\"ShippingRateInfo\">\r\n <s:sequence>\r\n
239
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"DestinationZoneName\"
240
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
241
+ name=\"CarrierCode\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
242
+ maxOccurs=\"1\" name=\"ClassCode\" type=\"s:string\" />\r\n <s:element
243
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"FirstItemRate\" nillable=\"true\" type=\"s:decimal\"
244
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"AdditionalItemRate\"
245
+ nillable=\"true\" type=\"s:decimal\" />\r\n <s:element minOccurs=\"1\"
246
+ maxOccurs=\"1\" name=\"FirstItemHandlingRate\" nillable=\"true\" type=\"s:decimal\"
247
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"AdditionalItemHandlingRate\"
248
+ nillable=\"true\" type=\"s:decimal\" />\r\n <s:element minOccurs=\"1\"
249
+ maxOccurs=\"1\" name=\"FreeShippingIfBuyItNow\" type=\"s:boolean\" />\r\n
250
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"FirstItemRateAttribute\"
251
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
252
+ name=\"FirstItemHandlingRateAttribute\" type=\"s:string\" />\r\n <s:element
253
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"AdditionalItemRateAttribute\" type=\"s:string\"
254
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"AdditionalItemHandlingRateAttribute\"
255
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
256
+ \ <s:element name=\"GetInventoryItemListWithFullDetail\">\r\n <s:complexType>\r\n
257
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
258
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
259
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"skuList\" type=\"tns:ArrayOfString\"
260
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
261
+ \ <s:element name=\"GetInventoryItemListWithFullDetailResponse\">\r\n
262
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
263
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryItemListWithFullDetailResult\"
264
+ type=\"tns:APIResultOfArrayOfInventoryItemResponse\" />\r\n </s:sequence>\r\n
265
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetFilteredInventoryItemList\">\r\n
266
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
267
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\" nillable=\"true\" type=\"s:string\"
268
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"itemCriteria\"
269
+ nillable=\"true\" type=\"tns:InventoryItemCriteria\" />\r\n <s:element
270
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"detailLevel\" type=\"tns:InventoryItemDetailLevel\"
271
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"sortField\"
272
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
273
+ name=\"sortDirection\" type=\"s:string\" />\r\n </s:sequence>\r\n
274
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"InventoryItemCriteria\">\r\n
275
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
276
+ name=\"DateRangeField\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
277
+ maxOccurs=\"1\" name=\"DateRangeStartGMT\" nillable=\"true\" type=\"s:dateTime\"
278
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"DateRangeEndGMT\"
279
+ nillable=\"true\" type=\"s:dateTime\" />\r\n <s:element minOccurs=\"0\"
280
+ maxOccurs=\"1\" name=\"PartialSku\" type=\"s:string\" />\r\n <s:element
281
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SkuStartsWith\" type=\"s:string\" />\r\n
282
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SkuEndsWith\"
283
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
284
+ name=\"ClassificationName\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
285
+ maxOccurs=\"1\" name=\"LabelName\" type=\"s:string\" />\r\n <s:element
286
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"QuantityCheckField\" type=\"s:string\"
287
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"QuantityCheckType\"
288
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
289
+ name=\"QuantityCheckValue\" nillable=\"true\" type=\"s:int\" />\r\n <s:element
290
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"PageNumber\" type=\"s:int\" />\r\n
291
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"PageSize\" type=\"s:int\"
292
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
293
+ name=\"InventoryItemDetailLevel\">\r\n <s:sequence>\r\n <s:element
294
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"IncludeQuantityInfo\" nillable=\"true\"
295
+ type=\"s:boolean\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
296
+ name=\"IncludePriceInfo\" nillable=\"true\" type=\"s:boolean\" />\r\n <s:element
297
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"IncludeClassificationInfo\" nillable=\"true\"
298
+ type=\"s:boolean\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
299
+ \ <s:element name=\"GetFilteredInventoryItemListResponse\">\r\n <s:complexType>\r\n
300
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
301
+ name=\"GetFilteredInventoryItemListResult\" type=\"tns:APIResultOfArrayOfInventoryItemResponse\"
302
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
303
+ \ <s:element name=\"GetFilteredSkuList\">\r\n <s:complexType>\r\n
304
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
305
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
306
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"itemCriteria\" nillable=\"true\" type=\"tns:InventoryItemCriteria\"
307
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"sortField\"
308
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
309
+ name=\"sortDirection\" type=\"s:string\" />\r\n </s:sequence>\r\n
310
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetFilteredSkuListResponse\">\r\n
311
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
312
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetFilteredSkuListResult\" type=\"tns:APIResultOfArrayOfString\"
313
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
314
+ \ <s:complexType name=\"APIResultOfArrayOfString\">\r\n <s:sequence>\r\n
315
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
316
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
317
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
318
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
319
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
320
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\" type=\"tns:ArrayOfString\"
321
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
322
+ name=\"GetInventoryItemShippingInfo\">\r\n <s:complexType>\r\n <s:sequence>\r\n
323
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\"
324
+ nillable=\"true\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
325
+ maxOccurs=\"1\" name=\"sku\" nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n
326
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetInventoryItemShippingInfoResponse\">\r\n
327
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
328
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryItemShippingInfoResult\"
329
+ type=\"tns:APIResultOfArrayOfShippingRateInfo\" />\r\n </s:sequence>\r\n
330
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"APIResultOfArrayOfShippingRateInfo\">\r\n
331
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
332
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
333
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
334
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
335
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
336
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
337
+ type=\"tns:ArrayOfShippingRateInfo\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
338
+ \ <s:element name=\"GetInventoryItemQuantityInfo\">\r\n <s:complexType>\r\n
339
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
340
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
341
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"sku\" nillable=\"true\" type=\"s:string\"
342
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
343
+ \ <s:element name=\"GetInventoryItemQuantityInfoResponse\">\r\n <s:complexType>\r\n
344
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
345
+ name=\"GetInventoryItemQuantityInfoResult\" type=\"tns:APIResultOfQuantityInfoResponse\"
346
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
347
+ \ <s:complexType name=\"APIResultOfQuantityInfoResponse\">\r\n <s:sequence>\r\n
348
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
349
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
350
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
351
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
352
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
353
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\" type=\"tns:QuantityInfoResponse\"
354
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
355
+ name=\"GetClassificationConfigurationInformation\">\r\n <s:complexType>\r\n
356
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
357
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n
358
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetClassificationConfigurationInformationResponse\">\r\n
359
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
360
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetClassificationConfigurationInformationResult\"
361
+ type=\"tns:APIResultOfArrayOfClassificationConfigurationInformation\" />\r\n
362
+ \ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
363
+ \ <s:complexType name=\"APIResultOfArrayOfClassificationConfigurationInformation\">\r\n
364
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
365
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
366
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
367
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
368
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
369
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
370
+ type=\"tns:ArrayOfClassificationConfigurationInformation\" />\r\n </s:sequence>\r\n
371
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfClassificationConfigurationInformation\">\r\n
372
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
373
+ name=\"ClassificationConfigurationInformation\" nillable=\"true\" type=\"tns:ClassificationConfigurationInformation\"
374
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
375
+ name=\"ClassificationConfigurationInformation\">\r\n <s:sequence>\r\n
376
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Name\" type=\"s:string\"
377
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ClassificationConfigurationInformationAttributeArray\"
378
+ type=\"tns:ArrayOfClassificationConfigurationInformationAttribute\" />\r\n
379
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"ArrayOfClassificationConfigurationInformationAttribute\">\r\n
380
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
381
+ name=\"ClassificationConfigurationInformationAttribute\" nillable=\"true\"
382
+ type=\"tns:ClassificationConfigurationInformationAttribute\" />\r\n </s:sequence>\r\n
383
+ \ </s:complexType>\r\n <s:complexType name=\"ClassificationConfigurationInformationAttribute\">\r\n
384
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
385
+ name=\"Name\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
386
+ maxOccurs=\"1\" name=\"DefaultValue\" type=\"s:string\" />\r\n <s:element
387
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ListOfChoices\" type=\"s:string\" />\r\n
388
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:element name=\"GetInventoryItemAttributeList\">\r\n
389
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
390
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\" nillable=\"true\" type=\"s:string\"
391
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"sku\"
392
+ nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
393
+ \ </s:element>\r\n <s:element name=\"GetInventoryItemAttributeListResponse\">\r\n
394
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
395
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryItemAttributeListResult\"
396
+ type=\"tns:APIResultOfArrayOfAttributeInfo\" />\r\n </s:sequence>\r\n
397
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"APIResultOfArrayOfAttributeInfo\">\r\n
398
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
399
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
400
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
401
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
402
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
403
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
404
+ type=\"tns:ArrayOfAttributeInfo\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
405
+ \ <s:element name=\"GetInventoryItemVariationInfo\">\r\n <s:complexType>\r\n
406
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
407
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
408
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"sku\" nillable=\"true\" type=\"s:string\"
409
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
410
+ \ <s:element name=\"GetInventoryItemVariationInfoResponse\">\r\n <s:complexType>\r\n
411
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
412
+ name=\"GetInventoryItemVariationInfoResult\" type=\"tns:APIResultOfVariationInfo\"
413
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
414
+ \ <s:complexType name=\"APIResultOfVariationInfo\">\r\n <s:sequence>\r\n
415
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
416
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
417
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
418
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
419
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
420
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\" type=\"tns:VariationInfo\"
421
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
422
+ name=\"GetInventoryItemStoreInfo\">\r\n <s:complexType>\r\n <s:sequence>\r\n
423
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\"
424
+ nillable=\"true\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
425
+ maxOccurs=\"1\" name=\"sku\" nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n
426
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetInventoryItemStoreInfoResponse\">\r\n
427
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
428
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryItemStoreInfoResult\" type=\"tns:APIResultOfStoreInfo\"
429
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
430
+ \ <s:complexType name=\"APIResultOfStoreInfo\">\r\n <s:sequence>\r\n
431
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
432
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
433
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
434
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
435
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
436
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\" type=\"tns:StoreInfo\"
437
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
438
+ name=\"GetInventoryItemImageList\">\r\n <s:complexType>\r\n <s:sequence>\r\n
439
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\"
440
+ nillable=\"true\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
441
+ maxOccurs=\"1\" name=\"sku\" nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n
442
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetInventoryItemImageListResponse\">\r\n
443
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
444
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryItemImageListResult\" type=\"tns:APIResultOfArrayOfImageInfoResponse\"
445
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
446
+ \ <s:complexType name=\"APIResultOfArrayOfImageInfoResponse\">\r\n <s:sequence>\r\n
447
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
448
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
449
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
450
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
451
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
452
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\" type=\"tns:ArrayOfImageInfoResponse\"
453
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
454
+ name=\"GetInventoryQuantity\">\r\n <s:complexType>\r\n <s:sequence>\r\n
455
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\"
456
+ nillable=\"true\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
457
+ maxOccurs=\"1\" name=\"sku\" nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n
458
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"GetInventoryQuantityResponse\">\r\n
459
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
460
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryQuantityResult\" type=\"tns:APIResultOfInt32\"
461
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
462
+ \ <s:complexType name=\"APIResultOfInt32\">\r\n <s:sequence>\r\n
463
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
464
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
465
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
466
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
467
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
468
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"ResultData\" type=\"s:int\" />\r\n
469
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:element name=\"GetInventoryQuantityList\">\r\n
470
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
471
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\" nillable=\"true\" type=\"s:string\"
472
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"skuList\"
473
+ type=\"tns:ArrayOfString\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
474
+ \ </s:element>\r\n <s:element name=\"GetInventoryQuantityListResponse\">\r\n
475
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
476
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"GetInventoryQuantityListResult\" type=\"tns:APIResultOfArrayOfInventoryQuantityResponse\"
477
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
478
+ \ <s:complexType name=\"APIResultOfArrayOfInventoryQuantityResponse\">\r\n
479
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
480
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
481
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
482
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
483
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
484
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
485
+ type=\"tns:ArrayOfInventoryQuantityResponse\" />\r\n </s:sequence>\r\n
486
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfInventoryQuantityResponse\">\r\n
487
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
488
+ name=\"InventoryQuantityResponse\" nillable=\"true\" type=\"tns:InventoryQuantityResponse\"
489
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
490
+ name=\"InventoryQuantityResponse\">\r\n <s:sequence>\r\n <s:element
491
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SKU\" type=\"s:string\" />\r\n <s:element
492
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"Quantity\" type=\"s:int\" />\r\n <s:element
493
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n
494
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\"
495
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
496
+ name=\"DeleteInventoryItem\">\r\n <s:complexType>\r\n <s:sequence>\r\n
497
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\"
498
+ nillable=\"true\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
499
+ maxOccurs=\"1\" name=\"sku\" nillable=\"true\" type=\"s:string\" />\r\n </s:sequence>\r\n
500
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"DeleteInventoryItemResponse\">\r\n
501
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
502
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"DeleteInventoryItemResult\" type=\"tns:APIResultOfBoolean\"
503
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
504
+ \ <s:element name=\"SynchInventoryItem\">\r\n <s:complexType>\r\n
505
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
506
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
507
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"item\" nillable=\"true\" type=\"tns:InventoryItemSubmit\"
508
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
509
+ \ <s:complexType name=\"InventoryItemSubmit\">\r\n <s:sequence>\r\n
510
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Sku\" nillable=\"true\"
511
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
512
+ name=\"Title\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
513
+ maxOccurs=\"1\" name=\"Subtitle\" type=\"s:string\" />\r\n <s:element
514
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ShortDescription\" type=\"s:string\"
515
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Description\"
516
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
517
+ name=\"Weight\" nillable=\"true\" type=\"s:double\" />\r\n <s:element
518
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SupplierCode\" type=\"s:string\" />\r\n
519
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"WarehouseLocation\"
520
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
521
+ name=\"TaxProductCode\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
522
+ maxOccurs=\"1\" name=\"FlagStyle\" type=\"s:string\" />\r\n <s:element
523
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FlagDescription\" type=\"s:string\"
524
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"IsBlocked\"
525
+ nillable=\"true\" type=\"s:boolean\" />\r\n <s:element minOccurs=\"0\"
526
+ maxOccurs=\"1\" name=\"BlockComment\" type=\"s:string\" />\r\n <s:element
527
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ASIN\" type=\"s:string\" />\r\n <s:element
528
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ISBN\" type=\"s:string\" />\r\n <s:element
529
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"UPC\" type=\"s:string\" />\r\n <s:element
530
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"MPN\" type=\"s:string\" />\r\n <s:element
531
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"EAN\" type=\"s:string\" />\r\n <s:element
532
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Manufacturer\" type=\"s:string\" />\r\n
533
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Brand\" type=\"s:string\"
534
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Condition\"
535
+ type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
536
+ name=\"Warranty\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
537
+ maxOccurs=\"1\" name=\"ProductMargin\" nillable=\"true\" type=\"s:decimal\"
538
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SupplierPO\"
539
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
540
+ name=\"ReceivedInInventory\" nillable=\"true\" type=\"s:dateTime\" />\r\n
541
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"HarmonizedCode\"
542
+ type=\"s:string\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
543
+ name=\"Height\" nillable=\"true\" type=\"s:decimal\" />\r\n <s:element
544
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"Length\" nillable=\"true\" type=\"s:decimal\"
545
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Width\"
546
+ nillable=\"true\" type=\"s:decimal\" />\r\n <s:element minOccurs=\"0\"
547
+ maxOccurs=\"1\" name=\"Classification\" type=\"s:string\" />\r\n <s:element
548
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"QuantityInfo\" type=\"tns:QuantityInfoSubmit\"
549
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PriceInfo\"
550
+ type=\"tns:PriceInfo\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
551
+ name=\"AttributeList\" type=\"tns:ArrayOfAttributeInfo\" />\r\n <s:element
552
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"VariationInfo\" type=\"tns:VariationInfo\"
553
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"StoreInfo\"
554
+ type=\"tns:StoreInfo\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
555
+ name=\"ImageList\" type=\"tns:ArrayOfImageInfoSubmit\" />\r\n <s:element
556
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ShippingInfo\" type=\"tns:ShippingInfo\"
557
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"LabelList\"
558
+ type=\"tns:ArrayOfString\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
559
+ name=\"MetaDescription\" type=\"s:string\" />\r\n </s:sequence>\r\n
560
+ \ </s:complexType>\r\n <s:complexType name=\"QuantityInfoSubmit\">\r\n
561
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
562
+ name=\"UpdateType\" type=\"s:string\" />\r\n <s:element minOccurs=\"1\"
563
+ maxOccurs=\"1\" name=\"Total\" type=\"s:int\" />\r\n </s:sequence>\r\n
564
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfImageInfoSubmit\">\r\n
565
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
566
+ name=\"ImageInfoSubmit\" nillable=\"true\" type=\"tns:ImageInfoSubmit\" />\r\n
567
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"ImageInfoSubmit\">\r\n
568
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
569
+ name=\"PlacementName\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
570
+ maxOccurs=\"1\" name=\"FolderName\" type=\"s:string\" />\r\n <s:element
571
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"FilenameOrUrl\" type=\"s:string\" />\r\n
572
+ \ </s:sequence>\r\n </s:complexType>\r\n <s:element name=\"SynchInventoryItemResponse\">\r\n
573
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
574
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SynchInventoryItemResult\" type=\"tns:APIResultOfBoolean\"
575
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
576
+ \ <s:element name=\"SynchInventoryItemList\">\r\n <s:complexType>\r\n
577
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
578
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
579
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"itemList\" type=\"tns:ArrayOfInventoryItemSubmit\"
580
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
581
+ \ <s:complexType name=\"ArrayOfInventoryItemSubmit\">\r\n <s:sequence>\r\n
582
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"InventoryItemSubmit\"
583
+ nillable=\"true\" type=\"tns:InventoryItemSubmit\" />\r\n </s:sequence>\r\n
584
+ \ </s:complexType>\r\n <s:element name=\"SynchInventoryItemListResponse\">\r\n
585
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
586
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SynchInventoryItemListResult\" type=\"tns:APIResultOfArrayOfSynchInventoryItemResponse\"
587
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
588
+ \ <s:complexType name=\"APIResultOfArrayOfSynchInventoryItemResponse\">\r\n
589
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
590
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
591
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
592
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
593
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
594
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
595
+ type=\"tns:ArrayOfSynchInventoryItemResponse\" />\r\n </s:sequence>\r\n
596
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfSynchInventoryItemResponse\">\r\n
597
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
598
+ name=\"SynchInventoryItemResponse\" nillable=\"true\" type=\"tns:SynchInventoryItemResponse\"
599
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
600
+ name=\"SynchInventoryItemResponse\">\r\n <s:sequence>\r\n <s:element
601
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Sku\" type=\"s:string\" />\r\n <s:element
602
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"Result\" type=\"s:boolean\" />\r\n
603
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ErrorMessage\"
604
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
605
+ \ <s:element name=\"UpdateInventoryItemQuantityAndPrice\">\r\n <s:complexType>\r\n
606
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
607
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
608
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"itemQuantityAndPrice\" nillable=\"true\"
609
+ type=\"tns:InventoryItemQuantityAndPrice\" />\r\n </s:sequence>\r\n
610
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"InventoryItemQuantityAndPrice\">\r\n
611
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
612
+ name=\"Sku\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
613
+ maxOccurs=\"1\" name=\"QuantityInfo\" type=\"tns:QuantityInfoSubmit\" />\r\n
614
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PriceInfo\" type=\"tns:PriceInfo\"
615
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
616
+ name=\"UpdateInventoryItemQuantityAndPriceResponse\">\r\n <s:complexType>\r\n
617
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
618
+ name=\"UpdateInventoryItemQuantityAndPriceResult\" type=\"tns:APIResultOfBoolean\"
619
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
620
+ \ <s:element name=\"UpdateInventoryItemQuantityAndPriceList\">\r\n <s:complexType>\r\n
621
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
622
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
623
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"itemQuantityAndPriceList\" type=\"tns:ArrayOfInventoryItemQuantityAndPrice\"
624
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
625
+ \ <s:complexType name=\"ArrayOfInventoryItemQuantityAndPrice\">\r\n <s:sequence>\r\n
626
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"InventoryItemQuantityAndPrice\"
627
+ nillable=\"true\" type=\"tns:InventoryItemQuantityAndPrice\" />\r\n </s:sequence>\r\n
628
+ \ </s:complexType>\r\n <s:element name=\"UpdateInventoryItemQuantityAndPriceListResponse\">\r\n
629
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
630
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"UpdateInventoryItemQuantityAndPriceListResult\"
631
+ type=\"tns:APIResultOfArrayOfUpdateInventoryItemResponse\" />\r\n </s:sequence>\r\n
632
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"APIResultOfArrayOfUpdateInventoryItemResponse\">\r\n
633
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
634
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
635
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
636
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
637
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
638
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
639
+ type=\"tns:ArrayOfUpdateInventoryItemResponse\" />\r\n </s:sequence>\r\n
640
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfUpdateInventoryItemResponse\">\r\n
641
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
642
+ name=\"UpdateInventoryItemResponse\" nillable=\"true\" type=\"tns:UpdateInventoryItemResponse\"
643
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
644
+ name=\"UpdateInventoryItemResponse\">\r\n <s:sequence>\r\n <s:element
645
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Sku\" type=\"s:string\" />\r\n <s:element
646
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"Result\" type=\"s:boolean\" />\r\n
647
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ErrorMessage\"
648
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
649
+ \ <s:element name=\"AssignLabelListToInventoryItemList\">\r\n <s:complexType>\r\n
650
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
651
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
652
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"labelList\" type=\"tns:ArrayOfString\"
653
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"createLabelIfNotExist\"
654
+ type=\"s:boolean\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
655
+ name=\"skuList\" type=\"tns:ArrayOfString\" />\r\n <s:element minOccurs=\"0\"
656
+ maxOccurs=\"1\" name=\"assignReasonDesc\" type=\"s:string\" />\r\n </s:sequence>\r\n
657
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"AssignLabelListToInventoryItemListResponse\">\r\n
658
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
659
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"AssignLabelListToInventoryItemListResult\"
660
+ type=\"tns:APIResultOfBoolean\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
661
+ \ </s:element>\r\n <s:element name=\"RemoveLabelListFromInventoryItemList\">\r\n
662
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
663
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\" nillable=\"true\" type=\"s:string\"
664
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"labelList\"
665
+ type=\"tns:ArrayOfString\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
666
+ name=\"skuList\" type=\"tns:ArrayOfString\" />\r\n <s:element minOccurs=\"0\"
667
+ maxOccurs=\"1\" name=\"removeReasonDesc\" type=\"s:string\" />\r\n </s:sequence>\r\n
668
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"RemoveLabelListFromInventoryItemListResponse\">\r\n
669
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
670
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"RemoveLabelListFromInventoryItemListResult\"
671
+ type=\"tns:APIResultOfBoolean\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
672
+ \ </s:element>\r\n <s:element name=\"AddUpsellRelationship\">\r\n
673
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
674
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\" nillable=\"true\" type=\"s:string\"
675
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"upsellInfoList\"
676
+ type=\"tns:ArrayOfInventoryUpsellInfoSubmit\" />\r\n </s:sequence>\r\n
677
+ \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"ArrayOfInventoryUpsellInfoSubmit\">\r\n
678
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
679
+ name=\"InventoryUpsellInfoSubmit\" nillable=\"true\" type=\"tns:InventoryUpsellInfoSubmit\"
680
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
681
+ name=\"InventoryUpsellInfoSubmit\">\r\n <s:sequence>\r\n <s:element
682
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ParentSKU\" type=\"s:string\" />\r\n
683
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ChildItemList\"
684
+ type=\"tns:ArrayOfInventoryUpsellChildInfo\" />\r\n </s:sequence>\r\n
685
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfInventoryUpsellChildInfo\">\r\n
686
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
687
+ name=\"InventoryUpsellChildInfo\" nillable=\"true\" type=\"tns:InventoryUpsellChildInfo\"
688
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
689
+ name=\"InventoryUpsellChildInfo\">\r\n <s:sequence>\r\n <s:element
690
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"SKU\" type=\"s:string\" />\r\n <s:element
691
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"Quantity\" nillable=\"true\" type=\"s:int\"
692
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"SalePrice\"
693
+ nillable=\"true\" type=\"s:decimal\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
694
+ \ <s:element name=\"AddUpsellRelationshipResponse\">\r\n <s:complexType>\r\n
695
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
696
+ name=\"AddUpsellRelationshipResult\" type=\"tns:APIResultOfArrayOfArrayOfBoolean\"
697
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
698
+ \ <s:complexType name=\"APIResultOfArrayOfArrayOfBoolean\">\r\n <s:sequence>\r\n
699
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
700
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
701
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
702
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
703
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
704
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\" type=\"tns:ArrayOfArrayOfBoolean\"
705
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
706
+ name=\"ArrayOfArrayOfBoolean\">\r\n <s:sequence>\r\n <s:element
707
+ minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ArrayOfBoolean\" nillable=\"true\"
708
+ type=\"tns:ArrayOfBoolean\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
709
+ \ <s:complexType name=\"ArrayOfBoolean\">\r\n <s:sequence>\r\n
710
+ \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"boolean\"
711
+ type=\"s:boolean\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
712
+ \ <s:element name=\"GetUpsellRelationship\">\r\n <s:complexType>\r\n
713
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
714
+ name=\"accountID\" nillable=\"true\" type=\"s:string\" />\r\n <s:element
715
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"parentSKUList\" type=\"tns:ArrayOfString\"
716
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
717
+ \ <s:element name=\"GetUpsellRelationshipResponse\">\r\n <s:complexType>\r\n
718
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
719
+ name=\"GetUpsellRelationshipResult\" type=\"tns:APIResultOfArrayOfInventoryUpsellInfoResponse\"
720
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
721
+ \ <s:complexType name=\"APIResultOfArrayOfInventoryUpsellInfoResponse\">\r\n
722
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
723
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
724
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
725
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
726
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
727
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
728
+ type=\"tns:ArrayOfInventoryUpsellInfoResponse\" />\r\n </s:sequence>\r\n
729
+ \ </s:complexType>\r\n <s:complexType name=\"ArrayOfInventoryUpsellInfoResponse\">\r\n
730
+ \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
731
+ name=\"InventoryUpsellInfoResponse\" nillable=\"true\" type=\"tns:InventoryUpsellInfoResponse\"
732
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
733
+ name=\"InventoryUpsellInfoResponse\">\r\n <s:sequence>\r\n <s:element
734
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ParentSKU\" type=\"s:string\" />\r\n
735
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ChildItemList\"
736
+ type=\"tns:ArrayOfInventoryUpsellChildInfo\" />\r\n </s:sequence>\r\n
737
+ \ </s:complexType>\r\n <s:element name=\"DeleteUpsellRelationship\">\r\n
738
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
739
+ minOccurs=\"1\" maxOccurs=\"1\" name=\"accountID\" nillable=\"true\" type=\"s:string\"
740
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"parentSKU\"
741
+ nillable=\"true\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
742
+ maxOccurs=\"1\" name=\"childSKUList\" type=\"tns:ArrayOfString\" />\r\n </s:sequence>\r\n
743
+ \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"DeleteUpsellRelationshipResponse\">\r\n
744
+ \ <s:complexType>\r\n <s:sequence>\r\n <s:element
745
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"DeleteUpsellRelationshipResult\" type=\"tns:APIResultOfArrayOfBoolean\"
746
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
747
+ \ <s:complexType name=\"APIResultOfArrayOfBoolean\">\r\n <s:sequence>\r\n
748
+ \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Status\" type=\"tns:ResultStatus\"
749
+ />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"MessageCode\"
750
+ type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
751
+ name=\"Message\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
752
+ maxOccurs=\"1\" name=\"Data\" type=\"s:string\" />\r\n <s:element
753
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\" type=\"tns:ArrayOfBoolean\"
754
+ />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
755
+ name=\"Ping\">\r\n <s:complexType />\r\n </s:element>\r\n <s:element
756
+ name=\"PingResponse\">\r\n <s:complexType>\r\n <s:sequence>\r\n
757
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PingResult\"
758
+ type=\"tns:APIResultOfString\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
759
+ \ </s:element>\r\n <s:complexType name=\"APIResultOfString\">\r\n
760
+ \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
761
+ name=\"Status\" type=\"tns:ResultStatus\" />\r\n <s:element minOccurs=\"1\"
762
+ maxOccurs=\"1\" name=\"MessageCode\" type=\"s:int\" />\r\n <s:element
763
+ minOccurs=\"0\" maxOccurs=\"1\" name=\"Message\" type=\"s:string\" />\r\n
764
+ \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"Data\" type=\"s:string\"
765
+ />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ResultData\"
766
+ type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
767
+ \ </s:schema>\r\n </wsdl:types>\r\n <wsdl:message name=\"DoesSkuExistSoapIn\">\r\n
768
+ \ <wsdl:part name=\"parameters\" element=\"tns:DoesSkuExist\" />\r\n </wsdl:message>\r\n
769
+ \ <wsdl:message name=\"DoesSkuExistSoapOut\">\r\n <wsdl:part name=\"parameters\"
770
+ element=\"tns:DoesSkuExistResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
771
+ name=\"DoesSkuExistAPICredentials\">\r\n <wsdl:part name=\"APICredentials\"
772
+ element=\"tns:APICredentials\" />\r\n </wsdl:message>\r\n <wsdl:message
773
+ name=\"DoesSkuExistListSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:DoesSkuExistList\"
774
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"DoesSkuExistListSoapOut\">\r\n
775
+ \ <wsdl:part name=\"parameters\" element=\"tns:DoesSkuExistListResponse\"
776
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"DoesSkuExistListAPICredentials\">\r\n
777
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
778
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemListSoapIn\">\r\n
779
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemList\" />\r\n
780
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemListSoapOut\">\r\n
781
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemListResponse\"
782
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemListAPICredentials\">\r\n
783
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
784
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemListWithFullDetailSoapIn\">\r\n
785
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemListWithFullDetail\"
786
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemListWithFullDetailSoapOut\">\r\n
787
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemListWithFullDetailResponse\"
788
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemListWithFullDetailAPICredentials\">\r\n
789
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
790
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetFilteredInventoryItemListSoapIn\">\r\n
791
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetFilteredInventoryItemList\"
792
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetFilteredInventoryItemListSoapOut\">\r\n
793
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetFilteredInventoryItemListResponse\"
794
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetFilteredInventoryItemListAPICredentials\">\r\n
795
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
796
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetFilteredSkuListSoapIn\">\r\n
797
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetFilteredSkuList\" />\r\n
798
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetFilteredSkuListSoapOut\">\r\n
799
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetFilteredSkuListResponse\"
800
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetFilteredSkuListAPICredentials\">\r\n
801
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
802
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemShippingInfoSoapIn\">\r\n
803
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemShippingInfo\"
804
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemShippingInfoSoapOut\">\r\n
805
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemShippingInfoResponse\"
806
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemShippingInfoAPICredentials\">\r\n
807
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
808
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemQuantityInfoSoapIn\">\r\n
809
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemQuantityInfo\"
810
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemQuantityInfoSoapOut\">\r\n
811
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemQuantityInfoResponse\"
812
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemQuantityInfoAPICredentials\">\r\n
813
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
814
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetClassificationConfigurationInformationSoapIn\">\r\n
815
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetClassificationConfigurationInformation\"
816
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetClassificationConfigurationInformationSoapOut\">\r\n
817
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetClassificationConfigurationInformationResponse\"
818
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetClassificationConfigurationInformationAPICredentials\">\r\n
819
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
820
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemAttributeListSoapIn\">\r\n
821
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemAttributeList\"
822
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemAttributeListSoapOut\">\r\n
823
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemAttributeListResponse\"
824
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemAttributeListAPICredentials\">\r\n
825
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
826
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemVariationInfoSoapIn\">\r\n
827
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemVariationInfo\"
828
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemVariationInfoSoapOut\">\r\n
829
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemVariationInfoResponse\"
830
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemVariationInfoAPICredentials\">\r\n
831
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
832
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemStoreInfoSoapIn\">\r\n
833
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemStoreInfo\"
834
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemStoreInfoSoapOut\">\r\n
835
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemStoreInfoResponse\"
836
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemStoreInfoAPICredentials\">\r\n
837
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
838
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemImageListSoapIn\">\r\n
839
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemImageList\"
840
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemImageListSoapOut\">\r\n
841
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryItemImageListResponse\"
842
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryItemImageListAPICredentials\">\r\n
843
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
844
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryQuantitySoapIn\">\r\n
845
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryQuantity\" />\r\n
846
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryQuantitySoapOut\">\r\n
847
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryQuantityResponse\"
848
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryQuantityAPICredentials\">\r\n
849
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
850
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetInventoryQuantityListSoapIn\">\r\n
851
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryQuantityList\"
852
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryQuantityListSoapOut\">\r\n
853
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetInventoryQuantityListResponse\"
854
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetInventoryQuantityListAPICredentials\">\r\n
855
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
856
+ \ </wsdl:message>\r\n <wsdl:message name=\"DeleteInventoryItemSoapIn\">\r\n
857
+ \ <wsdl:part name=\"parameters\" element=\"tns:DeleteInventoryItem\" />\r\n
858
+ \ </wsdl:message>\r\n <wsdl:message name=\"DeleteInventoryItemSoapOut\">\r\n
859
+ \ <wsdl:part name=\"parameters\" element=\"tns:DeleteInventoryItemResponse\"
860
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"DeleteInventoryItemAPICredentials\">\r\n
861
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
862
+ \ </wsdl:message>\r\n <wsdl:message name=\"SynchInventoryItemSoapIn\">\r\n
863
+ \ <wsdl:part name=\"parameters\" element=\"tns:SynchInventoryItem\" />\r\n
864
+ \ </wsdl:message>\r\n <wsdl:message name=\"SynchInventoryItemSoapOut\">\r\n
865
+ \ <wsdl:part name=\"parameters\" element=\"tns:SynchInventoryItemResponse\"
866
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"SynchInventoryItemAPICredentials\">\r\n
867
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
868
+ \ </wsdl:message>\r\n <wsdl:message name=\"SynchInventoryItemListSoapIn\">\r\n
869
+ \ <wsdl:part name=\"parameters\" element=\"tns:SynchInventoryItemList\"
870
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"SynchInventoryItemListSoapOut\">\r\n
871
+ \ <wsdl:part name=\"parameters\" element=\"tns:SynchInventoryItemListResponse\"
872
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"SynchInventoryItemListAPICredentials\">\r\n
873
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
874
+ \ </wsdl:message>\r\n <wsdl:message name=\"UpdateInventoryItemQuantityAndPriceSoapIn\">\r\n
875
+ \ <wsdl:part name=\"parameters\" element=\"tns:UpdateInventoryItemQuantityAndPrice\"
876
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"UpdateInventoryItemQuantityAndPriceSoapOut\">\r\n
877
+ \ <wsdl:part name=\"parameters\" element=\"tns:UpdateInventoryItemQuantityAndPriceResponse\"
878
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"UpdateInventoryItemQuantityAndPriceAPICredentials\">\r\n
879
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
880
+ \ </wsdl:message>\r\n <wsdl:message name=\"UpdateInventoryItemQuantityAndPriceListSoapIn\">\r\n
881
+ \ <wsdl:part name=\"parameters\" element=\"tns:UpdateInventoryItemQuantityAndPriceList\"
882
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"UpdateInventoryItemQuantityAndPriceListSoapOut\">\r\n
883
+ \ <wsdl:part name=\"parameters\" element=\"tns:UpdateInventoryItemQuantityAndPriceListResponse\"
884
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"UpdateInventoryItemQuantityAndPriceListAPICredentials\">\r\n
885
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
886
+ \ </wsdl:message>\r\n <wsdl:message name=\"AssignLabelListToInventoryItemListSoapIn\">\r\n
887
+ \ <wsdl:part name=\"parameters\" element=\"tns:AssignLabelListToInventoryItemList\"
888
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"AssignLabelListToInventoryItemListSoapOut\">\r\n
889
+ \ <wsdl:part name=\"parameters\" element=\"tns:AssignLabelListToInventoryItemListResponse\"
890
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"AssignLabelListToInventoryItemListAPICredentials\">\r\n
891
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
892
+ \ </wsdl:message>\r\n <wsdl:message name=\"RemoveLabelListFromInventoryItemListSoapIn\">\r\n
893
+ \ <wsdl:part name=\"parameters\" element=\"tns:RemoveLabelListFromInventoryItemList\"
894
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"RemoveLabelListFromInventoryItemListSoapOut\">\r\n
895
+ \ <wsdl:part name=\"parameters\" element=\"tns:RemoveLabelListFromInventoryItemListResponse\"
896
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"RemoveLabelListFromInventoryItemListAPICredentials\">\r\n
897
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
898
+ \ </wsdl:message>\r\n <wsdl:message name=\"AddUpsellRelationshipSoapIn\">\r\n
899
+ \ <wsdl:part name=\"parameters\" element=\"tns:AddUpsellRelationship\" />\r\n
900
+ \ </wsdl:message>\r\n <wsdl:message name=\"AddUpsellRelationshipSoapOut\">\r\n
901
+ \ <wsdl:part name=\"parameters\" element=\"tns:AddUpsellRelationshipResponse\"
902
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"AddUpsellRelationshipAPICredentials\">\r\n
903
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
904
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetUpsellRelationshipSoapIn\">\r\n
905
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetUpsellRelationship\" />\r\n
906
+ \ </wsdl:message>\r\n <wsdl:message name=\"GetUpsellRelationshipSoapOut\">\r\n
907
+ \ <wsdl:part name=\"parameters\" element=\"tns:GetUpsellRelationshipResponse\"
908
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetUpsellRelationshipAPICredentials\">\r\n
909
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
910
+ \ </wsdl:message>\r\n <wsdl:message name=\"DeleteUpsellRelationshipSoapIn\">\r\n
911
+ \ <wsdl:part name=\"parameters\" element=\"tns:DeleteUpsellRelationship\"
912
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"DeleteUpsellRelationshipSoapOut\">\r\n
913
+ \ <wsdl:part name=\"parameters\" element=\"tns:DeleteUpsellRelationshipResponse\"
914
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"DeleteUpsellRelationshipAPICredentials\">\r\n
915
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
916
+ \ </wsdl:message>\r\n <wsdl:message name=\"PingSoapIn\">\r\n <wsdl:part
917
+ name=\"parameters\" element=\"tns:Ping\" />\r\n </wsdl:message>\r\n <wsdl:message
918
+ name=\"PingSoapOut\">\r\n <wsdl:part name=\"parameters\" element=\"tns:PingResponse\"
919
+ />\r\n </wsdl:message>\r\n <wsdl:message name=\"PingAPICredentials\">\r\n
920
+ \ <wsdl:part name=\"APICredentials\" element=\"tns:APICredentials\" />\r\n
921
+ \ </wsdl:message>\r\n <wsdl:portType name=\"InventoryServiceSoap\">\r\n <wsdl:operation
922
+ name=\"DoesSkuExist\">\r\n <wsdl:input message=\"tns:DoesSkuExistSoapIn\"
923
+ />\r\n <wsdl:output message=\"tns:DoesSkuExistSoapOut\" />\r\n </wsdl:operation>\r\n
924
+ \ <wsdl:operation name=\"DoesSkuExistList\">\r\n <wsdl:input message=\"tns:DoesSkuExistListSoapIn\"
925
+ />\r\n <wsdl:output message=\"tns:DoesSkuExistListSoapOut\" />\r\n </wsdl:operation>\r\n
926
+ \ <wsdl:operation name=\"GetInventoryItemList\">\r\n <wsdl:input message=\"tns:GetInventoryItemListSoapIn\"
927
+ />\r\n <wsdl:output message=\"tns:GetInventoryItemListSoapOut\" />\r\n
928
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"GetInventoryItemListWithFullDetail\">\r\n
929
+ \ <wsdl:input message=\"tns:GetInventoryItemListWithFullDetailSoapIn\"
930
+ />\r\n <wsdl:output message=\"tns:GetInventoryItemListWithFullDetailSoapOut\"
931
+ />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"GetFilteredInventoryItemList\">\r\n
932
+ \ <wsdl:input message=\"tns:GetFilteredInventoryItemListSoapIn\" />\r\n
933
+ \ <wsdl:output message=\"tns:GetFilteredInventoryItemListSoapOut\" />\r\n
934
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"GetFilteredSkuList\">\r\n
935
+ \ <wsdl:input message=\"tns:GetFilteredSkuListSoapIn\" />\r\n <wsdl:output
936
+ message=\"tns:GetFilteredSkuListSoapOut\" />\r\n </wsdl:operation>\r\n
937
+ \ <wsdl:operation name=\"GetInventoryItemShippingInfo\">\r\n <wsdl:input
938
+ message=\"tns:GetInventoryItemShippingInfoSoapIn\" />\r\n <wsdl:output
939
+ message=\"tns:GetInventoryItemShippingInfoSoapOut\" />\r\n </wsdl:operation>\r\n
940
+ \ <wsdl:operation name=\"GetInventoryItemQuantityInfo\">\r\n <wsdl:input
941
+ message=\"tns:GetInventoryItemQuantityInfoSoapIn\" />\r\n <wsdl:output
942
+ message=\"tns:GetInventoryItemQuantityInfoSoapOut\" />\r\n </wsdl:operation>\r\n
943
+ \ <wsdl:operation name=\"GetClassificationConfigurationInformation\">\r\n
944
+ \ <wsdl:input message=\"tns:GetClassificationConfigurationInformationSoapIn\"
945
+ />\r\n <wsdl:output message=\"tns:GetClassificationConfigurationInformationSoapOut\"
946
+ />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"GetInventoryItemAttributeList\">\r\n
947
+ \ <wsdl:input message=\"tns:GetInventoryItemAttributeListSoapIn\" />\r\n
948
+ \ <wsdl:output message=\"tns:GetInventoryItemAttributeListSoapOut\" />\r\n
949
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"GetInventoryItemVariationInfo\">\r\n
950
+ \ <wsdl:input message=\"tns:GetInventoryItemVariationInfoSoapIn\" />\r\n
951
+ \ <wsdl:output message=\"tns:GetInventoryItemVariationInfoSoapOut\" />\r\n
952
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"GetInventoryItemStoreInfo\">\r\n
953
+ \ <wsdl:input message=\"tns:GetInventoryItemStoreInfoSoapIn\" />\r\n <wsdl:output
954
+ message=\"tns:GetInventoryItemStoreInfoSoapOut\" />\r\n </wsdl:operation>\r\n
955
+ \ <wsdl:operation name=\"GetInventoryItemImageList\">\r\n <wsdl:input
956
+ message=\"tns:GetInventoryItemImageListSoapIn\" />\r\n <wsdl:output message=\"tns:GetInventoryItemImageListSoapOut\"
957
+ />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"GetInventoryQuantity\">\r\n
958
+ \ <wsdl:input message=\"tns:GetInventoryQuantitySoapIn\" />\r\n <wsdl:output
959
+ message=\"tns:GetInventoryQuantitySoapOut\" />\r\n </wsdl:operation>\r\n
960
+ \ <wsdl:operation name=\"GetInventoryQuantityList\">\r\n <wsdl:input
961
+ message=\"tns:GetInventoryQuantityListSoapIn\" />\r\n <wsdl:output message=\"tns:GetInventoryQuantityListSoapOut\"
962
+ />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"DeleteInventoryItem\">\r\n
963
+ \ <wsdl:input message=\"tns:DeleteInventoryItemSoapIn\" />\r\n <wsdl:output
964
+ message=\"tns:DeleteInventoryItemSoapOut\" />\r\n </wsdl:operation>\r\n
965
+ \ <wsdl:operation name=\"SynchInventoryItem\">\r\n <wsdl:input message=\"tns:SynchInventoryItemSoapIn\"
966
+ />\r\n <wsdl:output message=\"tns:SynchInventoryItemSoapOut\" />\r\n
967
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"SynchInventoryItemList\">\r\n
968
+ \ <wsdl:input message=\"tns:SynchInventoryItemListSoapIn\" />\r\n <wsdl:output
969
+ message=\"tns:SynchInventoryItemListSoapOut\" />\r\n </wsdl:operation>\r\n
970
+ \ <wsdl:operation name=\"UpdateInventoryItemQuantityAndPrice\">\r\n <wsdl:input
971
+ message=\"tns:UpdateInventoryItemQuantityAndPriceSoapIn\" />\r\n <wsdl:output
972
+ message=\"tns:UpdateInventoryItemQuantityAndPriceSoapOut\" />\r\n </wsdl:operation>\r\n
973
+ \ <wsdl:operation name=\"UpdateInventoryItemQuantityAndPriceList\">\r\n
974
+ \ <wsdl:input message=\"tns:UpdateInventoryItemQuantityAndPriceListSoapIn\"
975
+ />\r\n <wsdl:output message=\"tns:UpdateInventoryItemQuantityAndPriceListSoapOut\"
976
+ />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"AssignLabelListToInventoryItemList\">\r\n
977
+ \ <wsdl:input message=\"tns:AssignLabelListToInventoryItemListSoapIn\"
978
+ />\r\n <wsdl:output message=\"tns:AssignLabelListToInventoryItemListSoapOut\"
979
+ />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"RemoveLabelListFromInventoryItemList\">\r\n
980
+ \ <wsdl:input message=\"tns:RemoveLabelListFromInventoryItemListSoapIn\"
981
+ />\r\n <wsdl:output message=\"tns:RemoveLabelListFromInventoryItemListSoapOut\"
982
+ />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"AddUpsellRelationship\">\r\n
983
+ \ <wsdl:input message=\"tns:AddUpsellRelationshipSoapIn\" />\r\n <wsdl:output
984
+ message=\"tns:AddUpsellRelationshipSoapOut\" />\r\n </wsdl:operation>\r\n
985
+ \ <wsdl:operation name=\"GetUpsellRelationship\">\r\n <wsdl:input message=\"tns:GetUpsellRelationshipSoapIn\"
986
+ />\r\n <wsdl:output message=\"tns:GetUpsellRelationshipSoapOut\" />\r\n
987
+ \ </wsdl:operation>\r\n <wsdl:operation name=\"DeleteUpsellRelationship\">\r\n
988
+ \ <wsdl:input message=\"tns:DeleteUpsellRelationshipSoapIn\" />\r\n <wsdl:output
989
+ message=\"tns:DeleteUpsellRelationshipSoapOut\" />\r\n </wsdl:operation>\r\n
990
+ \ <wsdl:operation name=\"Ping\">\r\n <wsdl:input message=\"tns:PingSoapIn\"
991
+ />\r\n <wsdl:output message=\"tns:PingSoapOut\" />\r\n </wsdl:operation>\r\n
992
+ \ </wsdl:portType>\r\n <wsdl:binding name=\"InventoryServiceSoap\" type=\"tns:InventoryServiceSoap\">\r\n
993
+ \ <soap:binding transport=\"http://schemas.xmlsoap.org/soap/http\" />\r\n
994
+ \ <wsdl:operation name=\"DoesSkuExist\">\r\n <soap:operation soapAction=\"http://api.channeladvisor.com/webservices/DoesSkuExist\"
995
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
996
+ />\r\n <soap:header message=\"tns:DoesSkuExistAPICredentials\" part=\"APICredentials\"
997
+ use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body
998
+ use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
999
+ name=\"DoesSkuExistList\">\r\n <soap:operation soapAction=\"http://api.channeladvisor.com/webservices/DoesSkuExistList\"
1000
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1001
+ />\r\n <soap:header message=\"tns:DoesSkuExistListAPICredentials\"
1002
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1003
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1004
+ \ <wsdl:operation name=\"GetInventoryItemList\">\r\n <soap:operation
1005
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemList\"
1006
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1007
+ />\r\n <soap:header message=\"tns:GetInventoryItemListAPICredentials\"
1008
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1009
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1010
+ \ <wsdl:operation name=\"GetInventoryItemListWithFullDetail\">\r\n <soap:operation
1011
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemListWithFullDetail\"
1012
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1013
+ />\r\n <soap:header message=\"tns:GetInventoryItemListWithFullDetailAPICredentials\"
1014
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1015
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1016
+ \ <wsdl:operation name=\"GetFilteredInventoryItemList\">\r\n <soap:operation
1017
+ soapAction=\"http://api.channeladvisor.com/webservices/GetFilteredInventoryItemList\"
1018
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1019
+ />\r\n <soap:header message=\"tns:GetFilteredInventoryItemListAPICredentials\"
1020
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1021
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1022
+ \ <wsdl:operation name=\"GetFilteredSkuList\">\r\n <soap:operation
1023
+ soapAction=\"http://api.channeladvisor.com/webservices/GetFilteredSkuList\"
1024
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1025
+ />\r\n <soap:header message=\"tns:GetFilteredSkuListAPICredentials\"
1026
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1027
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1028
+ \ <wsdl:operation name=\"GetInventoryItemShippingInfo\">\r\n <soap:operation
1029
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemShippingInfo\"
1030
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1031
+ />\r\n <soap:header message=\"tns:GetInventoryItemShippingInfoAPICredentials\"
1032
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1033
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1034
+ \ <wsdl:operation name=\"GetInventoryItemQuantityInfo\">\r\n <soap:operation
1035
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemQuantityInfo\"
1036
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1037
+ />\r\n <soap:header message=\"tns:GetInventoryItemQuantityInfoAPICredentials\"
1038
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1039
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1040
+ \ <wsdl:operation name=\"GetClassificationConfigurationInformation\">\r\n
1041
+ \ <soap:operation soapAction=\"http://api.channeladvisor.com/webservices/GetClassificationConfigurationInformation\"
1042
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1043
+ />\r\n <soap:header message=\"tns:GetClassificationConfigurationInformationAPICredentials\"
1044
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1045
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1046
+ \ <wsdl:operation name=\"GetInventoryItemAttributeList\">\r\n <soap:operation
1047
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemAttributeList\"
1048
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1049
+ />\r\n <soap:header message=\"tns:GetInventoryItemAttributeListAPICredentials\"
1050
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1051
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1052
+ \ <wsdl:operation name=\"GetInventoryItemVariationInfo\">\r\n <soap:operation
1053
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemVariationInfo\"
1054
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1055
+ />\r\n <soap:header message=\"tns:GetInventoryItemVariationInfoAPICredentials\"
1056
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1057
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1058
+ \ <wsdl:operation name=\"GetInventoryItemStoreInfo\">\r\n <soap:operation
1059
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemStoreInfo\"
1060
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1061
+ />\r\n <soap:header message=\"tns:GetInventoryItemStoreInfoAPICredentials\"
1062
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1063
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1064
+ \ <wsdl:operation name=\"GetInventoryItemImageList\">\r\n <soap:operation
1065
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemImageList\"
1066
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1067
+ />\r\n <soap:header message=\"tns:GetInventoryItemImageListAPICredentials\"
1068
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1069
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1070
+ \ <wsdl:operation name=\"GetInventoryQuantity\">\r\n <soap:operation
1071
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryQuantity\"
1072
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1073
+ />\r\n <soap:header message=\"tns:GetInventoryQuantityAPICredentials\"
1074
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1075
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1076
+ \ <wsdl:operation name=\"GetInventoryQuantityList\">\r\n <soap:operation
1077
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryQuantityList\"
1078
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1079
+ />\r\n <soap:header message=\"tns:GetInventoryQuantityListAPICredentials\"
1080
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1081
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1082
+ \ <wsdl:operation name=\"DeleteInventoryItem\">\r\n <soap:operation
1083
+ soapAction=\"http://api.channeladvisor.com/webservices/DeleteInventoryItem\"
1084
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1085
+ />\r\n <soap:header message=\"tns:DeleteInventoryItemAPICredentials\"
1086
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1087
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1088
+ \ <wsdl:operation name=\"SynchInventoryItem\">\r\n <soap:operation
1089
+ soapAction=\"http://api.channeladvisor.com/webservices/SynchInventoryItem\"
1090
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1091
+ />\r\n <soap:header message=\"tns:SynchInventoryItemAPICredentials\"
1092
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1093
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1094
+ \ <wsdl:operation name=\"SynchInventoryItemList\">\r\n <soap:operation
1095
+ soapAction=\"http://api.channeladvisor.com/webservices/SynchInventoryItemList\"
1096
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1097
+ />\r\n <soap:header message=\"tns:SynchInventoryItemListAPICredentials\"
1098
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1099
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1100
+ \ <wsdl:operation name=\"UpdateInventoryItemQuantityAndPrice\">\r\n <soap:operation
1101
+ soapAction=\"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice\"
1102
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1103
+ />\r\n <soap:header message=\"tns:UpdateInventoryItemQuantityAndPriceAPICredentials\"
1104
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1105
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1106
+ \ <wsdl:operation name=\"UpdateInventoryItemQuantityAndPriceList\">\r\n
1107
+ \ <soap:operation soapAction=\"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPriceList\"
1108
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1109
+ />\r\n <soap:header message=\"tns:UpdateInventoryItemQuantityAndPriceListAPICredentials\"
1110
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1111
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1112
+ \ <wsdl:operation name=\"AssignLabelListToInventoryItemList\">\r\n <soap:operation
1113
+ soapAction=\"http://api.channeladvisor.com/webservices/AssignLabelListToInventoryItemList\"
1114
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1115
+ />\r\n <soap:header message=\"tns:AssignLabelListToInventoryItemListAPICredentials\"
1116
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1117
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1118
+ \ <wsdl:operation name=\"RemoveLabelListFromInventoryItemList\">\r\n <soap:operation
1119
+ soapAction=\"http://api.channeladvisor.com/webservices/RemoveLabelListFromInventoryItemList\"
1120
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1121
+ />\r\n <soap:header message=\"tns:RemoveLabelListFromInventoryItemListAPICredentials\"
1122
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1123
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1124
+ \ <wsdl:operation name=\"AddUpsellRelationship\">\r\n <soap:operation
1125
+ soapAction=\"http://api.channeladvisor.com/webservices/AddUpsellRelationship\"
1126
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1127
+ />\r\n <soap:header message=\"tns:AddUpsellRelationshipAPICredentials\"
1128
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1129
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1130
+ \ <wsdl:operation name=\"GetUpsellRelationship\">\r\n <soap:operation
1131
+ soapAction=\"http://api.channeladvisor.com/webservices/GetUpsellRelationship\"
1132
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1133
+ />\r\n <soap:header message=\"tns:GetUpsellRelationshipAPICredentials\"
1134
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1135
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1136
+ \ <wsdl:operation name=\"DeleteUpsellRelationship\">\r\n <soap:operation
1137
+ soapAction=\"http://api.channeladvisor.com/webservices/DeleteUpsellRelationship\"
1138
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1139
+ />\r\n <soap:header message=\"tns:DeleteUpsellRelationshipAPICredentials\"
1140
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1141
+ \ <soap:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1142
+ \ <wsdl:operation name=\"Ping\">\r\n <soap:operation soapAction=\"http://api.channeladvisor.com/webservices/Ping\"
1143
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
1144
+ />\r\n <soap:header message=\"tns:PingAPICredentials\" part=\"APICredentials\"
1145
+ use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body
1146
+ use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
1147
+ \ <wsdl:binding name=\"InventoryServiceSoap12\" type=\"tns:InventoryServiceSoap\">\r\n
1148
+ \ <soap12:binding transport=\"http://schemas.xmlsoap.org/soap/http\" />\r\n
1149
+ \ <wsdl:operation name=\"DoesSkuExist\">\r\n <soap12:operation soapAction=\"http://api.channeladvisor.com/webservices/DoesSkuExist\"
1150
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1151
+ />\r\n <soap12:header message=\"tns:DoesSkuExistAPICredentials\" part=\"APICredentials\"
1152
+ use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body
1153
+ use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1154
+ name=\"DoesSkuExistList\">\r\n <soap12:operation soapAction=\"http://api.channeladvisor.com/webservices/DoesSkuExistList\"
1155
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1156
+ />\r\n <soap12:header message=\"tns:DoesSkuExistListAPICredentials\"
1157
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1158
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1159
+ \ <wsdl:operation name=\"GetInventoryItemList\">\r\n <soap12:operation
1160
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemList\"
1161
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1162
+ />\r\n <soap12:header message=\"tns:GetInventoryItemListAPICredentials\"
1163
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1164
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1165
+ \ <wsdl:operation name=\"GetInventoryItemListWithFullDetail\">\r\n <soap12:operation
1166
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemListWithFullDetail\"
1167
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1168
+ />\r\n <soap12:header message=\"tns:GetInventoryItemListWithFullDetailAPICredentials\"
1169
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1170
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1171
+ \ <wsdl:operation name=\"GetFilteredInventoryItemList\">\r\n <soap12:operation
1172
+ soapAction=\"http://api.channeladvisor.com/webservices/GetFilteredInventoryItemList\"
1173
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1174
+ />\r\n <soap12:header message=\"tns:GetFilteredInventoryItemListAPICredentials\"
1175
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1176
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1177
+ \ <wsdl:operation name=\"GetFilteredSkuList\">\r\n <soap12:operation
1178
+ soapAction=\"http://api.channeladvisor.com/webservices/GetFilteredSkuList\"
1179
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1180
+ />\r\n <soap12:header message=\"tns:GetFilteredSkuListAPICredentials\"
1181
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1182
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1183
+ \ <wsdl:operation name=\"GetInventoryItemShippingInfo\">\r\n <soap12:operation
1184
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemShippingInfo\"
1185
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1186
+ />\r\n <soap12:header message=\"tns:GetInventoryItemShippingInfoAPICredentials\"
1187
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1188
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1189
+ \ <wsdl:operation name=\"GetInventoryItemQuantityInfo\">\r\n <soap12:operation
1190
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemQuantityInfo\"
1191
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1192
+ />\r\n <soap12:header message=\"tns:GetInventoryItemQuantityInfoAPICredentials\"
1193
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1194
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1195
+ \ <wsdl:operation name=\"GetClassificationConfigurationInformation\">\r\n
1196
+ \ <soap12:operation soapAction=\"http://api.channeladvisor.com/webservices/GetClassificationConfigurationInformation\"
1197
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1198
+ />\r\n <soap12:header message=\"tns:GetClassificationConfigurationInformationAPICredentials\"
1199
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1200
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1201
+ \ <wsdl:operation name=\"GetInventoryItemAttributeList\">\r\n <soap12:operation
1202
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemAttributeList\"
1203
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1204
+ />\r\n <soap12:header message=\"tns:GetInventoryItemAttributeListAPICredentials\"
1205
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1206
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1207
+ \ <wsdl:operation name=\"GetInventoryItemVariationInfo\">\r\n <soap12:operation
1208
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemVariationInfo\"
1209
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1210
+ />\r\n <soap12:header message=\"tns:GetInventoryItemVariationInfoAPICredentials\"
1211
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1212
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1213
+ \ <wsdl:operation name=\"GetInventoryItemStoreInfo\">\r\n <soap12:operation
1214
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemStoreInfo\"
1215
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1216
+ />\r\n <soap12:header message=\"tns:GetInventoryItemStoreInfoAPICredentials\"
1217
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1218
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1219
+ \ <wsdl:operation name=\"GetInventoryItemImageList\">\r\n <soap12:operation
1220
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryItemImageList\"
1221
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1222
+ />\r\n <soap12:header message=\"tns:GetInventoryItemImageListAPICredentials\"
1223
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1224
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1225
+ \ <wsdl:operation name=\"GetInventoryQuantity\">\r\n <soap12:operation
1226
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryQuantity\"
1227
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1228
+ />\r\n <soap12:header message=\"tns:GetInventoryQuantityAPICredentials\"
1229
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1230
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1231
+ \ <wsdl:operation name=\"GetInventoryQuantityList\">\r\n <soap12:operation
1232
+ soapAction=\"http://api.channeladvisor.com/webservices/GetInventoryQuantityList\"
1233
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1234
+ />\r\n <soap12:header message=\"tns:GetInventoryQuantityListAPICredentials\"
1235
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1236
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1237
+ \ <wsdl:operation name=\"DeleteInventoryItem\">\r\n <soap12:operation
1238
+ soapAction=\"http://api.channeladvisor.com/webservices/DeleteInventoryItem\"
1239
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1240
+ />\r\n <soap12:header message=\"tns:DeleteInventoryItemAPICredentials\"
1241
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1242
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1243
+ \ <wsdl:operation name=\"SynchInventoryItem\">\r\n <soap12:operation
1244
+ soapAction=\"http://api.channeladvisor.com/webservices/SynchInventoryItem\"
1245
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1246
+ />\r\n <soap12:header message=\"tns:SynchInventoryItemAPICredentials\"
1247
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1248
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1249
+ \ <wsdl:operation name=\"SynchInventoryItemList\">\r\n <soap12:operation
1250
+ soapAction=\"http://api.channeladvisor.com/webservices/SynchInventoryItemList\"
1251
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1252
+ />\r\n <soap12:header message=\"tns:SynchInventoryItemListAPICredentials\"
1253
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1254
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1255
+ \ <wsdl:operation name=\"UpdateInventoryItemQuantityAndPrice\">\r\n <soap12:operation
1256
+ soapAction=\"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice\"
1257
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1258
+ />\r\n <soap12:header message=\"tns:UpdateInventoryItemQuantityAndPriceAPICredentials\"
1259
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1260
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1261
+ \ <wsdl:operation name=\"UpdateInventoryItemQuantityAndPriceList\">\r\n
1262
+ \ <soap12:operation soapAction=\"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPriceList\"
1263
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1264
+ />\r\n <soap12:header message=\"tns:UpdateInventoryItemQuantityAndPriceListAPICredentials\"
1265
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1266
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1267
+ \ <wsdl:operation name=\"AssignLabelListToInventoryItemList\">\r\n <soap12:operation
1268
+ soapAction=\"http://api.channeladvisor.com/webservices/AssignLabelListToInventoryItemList\"
1269
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1270
+ />\r\n <soap12:header message=\"tns:AssignLabelListToInventoryItemListAPICredentials\"
1271
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1272
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1273
+ \ <wsdl:operation name=\"RemoveLabelListFromInventoryItemList\">\r\n <soap12:operation
1274
+ soapAction=\"http://api.channeladvisor.com/webservices/RemoveLabelListFromInventoryItemList\"
1275
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1276
+ />\r\n <soap12:header message=\"tns:RemoveLabelListFromInventoryItemListAPICredentials\"
1277
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1278
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1279
+ \ <wsdl:operation name=\"AddUpsellRelationship\">\r\n <soap12:operation
1280
+ soapAction=\"http://api.channeladvisor.com/webservices/AddUpsellRelationship\"
1281
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1282
+ />\r\n <soap12:header message=\"tns:AddUpsellRelationshipAPICredentials\"
1283
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1284
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1285
+ \ <wsdl:operation name=\"GetUpsellRelationship\">\r\n <soap12:operation
1286
+ soapAction=\"http://api.channeladvisor.com/webservices/GetUpsellRelationship\"
1287
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1288
+ />\r\n <soap12:header message=\"tns:GetUpsellRelationshipAPICredentials\"
1289
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1290
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1291
+ \ <wsdl:operation name=\"DeleteUpsellRelationship\">\r\n <soap12:operation
1292
+ soapAction=\"http://api.channeladvisor.com/webservices/DeleteUpsellRelationship\"
1293
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1294
+ />\r\n <soap12:header message=\"tns:DeleteUpsellRelationshipAPICredentials\"
1295
+ part=\"APICredentials\" use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1296
+ \ <soap12:body use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1297
+ \ <wsdl:operation name=\"Ping\">\r\n <soap12:operation soapAction=\"http://api.channeladvisor.com/webservices/Ping\"
1298
+ style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
1299
+ />\r\n <soap12:header message=\"tns:PingAPICredentials\" part=\"APICredentials\"
1300
+ use=\"literal\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body
1301
+ use=\"literal\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
1302
+ \ <wsdl:service name=\"InventoryService\">\r\n <wsdl:port name=\"InventoryServiceSoap\"
1303
+ binding=\"tns:InventoryServiceSoap\">\r\n <soap:address location=\"https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx\"
1304
+ />\r\n </wsdl:port>\r\n <wsdl:port name=\"InventoryServiceSoap12\" binding=\"tns:InventoryServiceSoap12\">\r\n
1305
+ \ <soap12:address location=\"https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx\"
1306
+ />\r\n </wsdl:port>\r\n </wsdl:service>\r\n</wsdl:definitions>"
1307
+ http_version: '1.1'
1308
+ recorded_at: Fri, 15 Jun 2012 05:01:58 GMT
1309
+ - request:
1310
+ method: post
1311
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
1312
+ body:
1313
+ encoding: US-ASCII
1314
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1315
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
1316
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:QuantityInfo><ins0:UpdateType>Absolute</ins0:UpdateType><ins0:Total>5000</ins0:Total></ins0:QuantityInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
1317
+ headers:
1318
+ soapaction:
1319
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
1320
+ content-type:
1321
+ - text/xml;charset=UTF-8
1322
+ content-length:
1323
+ - '883'
1324
+ accept:
1325
+ - ! '*/*'
1326
+ user-agent:
1327
+ - Ruby
1328
+ response:
1329
+ status:
1330
+ code: 200
1331
+ message: OK
1332
+ headers:
1333
+ date:
1334
+ - Fri, 15 Jun 2012 05:01:59 GMT
1335
+ server:
1336
+ - Microsoft-IIS/6.0
1337
+ x-servername:
1338
+ - RDU-IISWEB-08
1339
+ x-powered-by:
1340
+ - ASP.NET
1341
+ x-aspnet-version:
1342
+ - 4.0.30319
1343
+ cache-control:
1344
+ - private, max-age=0
1345
+ content-type:
1346
+ - text/xml; charset=utf-8
1347
+ content-length:
1348
+ - '556'
1349
+ body:
1350
+ encoding: US-ASCII
1351
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
1352
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
1353
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
1354
+ http_version: '1.1'
1355
+ recorded_at: Fri, 15 Jun 2012 05:02:00 GMT
1356
+ - request:
1357
+ method: post
1358
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/InventoryService.asmx
1359
+ body:
1360
+ encoding: US-ASCII
1361
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1362
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
1363
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:UpdateInventoryItemQuantityAndPrice><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:itemQuantityAndPrice><ins0:Sku>FAKE001</ins0:Sku><ins0:QuantityInfo><ins0:UpdateType>Absolute</ins0:UpdateType><ins0:Total>5000</ins0:Total></ins0:QuantityInfo></ins0:itemQuantityAndPrice></ins0:UpdateInventoryItemQuantityAndPrice></env:Body></env:Envelope>
1364
+ headers:
1365
+ soapaction:
1366
+ - ! '"http://api.channeladvisor.com/webservices/UpdateInventoryItemQuantityAndPrice"'
1367
+ content-type:
1368
+ - text/xml;charset=UTF-8
1369
+ content-length:
1370
+ - '883'
1371
+ accept:
1372
+ - ! '*/*'
1373
+ user-agent:
1374
+ - Ruby
1375
+ response:
1376
+ status:
1377
+ code: 200
1378
+ message: OK
1379
+ headers:
1380
+ date:
1381
+ - Fri, 15 Jun 2012 05:02:00 GMT
1382
+ server:
1383
+ - Microsoft-IIS/6.0
1384
+ x-servername:
1385
+ - RDU-IISWEB-10
1386
+ x-powered-by:
1387
+ - ASP.NET
1388
+ x-aspnet-version:
1389
+ - 4.0.30319
1390
+ cache-control:
1391
+ - private, max-age=0
1392
+ content-type:
1393
+ - text/xml; charset=utf-8
1394
+ content-length:
1395
+ - '556'
1396
+ body:
1397
+ encoding: US-ASCII
1398
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
1399
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><UpdateInventoryItemQuantityAndPriceResponse
1400
+ xmlns="http://api.channeladvisor.com/webservices/"><UpdateInventoryItemQuantityAndPriceResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData>true</ResultData></UpdateInventoryItemQuantityAndPriceResult></UpdateInventoryItemQuantityAndPriceResponse></soap:Body></soap:Envelope>
1401
+ http_version: '1.1'
1402
+ recorded_at: Fri, 15 Jun 2012 05:02:01 GMT
1403
+ recorded_with: VCR 2.2.0