module Session def create(ip_address, business_unit_id, options={}) options.merge!({:basic_auth => @auth}) response = self.class.get(base_api_endpoint("Web/Session/"), options) JSON.parse(response.body) end def shipping_methods(key, options={}) options.merge!({:basic_auth => @auth}) response = self.class.get(base_api_endpoint("Web/Session/Shippingmethods/#{key}"), options) JSON.parse(response.body) end end