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,56 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.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/"
11
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:SubmitOrderShipmentList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID><ins0:ShipmentList><ins0:ShipmentList><ins0:OrderShipment><ins0:OrderId>123456</ins0:OrderId><ins0:ClientOrderIdentifier>ABCD1234</ins0:ClientOrderIdentifier><ins0:ShipmentType>Full</ins0:ShipmentType><ins0:FullShipment><ins0:dateShippedGMT>2012-05-19T00:00:00+00:00</ins0:dateShippedGMT><ins0:carrierCode>UPS</ins0:carrierCode><ins0:classCode>GND</ins0:classCode><ins0:trackingNumber>1ZABCE09813473497</ins0:trackingNumber><ins0:sellerFulfillmentID>999999</ins0:sellerFulfillmentID><ins0:shipmentCost>5.99</ins0:shipmentCost><ins0:shipmentTaxCost>1.99</ins0:shipmentTaxCost><ins0:insuranceCost>2.99</ins0:insuranceCost></ins0:FullShipment></ins0:OrderShipment><ins0:OrderShipment><ins0:OrderId>123456</ins0:OrderId><ins0:ClientOrderIdentifier>ABCD1234</ins0:ClientOrderIdentifier><ins0:ShipmentType>Full</ins0:ShipmentType><ins0:FullShipment><ins0:dateShippedGMT>2012-05-19T00:00:00+00:00</ins0:dateShippedGMT><ins0:carrierCode>USPS</ins0:carrierCode><ins0:classCode>PRIORITY</ins0:classCode><ins0:trackingNumber>99999000000000</ins0:trackingNumber><ins0:sellerFulfillmentID>999999</ins0:sellerFulfillmentID><ins0:shipmentCost>5.99</ins0:shipmentCost><ins0:shipmentTaxCost>1.99</ins0:shipmentTaxCost><ins0:insuranceCost>2.99</ins0:insuranceCost></ins0:FullShipment></ins0:OrderShipment></ins0:ShipmentList></ins0:ShipmentList></ins0:SubmitOrderShipmentList></env:Body></env:Envelope>
12
+ headers:
13
+ soapaction:
14
+ - ! '"http://api.channeladvisor.com/webservices/SubmitOrderShipmentList"'
15
+ content-type:
16
+ - text/xml;charset=UTF-8
17
+ content-length:
18
+ - '2065'
19
+ accept:
20
+ - ! '*/*'
21
+ user-agent:
22
+ - Ruby
23
+ response:
24
+ status:
25
+ code: 200
26
+ message: OK
27
+ headers:
28
+ date:
29
+ - Wed, 13 Jun 2012 23:02:27 GMT
30
+ server:
31
+ - Microsoft-IIS/6.0
32
+ x-servername:
33
+ - RDU-IISWEB-04
34
+ x-powered-by:
35
+ - ASP.NET
36
+ x-aspnet-version:
37
+ - 4.0.30319
38
+ cache-control:
39
+ - private, max-age=0
40
+ content-type:
41
+ - text/xml; charset=utf-8
42
+ content-length:
43
+ - '1016'
44
+ body:
45
+ encoding: US-ASCII
46
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
47
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><SubmitOrderShipmentListResponse
48
+ xmlns="http://api.channeladvisor.com/webservices/"><SubmitOrderShipmentListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShipmentResponse><Success
49
+ xmlns="http://api.channeladvisor.com/datacontracts/ShippingService">false</Success><Message
50
+ xmlns="http://api.channeladvisor.com/datacontracts/ShippingService">An unexpected
51
+ error occurred involving Order 123456. Please make sure sufficient unshipped
52
+ quantity exists on the order and that the Carrier and Class Codes are valid.</Message></ShipmentResponse><ShipmentResponse><Success
53
+ xmlns="http://api.channeladvisor.com/datacontracts/ShippingService">true</Success></ShipmentResponse></ResultData></SubmitOrderShipmentListResult></SubmitOrderShipmentListResponse></soap:Body></soap:Envelope>
54
+ http_version: '1.1'
55
+ recorded_at: Wed, 13 Jun 2012 23:02:27 GMT
56
+ recorded_with: VCR 2.2.1
@@ -0,0 +1,953 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.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/"
11
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
12
+ headers:
13
+ soapaction:
14
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
15
+ content-type:
16
+ - text/xml;charset=UTF-8
17
+ content-length:
18
+ - '736'
19
+ accept:
20
+ - ! '*/*'
21
+ user-agent:
22
+ - Ruby
23
+ response:
24
+ status:
25
+ code: 200
26
+ message: OK
27
+ headers:
28
+ date:
29
+ - Thu, 14 Jun 2012 05:32:49 GMT
30
+ server:
31
+ - Microsoft-IIS/6.0
32
+ x-servername:
33
+ - RDU-IISWEB-08
34
+ x-powered-by:
35
+ - ASP.NET
36
+ x-aspnet-version:
37
+ - 4.0.30319
38
+ cache-control:
39
+ - private, max-age=0
40
+ content-type:
41
+ - text/xml; charset=utf-8
42
+ content-length:
43
+ - '1119'
44
+ body:
45
+ encoding: US-ASCII
46
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
47
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
48
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
49
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
50
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
51
+ http_version: '1.1'
52
+ recorded_at: Thu, 14 Jun 2012 05:32:50 GMT
53
+ - request:
54
+ method: post
55
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
56
+ body:
57
+ encoding: US-ASCII
58
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
59
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
60
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
61
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
62
+ headers:
63
+ soapaction:
64
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
65
+ content-type:
66
+ - text/xml;charset=UTF-8
67
+ content-length:
68
+ - '736'
69
+ accept:
70
+ - ! '*/*'
71
+ user-agent:
72
+ - Ruby
73
+ response:
74
+ status:
75
+ code: 200
76
+ message: OK
77
+ headers:
78
+ date:
79
+ - Thu, 14 Jun 2012 05:32:50 GMT
80
+ server:
81
+ - Microsoft-IIS/6.0
82
+ x-servername:
83
+ - RDU-IISWEB-03
84
+ x-powered-by:
85
+ - ASP.NET
86
+ x-aspnet-version:
87
+ - 4.0.30319
88
+ cache-control:
89
+ - private, max-age=0
90
+ content-type:
91
+ - text/xml; charset=utf-8
92
+ content-length:
93
+ - '1119'
94
+ body:
95
+ encoding: US-ASCII
96
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
97
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
98
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
99
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
100
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
101
+ http_version: '1.1'
102
+ recorded_at: Thu, 14 Jun 2012 05:32:50 GMT
103
+ - request:
104
+ method: post
105
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
106
+ body:
107
+ encoding: US-ASCII
108
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
109
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
110
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
111
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
112
+ headers:
113
+ soapaction:
114
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
115
+ content-type:
116
+ - text/xml;charset=UTF-8
117
+ content-length:
118
+ - '736'
119
+ accept:
120
+ - ! '*/*'
121
+ user-agent:
122
+ - Ruby
123
+ response:
124
+ status:
125
+ code: 200
126
+ message: OK
127
+ headers:
128
+ date:
129
+ - Thu, 14 Jun 2012 05:32:51 GMT
130
+ server:
131
+ - Microsoft-IIS/6.0
132
+ x-servername:
133
+ - RDU-IISWEB-09
134
+ x-powered-by:
135
+ - ASP.NET
136
+ x-aspnet-version:
137
+ - 4.0.30319
138
+ cache-control:
139
+ - private, max-age=0
140
+ content-type:
141
+ - text/xml; charset=utf-8
142
+ content-length:
143
+ - '1119'
144
+ body:
145
+ encoding: US-ASCII
146
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
147
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
148
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
149
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
150
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
151
+ http_version: '1.1'
152
+ recorded_at: Thu, 14 Jun 2012 05:32:51 GMT
153
+ - request:
154
+ method: post
155
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
156
+ body:
157
+ encoding: US-ASCII
158
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
159
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
160
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
161
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
162
+ headers:
163
+ soapaction:
164
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
165
+ content-type:
166
+ - text/xml;charset=UTF-8
167
+ content-length:
168
+ - '736'
169
+ accept:
170
+ - ! '*/*'
171
+ user-agent:
172
+ - Ruby
173
+ response:
174
+ status:
175
+ code: 200
176
+ message: OK
177
+ headers:
178
+ date:
179
+ - Thu, 14 Jun 2012 05:32:52 GMT
180
+ server:
181
+ - Microsoft-IIS/6.0
182
+ x-servername:
183
+ - RDU-IISWEB-11
184
+ x-powered-by:
185
+ - ASP.NET
186
+ x-aspnet-version:
187
+ - 4.0.30319
188
+ cache-control:
189
+ - private, max-age=0
190
+ content-type:
191
+ - text/xml; charset=utf-8
192
+ content-length:
193
+ - '1119'
194
+ body:
195
+ encoding: US-ASCII
196
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
197
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
198
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
199
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
200
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
201
+ http_version: '1.1'
202
+ recorded_at: Thu, 14 Jun 2012 05:32:52 GMT
203
+ - request:
204
+ method: post
205
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
206
+ body:
207
+ encoding: US-ASCII
208
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
209
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
210
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
211
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
212
+ headers:
213
+ soapaction:
214
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
215
+ content-type:
216
+ - text/xml;charset=UTF-8
217
+ content-length:
218
+ - '736'
219
+ accept:
220
+ - ! '*/*'
221
+ user-agent:
222
+ - Ruby
223
+ response:
224
+ status:
225
+ code: 200
226
+ message: OK
227
+ headers:
228
+ date:
229
+ - Thu, 14 Jun 2012 05:32:52 GMT
230
+ server:
231
+ - Microsoft-IIS/6.0
232
+ x-servername:
233
+ - RDU-IISWEB-08
234
+ x-powered-by:
235
+ - ASP.NET
236
+ x-aspnet-version:
237
+ - 4.0.30319
238
+ cache-control:
239
+ - private, max-age=0
240
+ content-type:
241
+ - text/xml; charset=utf-8
242
+ content-length:
243
+ - '1119'
244
+ body:
245
+ encoding: US-ASCII
246
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
247
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
248
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
249
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
250
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
251
+ http_version: '1.1'
252
+ recorded_at: Thu, 14 Jun 2012 05:32:53 GMT
253
+ - request:
254
+ method: post
255
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
256
+ body:
257
+ encoding: US-ASCII
258
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
259
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
260
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
261
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
262
+ headers:
263
+ soapaction:
264
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
265
+ content-type:
266
+ - text/xml;charset=UTF-8
267
+ content-length:
268
+ - '736'
269
+ accept:
270
+ - ! '*/*'
271
+ user-agent:
272
+ - Ruby
273
+ response:
274
+ status:
275
+ code: 200
276
+ message: OK
277
+ headers:
278
+ date:
279
+ - Thu, 14 Jun 2012 05:32:53 GMT
280
+ server:
281
+ - Microsoft-IIS/6.0
282
+ x-servername:
283
+ - RDU-IISWEB-10
284
+ x-powered-by:
285
+ - ASP.NET
286
+ x-aspnet-version:
287
+ - 4.0.30319
288
+ cache-control:
289
+ - private, max-age=0
290
+ content-type:
291
+ - text/xml; charset=utf-8
292
+ content-length:
293
+ - '1119'
294
+ body:
295
+ encoding: US-ASCII
296
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
297
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
298
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
299
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
300
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
301
+ http_version: '1.1'
302
+ recorded_at: Thu, 14 Jun 2012 05:32:53 GMT
303
+ - request:
304
+ method: post
305
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
306
+ body:
307
+ encoding: US-ASCII
308
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
309
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
310
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
311
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
312
+ headers:
313
+ soapaction:
314
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
315
+ content-type:
316
+ - text/xml;charset=UTF-8
317
+ content-length:
318
+ - '736'
319
+ accept:
320
+ - ! '*/*'
321
+ user-agent:
322
+ - Ruby
323
+ response:
324
+ status:
325
+ code: 200
326
+ message: OK
327
+ headers:
328
+ date:
329
+ - Thu, 14 Jun 2012 05:32:54 GMT
330
+ server:
331
+ - Microsoft-IIS/6.0
332
+ x-servername:
333
+ - RDU-IISWEB-03
334
+ x-powered-by:
335
+ - ASP.NET
336
+ x-aspnet-version:
337
+ - 4.0.30319
338
+ cache-control:
339
+ - private, max-age=0
340
+ content-type:
341
+ - text/xml; charset=utf-8
342
+ content-length:
343
+ - '1119'
344
+ body:
345
+ encoding: US-ASCII
346
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
347
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
348
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
349
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
350
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
351
+ http_version: '1.1'
352
+ recorded_at: Thu, 14 Jun 2012 05:32:54 GMT
353
+ - request:
354
+ method: post
355
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
356
+ body:
357
+ encoding: US-ASCII
358
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
359
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
360
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
361
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
362
+ headers:
363
+ soapaction:
364
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
365
+ content-type:
366
+ - text/xml;charset=UTF-8
367
+ content-length:
368
+ - '736'
369
+ accept:
370
+ - ! '*/*'
371
+ user-agent:
372
+ - Ruby
373
+ response:
374
+ status:
375
+ code: 200
376
+ message: OK
377
+ headers:
378
+ date:
379
+ - Thu, 14 Jun 2012 05:32:54 GMT
380
+ server:
381
+ - Microsoft-IIS/6.0
382
+ x-servername:
383
+ - RDU-IISWEB-11
384
+ x-powered-by:
385
+ - ASP.NET
386
+ x-aspnet-version:
387
+ - 4.0.30319
388
+ cache-control:
389
+ - private, max-age=0
390
+ content-type:
391
+ - text/xml; charset=utf-8
392
+ content-length:
393
+ - '1119'
394
+ body:
395
+ encoding: US-ASCII
396
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
397
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
398
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
399
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
400
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
401
+ http_version: '1.1'
402
+ recorded_at: Thu, 14 Jun 2012 05:32:55 GMT
403
+ - request:
404
+ method: post
405
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
406
+ body:
407
+ encoding: US-ASCII
408
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
409
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
410
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
411
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
412
+ headers:
413
+ soapaction:
414
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
415
+ content-type:
416
+ - text/xml;charset=UTF-8
417
+ content-length:
418
+ - '736'
419
+ accept:
420
+ - ! '*/*'
421
+ user-agent:
422
+ - Ruby
423
+ response:
424
+ status:
425
+ code: 200
426
+ message: OK
427
+ headers:
428
+ date:
429
+ - Thu, 14 Jun 2012 05:32:55 GMT
430
+ server:
431
+ - Microsoft-IIS/6.0
432
+ x-servername:
433
+ - RDU-IISWEB-07
434
+ x-powered-by:
435
+ - ASP.NET
436
+ x-aspnet-version:
437
+ - 4.0.30319
438
+ cache-control:
439
+ - private, max-age=0
440
+ content-type:
441
+ - text/xml; charset=utf-8
442
+ content-length:
443
+ - '1119'
444
+ body:
445
+ encoding: US-ASCII
446
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
447
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
448
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
449
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
450
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
451
+ http_version: '1.1'
452
+ recorded_at: Thu, 14 Jun 2012 05:32:55 GMT
453
+ - request:
454
+ method: post
455
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
456
+ body:
457
+ encoding: US-ASCII
458
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
459
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
460
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
461
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
462
+ headers:
463
+ soapaction:
464
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
465
+ content-type:
466
+ - text/xml;charset=UTF-8
467
+ content-length:
468
+ - '736'
469
+ accept:
470
+ - ! '*/*'
471
+ user-agent:
472
+ - Ruby
473
+ response:
474
+ status:
475
+ code: 200
476
+ message: OK
477
+ headers:
478
+ date:
479
+ - Thu, 14 Jun 2012 05:32:56 GMT
480
+ server:
481
+ - Microsoft-IIS/6.0
482
+ x-servername:
483
+ - RDU-IISWEB-09
484
+ x-powered-by:
485
+ - ASP.NET
486
+ x-aspnet-version:
487
+ - 4.0.30319
488
+ cache-control:
489
+ - private, max-age=0
490
+ content-type:
491
+ - text/xml; charset=utf-8
492
+ content-length:
493
+ - '1119'
494
+ body:
495
+ encoding: US-ASCII
496
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
497
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
498
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
499
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
500
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
501
+ http_version: '1.1'
502
+ recorded_at: Thu, 14 Jun 2012 05:32:56 GMT
503
+ - request:
504
+ method: post
505
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
506
+ body:
507
+ encoding: US-ASCII
508
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
509
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
510
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
511
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
512
+ headers:
513
+ soapaction:
514
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
515
+ content-type:
516
+ - text/xml;charset=UTF-8
517
+ content-length:
518
+ - '736'
519
+ accept:
520
+ - ! '*/*'
521
+ user-agent:
522
+ - Ruby
523
+ response:
524
+ status:
525
+ code: 200
526
+ message: OK
527
+ headers:
528
+ date:
529
+ - Thu, 14 Jun 2012 05:32:57 GMT
530
+ server:
531
+ - Microsoft-IIS/6.0
532
+ x-servername:
533
+ - RDU-IISWEB-06
534
+ x-powered-by:
535
+ - ASP.NET
536
+ x-aspnet-version:
537
+ - 4.0.30319
538
+ cache-control:
539
+ - private, max-age=0
540
+ content-type:
541
+ - text/xml; charset=utf-8
542
+ content-length:
543
+ - '1119'
544
+ body:
545
+ encoding: US-ASCII
546
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
547
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
548
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
549
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
550
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
551
+ http_version: '1.1'
552
+ recorded_at: Thu, 14 Jun 2012 05:32:57 GMT
553
+ - request:
554
+ method: post
555
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
556
+ body:
557
+ encoding: US-ASCII
558
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
559
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
560
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
561
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
562
+ headers:
563
+ soapaction:
564
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
565
+ content-type:
566
+ - text/xml;charset=UTF-8
567
+ content-length:
568
+ - '736'
569
+ accept:
570
+ - ! '*/*'
571
+ user-agent:
572
+ - Ruby
573
+ response:
574
+ status:
575
+ code: 200
576
+ message: OK
577
+ headers:
578
+ date:
579
+ - Thu, 14 Jun 2012 05:32:57 GMT
580
+ server:
581
+ - Microsoft-IIS/6.0
582
+ x-servername:
583
+ - RDU-IISWEB-03
584
+ x-powered-by:
585
+ - ASP.NET
586
+ x-aspnet-version:
587
+ - 4.0.30319
588
+ cache-control:
589
+ - private, max-age=0
590
+ content-type:
591
+ - text/xml; charset=utf-8
592
+ content-length:
593
+ - '1119'
594
+ body:
595
+ encoding: US-ASCII
596
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
597
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
598
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
599
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
600
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
601
+ http_version: '1.1'
602
+ recorded_at: Thu, 14 Jun 2012 05:32:57 GMT
603
+ - request:
604
+ method: post
605
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
606
+ body:
607
+ encoding: US-ASCII
608
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
609
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
610
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
611
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
612
+ headers:
613
+ soapaction:
614
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
615
+ content-type:
616
+ - text/xml;charset=UTF-8
617
+ content-length:
618
+ - '736'
619
+ accept:
620
+ - ! '*/*'
621
+ user-agent:
622
+ - Ruby
623
+ response:
624
+ status:
625
+ code: 200
626
+ message: OK
627
+ headers:
628
+ date:
629
+ - Thu, 14 Jun 2012 05:32:58 GMT
630
+ server:
631
+ - Microsoft-IIS/6.0
632
+ x-servername:
633
+ - RDU-IISWEB-09
634
+ x-powered-by:
635
+ - ASP.NET
636
+ x-aspnet-version:
637
+ - 4.0.30319
638
+ cache-control:
639
+ - private, max-age=0
640
+ content-type:
641
+ - text/xml; charset=utf-8
642
+ content-length:
643
+ - '1119'
644
+ body:
645
+ encoding: US-ASCII
646
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
647
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
648
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
649
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
650
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
651
+ http_version: '1.1'
652
+ recorded_at: Thu, 14 Jun 2012 05:32:58 GMT
653
+ - request:
654
+ method: post
655
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
656
+ body:
657
+ encoding: US-ASCII
658
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
659
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
660
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
661
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
662
+ headers:
663
+ soapaction:
664
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
665
+ content-type:
666
+ - text/xml;charset=UTF-8
667
+ content-length:
668
+ - '736'
669
+ accept:
670
+ - ! '*/*'
671
+ user-agent:
672
+ - Ruby
673
+ response:
674
+ status:
675
+ code: 200
676
+ message: OK
677
+ headers:
678
+ date:
679
+ - Thu, 14 Jun 2012 05:32:58 GMT
680
+ server:
681
+ - Microsoft-IIS/6.0
682
+ x-servername:
683
+ - RDU-IISWEB-09
684
+ x-powered-by:
685
+ - ASP.NET
686
+ x-aspnet-version:
687
+ - 4.0.30319
688
+ cache-control:
689
+ - private, max-age=0
690
+ content-type:
691
+ - text/xml; charset=utf-8
692
+ content-length:
693
+ - '1119'
694
+ body:
695
+ encoding: US-ASCII
696
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
697
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
698
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
699
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
700
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
701
+ http_version: '1.1'
702
+ recorded_at: Thu, 14 Jun 2012 05:32:59 GMT
703
+ - request:
704
+ method: post
705
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
706
+ body:
707
+ encoding: US-ASCII
708
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
709
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
710
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
711
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
712
+ headers:
713
+ soapaction:
714
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
715
+ content-type:
716
+ - text/xml;charset=UTF-8
717
+ content-length:
718
+ - '736'
719
+ accept:
720
+ - ! '*/*'
721
+ user-agent:
722
+ - Ruby
723
+ response:
724
+ status:
725
+ code: 200
726
+ message: OK
727
+ headers:
728
+ date:
729
+ - Thu, 14 Jun 2012 05:32:59 GMT
730
+ server:
731
+ - Microsoft-IIS/6.0
732
+ x-servername:
733
+ - RDU-IISWEB-04
734
+ x-powered-by:
735
+ - ASP.NET
736
+ x-aspnet-version:
737
+ - 4.0.30319
738
+ cache-control:
739
+ - private, max-age=0
740
+ content-type:
741
+ - text/xml; charset=utf-8
742
+ content-length:
743
+ - '1119'
744
+ body:
745
+ encoding: US-ASCII
746
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
747
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
748
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
749
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
750
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
751
+ http_version: '1.1'
752
+ recorded_at: Thu, 14 Jun 2012 05:32:59 GMT
753
+ - request:
754
+ method: post
755
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
756
+ body:
757
+ encoding: US-ASCII
758
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
759
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
760
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
761
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
762
+ headers:
763
+ soapaction:
764
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
765
+ content-type:
766
+ - text/xml;charset=UTF-8
767
+ content-length:
768
+ - '736'
769
+ accept:
770
+ - ! '*/*'
771
+ user-agent:
772
+ - Ruby
773
+ response:
774
+ status:
775
+ code: 200
776
+ message: OK
777
+ headers:
778
+ date:
779
+ - Thu, 14 Jun 2012 05:33:00 GMT
780
+ server:
781
+ - Microsoft-IIS/6.0
782
+ x-servername:
783
+ - RDU-IISWEB-09
784
+ x-powered-by:
785
+ - ASP.NET
786
+ x-aspnet-version:
787
+ - 4.0.30319
788
+ cache-control:
789
+ - private, max-age=0
790
+ content-type:
791
+ - text/xml; charset=utf-8
792
+ content-length:
793
+ - '1119'
794
+ body:
795
+ encoding: US-ASCII
796
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
797
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
798
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
799
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
800
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
801
+ http_version: '1.1'
802
+ recorded_at: Thu, 14 Jun 2012 05:33:00 GMT
803
+ - request:
804
+ method: post
805
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
806
+ body:
807
+ encoding: US-ASCII
808
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
809
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
810
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
811
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
812
+ headers:
813
+ soapaction:
814
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
815
+ content-type:
816
+ - text/xml;charset=UTF-8
817
+ content-length:
818
+ - '736'
819
+ accept:
820
+ - ! '*/*'
821
+ user-agent:
822
+ - Ruby
823
+ response:
824
+ status:
825
+ code: 200
826
+ message: OK
827
+ headers:
828
+ date:
829
+ - Thu, 14 Jun 2012 05:33:00 GMT
830
+ server:
831
+ - Microsoft-IIS/6.0
832
+ x-servername:
833
+ - RDU-IISWEB-03
834
+ x-powered-by:
835
+ - ASP.NET
836
+ x-aspnet-version:
837
+ - 4.0.30319
838
+ cache-control:
839
+ - private, max-age=0
840
+ content-type:
841
+ - text/xml; charset=utf-8
842
+ content-length:
843
+ - '1119'
844
+ body:
845
+ encoding: US-ASCII
846
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
847
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
848
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
849
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
850
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
851
+ http_version: '1.1'
852
+ recorded_at: Thu, 14 Jun 2012 05:33:01 GMT
853
+ - request:
854
+ method: post
855
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
856
+ body:
857
+ encoding: US-ASCII
858
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
859
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
860
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
861
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
862
+ headers:
863
+ soapaction:
864
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
865
+ content-type:
866
+ - text/xml;charset=UTF-8
867
+ content-length:
868
+ - '736'
869
+ accept:
870
+ - ! '*/*'
871
+ user-agent:
872
+ - Ruby
873
+ response:
874
+ status:
875
+ code: 200
876
+ message: OK
877
+ headers:
878
+ date:
879
+ - Thu, 14 Jun 2012 05:33:01 GMT
880
+ server:
881
+ - Microsoft-IIS/6.0
882
+ x-servername:
883
+ - RDU-IISWEB-08
884
+ x-powered-by:
885
+ - ASP.NET
886
+ x-aspnet-version:
887
+ - 4.0.30319
888
+ cache-control:
889
+ - private, max-age=0
890
+ content-type:
891
+ - text/xml; charset=utf-8
892
+ content-length:
893
+ - '1119'
894
+ body:
895
+ encoding: US-ASCII
896
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
897
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
898
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
899
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
900
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
901
+ http_version: '1.1'
902
+ recorded_at: Thu, 14 Jun 2012 05:33:01 GMT
903
+ - request:
904
+ method: post
905
+ uri: https://api.channeladvisor.com/ChannelAdvisorAPI/v6/ShippingService.asmx
906
+ body:
907
+ encoding: US-ASCII
908
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
909
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://api.channeladvisor.com/webservices/"
910
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://api.channeladvisor.com/webservices/"
911
+ xmlns:ins1="http://api.channeladvisor.com/datacontracts/ShippingService"><env:Header><ins0:APICredentials><ins0:DeveloperKey>$$DEVELOPER_KEY$$</ins0:DeveloperKey><ins0:Password>$$PASSWORD$$</ins0:Password></ins0:APICredentials></env:Header><env:Body><ins0:GetShippingCarrierList><ins0:accountID>$$ACCOUNT_ID$$</ins0:accountID></ins0:GetShippingCarrierList></env:Body></env:Envelope>
912
+ headers:
913
+ soapaction:
914
+ - ! '"http://api.channeladvisor.com/webservices/GetShippingCarrierList"'
915
+ content-type:
916
+ - text/xml;charset=UTF-8
917
+ content-length:
918
+ - '736'
919
+ accept:
920
+ - ! '*/*'
921
+ user-agent:
922
+ - Ruby
923
+ response:
924
+ status:
925
+ code: 200
926
+ message: OK
927
+ headers:
928
+ date:
929
+ - Thu, 14 Jun 2012 05:33:02 GMT
930
+ server:
931
+ - Microsoft-IIS/6.0
932
+ x-servername:
933
+ - RDU-IISWEB-06
934
+ x-powered-by:
935
+ - ASP.NET
936
+ x-aspnet-version:
937
+ - 4.0.30319
938
+ cache-control:
939
+ - private, max-age=0
940
+ content-type:
941
+ - text/xml; charset=utf-8
942
+ content-length:
943
+ - '1119'
944
+ body:
945
+ encoding: US-ASCII
946
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
947
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetShippingCarrierListResponse
948
+ xmlns="http://api.channeladvisor.com/webservices/"><GetShippingCarrierListResult><Status>Success</Status><MessageCode>0</MessageCode><ResultData><ShippingCarrier><CarrierID>2</CarrierID><ClassID>3</ClassID><CarrierName>FedEx</CarrierName><CarrierCode>FEDEX</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>3</CarrierID><ClassID>3</ClassID><CarrierName>UPS</CarrierName><CarrierCode>UPS</CarrierCode><ClassCode>GROUND</ClassCode><ClassName>Ground</ClassName></ShippingCarrier><ShippingCarrier><CarrierID>1</CarrierID><ClassID>1</ClassID><CarrierName>US
949
+ Postal Service</CarrierName><CarrierCode>USPS</CarrierCode><ClassCode>PRIORITY</ClassCode><ClassName>Priority
950
+ Mail</ClassName></ShippingCarrier></ResultData></GetShippingCarrierListResult></GetShippingCarrierListResponse></soap:Body></soap:Envelope>
951
+ http_version: '1.1'
952
+ recorded_at: Thu, 14 Jun 2012 05:33:02 GMT
953
+ recorded_with: VCR 2.2.0