goldshark_gem 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +4 -3
- data/Gemfile.lock +14 -2
- data/README.md +162 -0
- data/goldshark_gem.gemspec +7 -1
- data/lib/goldshark_gem.rb +5 -241
- data/lib/goldshark_gem/ci.rb +38 -0
- data/lib/goldshark_gem/text.rb +67 -0
- data/lib/goldshark_gem/tool.rb +176 -0
- data/test/ci_test.rb +19 -0
- data/test/fixtures/vcr_cassettes/test_channel_intelligence.yml +49 -0
- data/test/fixtures/vcr_cassettes/test_results.yml +687 -0
- data/test/fixtures/vcr_cassettes/test_text.yml +67 -0
- data/{vcr_cassettes → test/fixtures/vcr_cassettes}/test_tool.yml +16 -16
- data/test/helper.rb +1 -0
- data/test/text_test.rb +18 -0
- data/test/tool_test.rb +40 -0
- data/test/vcr_setup.rb +2 -2
- metadata +48 -9
- data/README +0 -124
- data/README.rdoc +0 -124
- data/test/goldshark_gem_test.rb +0 -25
- data/vcr_cassettes/.DS_Store +0 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
module GS
|
2
|
+
class Ci
|
3
|
+
def initialize
|
4
|
+
end
|
5
|
+
|
6
|
+
def buy_now(sku_id, rgid)
|
7
|
+
buy_now = []
|
8
|
+
uri = URI.parse("http://pg.links.channelintelligence.com/pages/plxml.asp?sSKU=#{sku_id}&nRGID=#{rgid}")
|
9
|
+
data = get_call(uri)
|
10
|
+
xml = XML::Parser.string(data, :options => XML::Parser::Options::NOBLANKS )
|
11
|
+
doc = xml.parse
|
12
|
+
doc.find('//DEALER').each do |d|
|
13
|
+
buy_now << { id: d.attributes.get_attribute('id').value, logo: d.find('DEALER_LOGO').first.content, name: d.find('DEALER_NAME').first.content }
|
14
|
+
doc.find('//DEALER_ITEM').each do |di|
|
15
|
+
item = buy_now.find{|bn| bn[:id] == di.find('DEALER_ID').first.content}
|
16
|
+
item[:buy_now_link] = di.find('BUY_URL').first.content
|
17
|
+
item[:product_name] = di.find('NAME').first.content
|
18
|
+
item[:price] = di.find('PRICE').first.content
|
19
|
+
item[:product_image] = di.find('IMAGE_URL').first.content
|
20
|
+
if di.find('AVAILABILITY').first.content == 'YES'
|
21
|
+
item[:available] = 'Y'
|
22
|
+
else
|
23
|
+
next
|
24
|
+
end
|
25
|
+
end
|
26
|
+
return buy_now
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def get_call(uri)
|
31
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
32
|
+
request = Net::HTTP::Get.new(uri.request_uri)
|
33
|
+
response = http.request(request)
|
34
|
+
return response.body
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
module GS
|
2
|
+
class Text
|
3
|
+
def initialize(localization = nil)
|
4
|
+
unless localization.nil?
|
5
|
+
config_file = Rails.root.join("config", "tool_config.yml").to_s
|
6
|
+
tool_info = YAML::load(File.read(config_file))
|
7
|
+
@tool_guid = tool_info[localization]['tool_guid']
|
8
|
+
@locale = tool_info[localization]['locale']
|
9
|
+
end
|
10
|
+
@url = tool_info['api_root'] rescue nil
|
11
|
+
if @url.nil?
|
12
|
+
@url = 'http://gst.api.igodigital.com/v2_2'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def locale(locale = nil)
|
17
|
+
if locale.nil?
|
18
|
+
@locale
|
19
|
+
else
|
20
|
+
@locale = locale
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def tool_guid(tool_guid = nil)
|
25
|
+
if tool_guid.nil?
|
26
|
+
@tool_guid
|
27
|
+
else
|
28
|
+
@tool_guid = tool_guid
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def url(url = nil)
|
33
|
+
if url.nil?
|
34
|
+
@url
|
35
|
+
else
|
36
|
+
@url = url
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def texts(texts = [])
|
41
|
+
if texts.empty?
|
42
|
+
@texts
|
43
|
+
else
|
44
|
+
@texts = texts
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def load_text
|
49
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/text.json?locale=#{@locale}")
|
50
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
51
|
+
request = Net::HTTP::Get.new(uri.request_uri)
|
52
|
+
response = http.request(request)
|
53
|
+
@texts = JSON.parse(response.body, {symbolize_names: true})
|
54
|
+
return @texts
|
55
|
+
end
|
56
|
+
|
57
|
+
def find(param)
|
58
|
+
@texts.each do |x|
|
59
|
+
type = x[:text_type]
|
60
|
+
if type == param || type == param.parameterize.underscore || type == param.downcase.underscore
|
61
|
+
return x[:text_value]
|
62
|
+
end
|
63
|
+
end
|
64
|
+
return nil
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,176 @@
|
|
1
|
+
module GS
|
2
|
+
class Tool
|
3
|
+
def initialize(localization = nil)
|
4
|
+
unless localization.nil?
|
5
|
+
config_file = Rails.root.join("config", "tool_config.yml").to_s
|
6
|
+
tool_info = YAML::load(File.read(config_file))
|
7
|
+
@tool_guid = tool_info[localization]['tool_guid']
|
8
|
+
@locale = tool_info[localization]['locale']
|
9
|
+
end
|
10
|
+
@url = tool_info['api_root'] rescue nil
|
11
|
+
if @url.nil?
|
12
|
+
@url = 'http://gst.api.igodigital.com/v2_2'
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def session_id(sid = nil)
|
17
|
+
if sid.nil?
|
18
|
+
@session_id
|
19
|
+
else
|
20
|
+
@session_id = sid
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def tool_guid(tool_guid = nil)
|
25
|
+
if tool_guid.nil?
|
26
|
+
@tool_guid
|
27
|
+
else
|
28
|
+
@tool_guid = tool_guid
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def locale(locale = nil)
|
33
|
+
if locale.nil?
|
34
|
+
@locale
|
35
|
+
else
|
36
|
+
@locale = locale
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def url(url = nil)
|
41
|
+
if url.nil?
|
42
|
+
@url
|
43
|
+
else
|
44
|
+
@url = url
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def get_tool
|
49
|
+
unless @session_id.nil?
|
50
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/tool.json?locale=#{@locale}&sid=#{@session_id}")
|
51
|
+
else
|
52
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/tool.json?locale=#{@locale}")
|
53
|
+
end
|
54
|
+
return get_call(uri)
|
55
|
+
end
|
56
|
+
|
57
|
+
def get_settings(setting_name = nil)
|
58
|
+
if setting_name.nil?
|
59
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/settings.json")
|
60
|
+
else
|
61
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/settings.json?name=#{setting_name}")
|
62
|
+
end
|
63
|
+
return get_call(uri)
|
64
|
+
end
|
65
|
+
|
66
|
+
def get_results(tool_step_option_ids = nil, completed = "true")
|
67
|
+
tool = get_tool
|
68
|
+
unless tool_step_option_ids.nil?
|
69
|
+
tool[:steps] = update_tool_options(tool, tool_step_option_ids)
|
70
|
+
end
|
71
|
+
tool[:steps].each{|step| step.reject!{|key, value| ![:tool_step_id, :selected_options, :selected_filter_options].include?(key)}}
|
72
|
+
if @session_id.nil?
|
73
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/tool.json?locale=#{@locale}&sid=#{@session_id}&completed=#{completed}")
|
74
|
+
else
|
75
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/tool.json?locale=#{@locale}&completed=#{completed}")
|
76
|
+
end
|
77
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
78
|
+
request = Net::HTTP::Put.new(uri.request_uri)
|
79
|
+
request.body = tool.to_json
|
80
|
+
response = http.request(request)
|
81
|
+
return JSON.parse(response.body, {symbolize_names: true})
|
82
|
+
end
|
83
|
+
|
84
|
+
def get_products_by_skus(skus)
|
85
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/products.json?sku_list=#{skus}")
|
86
|
+
products = get_call(uri)
|
87
|
+
return products.collect{|p| p[:product]}
|
88
|
+
end
|
89
|
+
|
90
|
+
def get_products_by_product_ids(product_ids)
|
91
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/products.json?product_list=#{product_ids}")
|
92
|
+
products = get_call(uri)
|
93
|
+
return products.collect{|p| p[:product]}
|
94
|
+
end
|
95
|
+
|
96
|
+
def get_attribute_by_name(attribute_name)
|
97
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/product_attributes.json?attribute_name=#{attribute_name}")
|
98
|
+
return get_call(uri)
|
99
|
+
end
|
100
|
+
|
101
|
+
def get_product_links(retailer_product_id)
|
102
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/product_links/#{retailer_product_id}.json")
|
103
|
+
return get_call(uri)
|
104
|
+
end
|
105
|
+
|
106
|
+
def get_user_data(user_id = nil)
|
107
|
+
if !@session_id.nil? && !user_id.nil?
|
108
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/user_data.json?sid=#{@session_id}&user_id=#{user_id}")
|
109
|
+
response = get_call(uri)
|
110
|
+
elsif @session_id.nil? && !user_id.nil?
|
111
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/user_data.json?user_id=#{user_id}")
|
112
|
+
response = get_call(uri).last
|
113
|
+
elsif !@session_id.nil? && user_id.nil?
|
114
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/user_data.json?sid=#{@session_id}")
|
115
|
+
response = get_call(uri)
|
116
|
+
end
|
117
|
+
return response
|
118
|
+
end
|
119
|
+
|
120
|
+
def save_user_data(session_data, user_id = nil)
|
121
|
+
unless session_data.empty?
|
122
|
+
if user_id.nil?
|
123
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/user_data.json?sid=#{@session_id}")
|
124
|
+
else
|
125
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/user_data.json?sid=#{@session_id}&user_id=#{user_id}")
|
126
|
+
end
|
127
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
128
|
+
request = Net::HTTP::Put.new(uri.request_uri)
|
129
|
+
request.body = session_data.to_json
|
130
|
+
response = http.request(request)
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
def recs(group_id, retailer_product_list)
|
135
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/recommend.json?group_id=#{group_id}&retailer_product_list=#{retailer_product_list}")
|
136
|
+
return get_call(uri)
|
137
|
+
end
|
138
|
+
|
139
|
+
def record_events(event_name)
|
140
|
+
if @session_id.nil?
|
141
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/record_event/#{event_name}.json")
|
142
|
+
else
|
143
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/record_event/#{event_name}.json?sid=#{@session_id}")
|
144
|
+
end
|
145
|
+
return get_call(uri)
|
146
|
+
end
|
147
|
+
|
148
|
+
def micro_convert(retailer_product_id)
|
149
|
+
uri = URI.parse("#{@url}/#{@tool_guid}/micro_conversions.json?sid=#{@session_id}&retailer_product_id=#{retailer_product_id}")
|
150
|
+
return get_call(uri)
|
151
|
+
end
|
152
|
+
|
153
|
+
def get_call(uri)
|
154
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
155
|
+
request = Net::HTTP::Get.new(uri.request_uri)
|
156
|
+
response = http.request(request)
|
157
|
+
return JSON.parse(response.body, {symbolize_names: true})
|
158
|
+
end
|
159
|
+
|
160
|
+
def update_tool_options(tool, tool_step_option_ids)
|
161
|
+
tool[:steps].each do |step|
|
162
|
+
current_step_options = []
|
163
|
+
unless step[:options].nil?
|
164
|
+
step[:options].each do |option|
|
165
|
+
if Array(tool_step_option_ids).include?(option[:tool_step_option_id])
|
166
|
+
current_step_options << option[:tool_step_option_id]
|
167
|
+
end
|
168
|
+
end
|
169
|
+
end
|
170
|
+
unless current_step_options.empty?
|
171
|
+
step[:selected_options] = current_step_options.join(',')
|
172
|
+
end
|
173
|
+
end
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|
data/test/ci_test.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'helper'
|
2
|
+
require 'minitest/autorun'
|
3
|
+
|
4
|
+
class TestCi < MiniTest::Unit::TestCase
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@ci = GS::Ci.new
|
8
|
+
@sku = '5410076532216'
|
9
|
+
@rgid = '4332'
|
10
|
+
@result_array = [{:id=>"15582039", :logo=>"http://content.channelintelligence.com/images/vendors/90x60/15582039.gif", :name=>"Amazon - DE", :buy_now_link=>"http://pg.links.origin.channelintelligence.com/pages/redirector.asp?nIID=221439981&nRGID=4332&nVID=15582039&nRow=0&sCt=", :product_name=>"Pantene Pro-V Volume Creation Haarspray, 2er Pack (2 x 250 ml)", :price=>"5.5", :product_image=>"http://ecx.images-amazon.com/images/I/31s71ZXAZfL.jpg", :available=>"Y"}]
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_that_can_return_data
|
14
|
+
VCR.use_cassette('test_channel_intelligence') do
|
15
|
+
buy_now_obj = @ci.buy_now(@sku, @rgid)
|
16
|
+
assert_equal buy_now_obj, @result_array
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://pg.links.channelintelligence.com/pages/plxml.asp?nRGID=4332&sSKU=5410076532216
|
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
|
+
Server:
|
20
|
+
- Microsoft-IIS/6.0
|
21
|
+
P3p:
|
22
|
+
- CP="OTI DSP COR CURa ADMa DEVa OUR DELa STP"
|
23
|
+
X-Powered-By:
|
24
|
+
- ASP.NET
|
25
|
+
Content-Type:
|
26
|
+
- text/xml
|
27
|
+
Cache-Control:
|
28
|
+
- public, max-age=2473
|
29
|
+
Expires:
|
30
|
+
- Wed, 24 Oct 2012 19:08:58 GMT
|
31
|
+
Date:
|
32
|
+
- Wed, 24 Oct 2012 18:27:45 GMT
|
33
|
+
Content-Length:
|
34
|
+
- '1604'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: <?xml version="1.0" encoding="utf-8"?><PL_RESPONSE VERSION="1.0" ITEM_COUNT="1"
|
40
|
+
ERROR_COUNT="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><MANUFACTURER_ITEM><ITEM_ID>220798250</ITEM_ID><MODEL><![CDATA[5410076532216]]></MODEL><PRODUCT_NAME><![CDATA[Pantene
|
41
|
+
Pro-V Volume Creation Haarspray]]></PRODUCT_NAME><MANUFACTURER>Procter &
|
42
|
+
Gamble</MANUFACTURER><DESCRIPTION><![CDATA[]]></DESCRIPTION><DATASHEETURL></DATASHEETURL><IMAGE_URL></IMAGE_URL><MAP>0</MAP></MANUFACTURER_ITEM><DEALERS><DEALER
|
43
|
+
id="15582039"><DEALER_LOGO>http://content.channelintelligence.com/images/vendors/90x60/15582039.gif</DEALER_LOGO><DEALER_NAME>Amazon
|
44
|
+
- DE</DEALER_NAME><DEALER_HOME_URL>http://www.amazon.de/</DEALER_HOME_URL></DEALER></DEALERS><DEALER_ITEMS><DEALER_ITEM><DEALER_ID>15582039</DEALER_ID><DEALER_SKU>B006JVLPKS</DEALER_SKU><MODEL><![CDATA[532247]]></MODEL><NAME><![CDATA[Pantene
|
45
|
+
Pro-V Volume Creation Haarspray, 2er Pack (2 x 250 ml)]]></NAME><MANUFACTURER>Procter
|
46
|
+
& Gamble</MANUFACTURER><PRICE>5.5</PRICE><AVAILABILITY>YES</AVAILABILITY><BUY_URL>http://pg.links.origin.channelintelligence.com/pages/redirector.asp?nIID=221439981&nRGID=4332&nVID=15582039&nRow=0&sCt=</BUY_URL><IMAGE_URL>http://ecx.images-amazon.com/images/I/31s71ZXAZfL.jpg</IMAGE_URL><TRUE-TAG>http://pg.links.origin.channelintelligence.com/pages/wl.asp?nCTID=0&nSCID=&nIID=220798250&nICnt=1&nDCnt=1&nRGID=4332&sPCode=&nStoreID=&nVStoreID=&sModelNumber=5410076532216&nRadius=&nColID=0&nOppCnt=&nRID=&sRnd=</TRUE-TAG></DEALER_ITEM></DEALER_ITEMS></PL_RESPONSE>
|
47
|
+
http_version:
|
48
|
+
recorded_at: Wed, 24 Oct 2012 18:27:45 GMT
|
49
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,687 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://gst.api.igodigital.com/v2_2/7c7a63f6-8bcb-4fee-bc9d-8a2f5e477887/tool.json?locale=en&sid=7c7a63f6-8bcb-4fee-bc9d-8a2f5e477887
|
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
|
+
Content-Type:
|
20
|
+
- application/json;charset=utf-8
|
21
|
+
Date:
|
22
|
+
- Thu, 25 Oct 2012 00:59:59 GMT
|
23
|
+
Server:
|
24
|
+
- Apache/2.2.16 (Amazon)
|
25
|
+
Status:
|
26
|
+
- '200'
|
27
|
+
X-Frame-Options:
|
28
|
+
- sameorigin
|
29
|
+
X-Powered-By:
|
30
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.9
|
31
|
+
X-Xss-Protection:
|
32
|
+
- 1; mode=block
|
33
|
+
Content-Length:
|
34
|
+
- '4495'
|
35
|
+
Connection:
|
36
|
+
- keep-alive
|
37
|
+
body:
|
38
|
+
encoding: US-ASCII
|
39
|
+
string: ! '{"tool_name":"This tool is used for monitoring only --- Philips -
|
40
|
+
Shaver Head Finder","session_id":"7c7a63f6-8bcb-4fee-bc9d-8a2f5e477887","steps":[{"parent_tool_step_id":"0","parent_tool_step_option_id":"0","required":"
|
41
|
+
","sort_order":0,"question_type":"","step_header":"Every year, your blades
|
42
|
+
travel the height of Mt. Everest... 49 times! After such a workout, even the
|
43
|
+
best materials can lose their edge. Retain your razor''s peak performance
|
44
|
+
- replace the heads once a year.","step_name":"Welcome Page","step_title":"Keep
|
45
|
+
a close shave","step_type_name":"Welcome / Info","tool_step_id":"2fdde68c-43e1-4cad-9fdc-cf770fe1dede","selected_options":"","selected_filter_options":null,"image_type":"","":[]},{"parent_tool_step_id":"0","parent_tool_step_option_id":"0","required":"
|
46
|
+
","sort_order":1,"question_type":"radio","step_header":"","step_name":"Shaving
|
47
|
+
Heads","step_title":"How many shaving heads does your shaver have?","step_type_name":"Step
|
48
|
+
Listing (Parent)","tool_step_id":"484282c3-e919-4a07-be83-cc36582491f9","selected_options":"","selected_filter_options":null,"image_type":"jpg","options":[{"parent_step_option_name":"","parent_tool_step_option_id":"0","sort_order":0,"step_option_desc":"","step_option_name":"It
|
49
|
+
has three shaving heads.","step_option_notes":"","tool_step_option_id":"0e1ba264-7ed2-4a85-b9cb-75aa50b2b43c","image_type":"jpg"},{"parent_step_option_name":"","parent_tool_step_option_id":"0","sort_order":1,"step_option_desc":"HQ56/52","step_option_name":"It
|
50
|
+
has two shaving heads.","step_option_notes":"","tool_step_option_id":"876f39dc-3275-4ba5-a0a1-417bfb974fb0","image_type":"jpg"}]},{"parent_tool_step_id":"0","parent_tool_step_option_id":"0","required":"
|
51
|
+
","sort_order":2,"question_type":"radio","step_header":"","step_name":"Nivea
|
52
|
+
Shaver","step_title":"Do You Have a Nivea Shaver?","step_type_name":"Step
|
53
|
+
Listing (Parent)","tool_step_id":"ac5c824d-270f-4581-a4e9-49070fac8650","selected_options":"","selected_filter_options":null,"image_type":"","options":[{"parent_step_option_name":"","parent_tool_step_option_id":"0","sort_order":0,"step_option_desc":"","step_option_name":"I
|
54
|
+
have a Nivea shaver","step_option_notes":"","tool_step_option_id":"1c3d1d63-556d-482d-aaf0-8b3700deb29b","image_type":"jpg"},{"parent_step_option_name":"","parent_tool_step_option_id":"0","sort_order":1,"step_option_desc":"","step_option_name":"I
|
55
|
+
have a different shaver","step_option_notes":"no-image","tool_step_option_id":"31786a9a-be79-422c-b551-ff7d20e62112","image_type":"jpg"}]},{"parent_tool_step_id":"0","parent_tool_step_option_id":"0","required":"
|
56
|
+
","sort_order":3,"question_type":"radio","step_header":"","step_name":"Neck","step_title":"Does
|
57
|
+
your shaver have a ''neck''?","step_type_name":"Step Listing (Parent)","tool_step_id":"ef5f71cd-04d4-42d3-ba93-51282ee82e19","selected_options":"","selected_filter_options":null,"image_type":"","options":[{"parent_step_option_name":"","parent_tool_step_option_id":"0","sort_order":0,"step_option_desc":"","step_option_name":"Yes,
|
58
|
+
the shaving head is on a ''neck''","step_option_notes":"","tool_step_option_id":"0031fade-61db-458d-a189-cad2db67427e","image_type":"jpg"},{"parent_step_option_name":"","parent_tool_step_option_id":"0","sort_order":1,"step_option_desc":"","step_option_name":"No,
|
59
|
+
the shaving head is integrated","step_option_notes":"","tool_step_option_id":"6a95ca9d-e343-4061-a161-7057d9d0e208","image_type":"jpg"}]},{"parent_tool_step_id":"ef5f71cd-04d4-42d3-ba93-51282ee82e19","parent_tool_step_option_id":"0","required":"
|
60
|
+
","sort_order":1000,"question_type":"radio","step_header":"","step_name":"Plastic
|
61
|
+
Color","step_title":"Is the color of the plastic at the back side green? ","step_type_name":"Popup","tool_step_id":"7f8986a5-2e78-4c18-8934-71d37551a462","selected_options":"","selected_filter_options":null,"image_type":"","options":[{"parent_step_option_name":"Yes,
|
62
|
+
the shaving head is on a ''neck''","parent_tool_step_option_id":"0031fade-61db-458d-a189-cad2db67427e","sort_order":0,"step_option_desc":"HQ8/52","step_option_name":"Yes,
|
63
|
+
the back side is green","step_option_notes":"","tool_step_option_id":"419ff79f-14a9-4702-bb05-269b7461e2b4","image_type":"jpg"},{"parent_step_option_name":"Yes,
|
64
|
+
the shaving head is on a ''neck''","parent_tool_step_option_id":"0031fade-61db-458d-a189-cad2db67427e","sort_order":1,"step_option_desc":"HQ56/52
|
65
|
+
","step_option_name":"No, the back side is not green","step_option_notes":"no-image","tool_step_option_id":"29bf4cd7-1504-443f-8541-fee1fe73c921","image_type":"jpg"}]}]}'
|
66
|
+
http_version:
|
67
|
+
recorded_at: Thu, 25 Oct 2012 00:59:59 GMT
|
68
|
+
- request:
|
69
|
+
method: put
|
70
|
+
uri: http://gst.api.igodigital.com/v2_2/7c7a63f6-8bcb-4fee-bc9d-8a2f5e477887/tool.json?completed=true&locale=en
|
71
|
+
body:
|
72
|
+
encoding: US-ASCII
|
73
|
+
string: ! '{"tool_name":"This tool is used for monitoring only --- Philips -
|
74
|
+
Shaver Head Finder","session_id":"7c7a63f6-8bcb-4fee-bc9d-8a2f5e477887","steps":[{"tool_step_id":"2fdde68c-43e1-4cad-9fdc-cf770fe1dede","selected_options":"","selected_filter_options":null},{"tool_step_id":"484282c3-e919-4a07-be83-cc36582491f9","selected_options":"0e1ba264-7ed2-4a85-b9cb-75aa50b2b43c","selected_filter_options":null},{"tool_step_id":"ac5c824d-270f-4581-a4e9-49070fac8650","selected_options":"1c3d1d63-556d-482d-aaf0-8b3700deb29b","selected_filter_options":null},{"tool_step_id":"ef5f71cd-04d4-42d3-ba93-51282ee82e19","selected_options":"0031fade-61db-458d-a189-cad2db67427e","selected_filter_options":null},{"tool_step_id":"7f8986a5-2e78-4c18-8934-71d37551a462","selected_options":"419ff79f-14a9-4702-bb05-269b7461e2b4","selected_filter_options":null}]}'
|
75
|
+
headers:
|
76
|
+
Accept:
|
77
|
+
- ! '*/*'
|
78
|
+
User-Agent:
|
79
|
+
- Ruby
|
80
|
+
response:
|
81
|
+
status:
|
82
|
+
code: 200
|
83
|
+
message: OK
|
84
|
+
headers:
|
85
|
+
Content-Type:
|
86
|
+
- application/json;charset=utf-8
|
87
|
+
Date:
|
88
|
+
- Thu, 25 Oct 2012 00:59:59 GMT
|
89
|
+
Server:
|
90
|
+
- Apache/2.2.16 (Amazon)
|
91
|
+
Status:
|
92
|
+
- '200'
|
93
|
+
X-Frame-Options:
|
94
|
+
- sameorigin
|
95
|
+
X-Powered-By:
|
96
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.9
|
97
|
+
X-Xss-Protection:
|
98
|
+
- 1; mode=block
|
99
|
+
Content-Length:
|
100
|
+
- '107533'
|
101
|
+
Connection:
|
102
|
+
- keep-alive
|
103
|
+
body:
|
104
|
+
encoding: US-ASCII
|
105
|
+
string: ! '{"tool_name":"This tool is used for monitoring only --- Philips -
|
106
|
+
Shaver Head Finder","session_id":"7c7a63f6-8bcb-4fee-bc9d-8a2f5e477887","steps":[{"parent_tool_step_id":"0","parent_tool_step_option_id":"0","required":"
|
107
|
+
","sort_order":4,"question_type":"","step_header":"","step_name":"Decocap
|
108
|
+
- Results","step_title":"What does the icon on your shaving head look like?","step_type_name":"Product
|
109
|
+
Listing","tool_step_id":"de4ac059-f8d2-4f23-ae41-49e8cc75a8f1","selected_options":null,"selected_filter_options":"","image_type":"","tool_groups":[{"sort_order":0,"tool_group_name":"Shavers","tool_group_id":"827160bd-cc94-495a-ba4d-f4481dfd6e40","rankings":[{"product_name":"Philips
|
110
|
+
6940LC/18","product_desc":"A close and comfortable shave for an affordable
|
111
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
112
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6940LC_18-IMS-global","full_image_link":"","map_price":"N","product_code":"6940LC/18","product_link":"http://www.philips.com","product_type":"Beauty
|
113
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312494,"product_id":972524,"sale_price":"0.0","sku_id":"6940lc/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
114
|
+
30DB","product_desc":"A close and comfortable shave for an affordable price.
|
115
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
116
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/30DB-IMS-global","full_image_link":"","map_price":"N","product_code":"30DB","product_link":"http://www.philips.com","product_type":"Beauty
|
117
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312495,"product_id":972518,"sale_price":"0.0","sku_id":"30db","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
118
|
+
7616X/45","product_desc":"A close and comfortable shave for an affordable
|
119
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
120
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7616X_45-IMS-global","full_image_link":"","map_price":"N","product_code":"7616X/45","product_link":"http://www.philips.com","product_type":"Beauty
|
121
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312502,"product_id":972445,"sale_price":"0.0","sku_id":"7616x/45","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
122
|
+
7110X/11","product_desc":"A close and comfortable shave for an affordable
|
123
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
124
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7110X_11-IMS-global","full_image_link":"","map_price":"N","product_code":"7110X/11","product_link":"http://www.philips.com","product_type":"Beauty
|
125
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312505,"product_id":972436,"sale_price":"0.0","sku_id":"7110x/11","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
126
|
+
7115X/11","product_desc":"A close and comfortable shave for an affordable
|
127
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
128
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7115X_11-IMS-global","full_image_link":"","map_price":"N","product_code":"7115X/11","product_link":"http://www.philips.com","product_type":"Beauty
|
129
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312506,"product_id":972437,"sale_price":"0.0","sku_id":"7115x/11","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
130
|
+
7183XL/11","product_desc":"A close and comfortable shave for an affordable
|
131
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
132
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7183XL_11-IMS-global","full_image_link":"","map_price":"N","product_code":"7183XL/11","product_link":"http://www.philips.com","product_type":"Beauty
|
133
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312512,"product_id":972448,"sale_price":"0.0","sku_id":"7183xl/11","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
134
|
+
7240XL/11","product_desc":"A close and comfortable shave for an affordable
|
135
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
136
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7240XL_11-IMS-global","full_image_link":"","map_price":"N","product_code":"7240XL/11","product_link":"http://www.philips.com","product_type":"Beauty
|
137
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312513,"product_id":972449,"sale_price":"0.0","sku_id":"7240xl/11","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
138
|
+
7260XL/11","product_desc":"A close and comfortable shave for an affordable
|
139
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
140
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7260XL_11-IMS-global","full_image_link":"","map_price":"N","product_code":"7260XL/11","product_link":"http://www.philips.com","product_type":"Beauty
|
141
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312514,"product_id":972450,"sale_price":"0.0","sku_id":"7260xl/11","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
142
|
+
7310XL/17","product_desc":"A close and comfortable shave for an affordable
|
143
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
144
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7310XL_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7310XL/17","product_link":"http://www.philips.com","product_type":"Beauty
|
145
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312515,"product_id":972451,"sale_price":"0.0","sku_id":"7310xl/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
146
|
+
7315XL/17","product_desc":"A close and comfortable shave for an affordable
|
147
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
148
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7315XL_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7315XL/17","product_link":"http://www.philips.com","product_type":"Beauty
|
149
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312516,"product_id":972452,"sale_price":"0.0","sku_id":"7315xl/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
150
|
+
7325XL/17","product_desc":"A close and comfortable shave for an affordable
|
151
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
152
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7325XL_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7325XL/17","product_link":"http://www.philips.com","product_type":"Beauty
|
153
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312517,"product_id":972453,"sale_price":"0.0","sku_id":"7325xl/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
154
|
+
7340XL/17","product_desc":"A close and comfortable shave for an affordable
|
155
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
156
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7340XL_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7340XL/17","product_link":"http://www.philips.com","product_type":"Beauty
|
157
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312518,"product_id":972454,"sale_price":"0.0","sku_id":"7340xl/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
158
|
+
7345XL/17","product_desc":"A close and comfortable shave for an affordable
|
159
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
160
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7345XL_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7345XL/17","product_link":"http://www.philips.com","product_type":"Beauty
|
161
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312519,"product_id":972455,"sale_price":"0.0","sku_id":"7345xl/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
162
|
+
7350XL/17","product_desc":"A close and comfortable shave for an affordable
|
163
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
164
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7350XL_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7350XL/17","product_link":"http://www.philips.com","product_type":"Beauty
|
165
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312520,"product_id":972456,"sale_price":"0.0","sku_id":"7350xl/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
166
|
+
7380XL/17","product_desc":"A close and comfortable shave for an affordable
|
167
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
168
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7380XL_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7380XL/17","product_link":"http://www.philips.com","product_type":"Beauty
|
169
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312522,"product_id":972458,"sale_price":"0.0","sku_id":"7380xl/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
170
|
+
7810XL/18","product_desc":"A close and comfortable shave for an affordable
|
171
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
172
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7810XL_18-IMS-global","full_image_link":"","map_price":"N","product_code":"7810XL/18","product_link":"http://www.philips.com","product_type":"Beauty
|
173
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312524,"product_id":972462,"sale_price":"0.0","sku_id":"7810xl/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
174
|
+
8867XL/43","product_desc":"A close and comfortable shave for an affordable
|
175
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
176
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8867XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"8867XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
177
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312528,"product_id":972476,"sale_price":"0.0","sku_id":"8867xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
178
|
+
8881XL/45","product_desc":"A close and comfortable shave for an affordable
|
179
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
180
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8881XL_45-IMS-global","full_image_link":"","map_price":"N","product_code":"8881XL/45","product_link":"http://www.philips.com","product_type":"Beauty
|
181
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312529,"product_id":972477,"sale_price":"0.0","sku_id":"8881xl/45","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
182
|
+
7735X/43","product_desc":"A close and comfortable shave for an affordable
|
183
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
184
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7735X_43-IMS-global","full_image_link":"","map_price":"N","product_code":"7735X/43","product_link":"http://www.philips.com","product_type":"Beauty
|
185
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312532,"product_id":972459,"sale_price":"0.0","sku_id":"7735x/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
186
|
+
7737X/43","product_desc":"A close and comfortable shave for an affordable
|
187
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
188
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7737X_43-IMS-global","full_image_link":"","map_price":"N","product_code":"7737X/43","product_link":"http://www.philips.com","product_type":"Beauty
|
189
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312533,"product_id":972460,"sale_price":"0.0","sku_id":"7737x/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
190
|
+
7775X/43","product_desc":"A close and comfortable shave for an affordable
|
191
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
192
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7775X_43-IMS-global","full_image_link":"","map_price":"N","product_code":"7775X/43","product_link":"http://www.philips.com","product_type":"Beauty
|
193
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312534,"product_id":972461,"sale_price":"0.0","sku_id":"7775x/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
194
|
+
8140XL/43","product_desc":"A close and comfortable shave for an affordable
|
195
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
196
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8140XL_43-IMS-global","full_image_link":"
|
197
|
+
","map_price":"N","product_code":"8140XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
198
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312536,"product_id":973206,"sale_price":"0.0","sku_id":"8140xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
199
|
+
8150XL/43","product_desc":"A close and comfortable shave for an affordable
|
200
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
201
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8150XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"8150XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
202
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312537,"product_id":973262,"sale_price":"0.0","sku_id":"8150xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
203
|
+
8151XL/16","product_desc":"A close and comfortable shave for an affordable
|
204
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
205
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8151XL_16-IMS-global","full_image_link":"","map_price":"N","product_code":"8151XL/16","product_link":"http://www.philips.com","product_type":"Beauty
|
206
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312538,"product_id":973267,"sale_price":"0.0","sku_id":"8151xl/16","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
207
|
+
8171XL/43","product_desc":"A close and comfortable shave for an affordable
|
208
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
209
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8171XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"8171XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
210
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312540,"product_id":973270,"sale_price":"0.0","sku_id":"8171xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
211
|
+
8240XL/18","product_desc":"A close and comfortable shave for an affordable
|
212
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
213
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8240XL_18-IMS-global","full_image_link":"
|
214
|
+
","map_price":"N","product_code":"8240XL/18","product_link":"http://www.philips.com","product_type":"Beauty
|
215
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312542,"product_id":972470,"sale_price":"0.0","sku_id":"8240xl/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
216
|
+
8250XL/18","product_desc":"A close and comfortable shave for an affordable
|
217
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
218
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8250XL_18-IMS-global","full_image_link":"","map_price":"N","product_code":"8250XL/18","product_link":"http://www.philips.com","product_type":"Beauty
|
219
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312543,"product_id":972471,"sale_price":"0.0","sku_id":"8250xl/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
220
|
+
8251XL/18","product_desc":"A close and comfortable shave for an affordable
|
221
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
222
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8251XL_18-IMS-global","full_image_link":"","map_price":"N","product_code":"8251XL/18","product_link":"http://www.philips.com","product_type":"Beauty
|
223
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312544,"product_id":972472,"sale_price":"0.0","sku_id":"8251xl/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
224
|
+
8260XL/22","product_desc":"A close and comfortable shave for an affordable
|
225
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
226
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8260XL_22-IMS-global","full_image_link":"","map_price":"N","product_code":"8260XL/22","product_link":"http://www.philips.com","product_type":"Beauty
|
227
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312545,"product_id":972473,"sale_price":"0.0","sku_id":"8260xl/22","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
228
|
+
9160XL/43","product_desc":"A close and comfortable shave for an affordable
|
229
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
230
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/9160XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"9160XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
231
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312548,"product_id":972479,"sale_price":"0.0","sku_id":"9160xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
232
|
+
9170XL/43","product_desc":"A close and comfortable shave for an affordable
|
233
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
234
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/9170XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"9170XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
235
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312549,"product_id":972480,"sale_price":"0.0","sku_id":"9170xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
236
|
+
9195XL/41","product_desc":"A close and comfortable shave for an affordable
|
237
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
238
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/9195XL_41-IMS-global","full_image_link":"","map_price":"N","product_code":"9195XL/41","product_link":"http://www.philips.com","product_type":"Beauty
|
239
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312552,"product_id":972482,"sale_price":"0.0","sku_id":"9195xl/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
240
|
+
8020X/33","product_desc":"A close and comfortable shave for an affordable
|
241
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
242
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8020X_33-IMS-global","full_image_link":"","map_price":"N","product_code":"8020X/33","product_link":"http://www.philips.com","product_type":"Beauty
|
243
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312554,"product_id":969152,"sale_price":"0.0","sku_id":"8020x/33","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
244
|
+
8040X/18","product_desc":"A close and comfortable shave for an affordable
|
245
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
246
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8040X_18-IMS-global","full_image_link":"
|
247
|
+
","map_price":"N","product_code":"8040X/18","product_link":"http://www.philips.com","product_type":"Beauty
|
248
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312555,"product_id":969153,"sale_price":"0.0","sku_id":"8040x/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
249
|
+
HS8420/22","product_desc":"A close and comfortable shave for an affordable
|
250
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
251
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/HS8420_22-IMS-global","full_image_link":"","map_price":"N","product_code":"HS8420/22","product_link":"http://www.philips.com","product_type":"Beauty
|
252
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312556,"product_id":950229,"sale_price":"0.0","sku_id":"hs8420/22","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
253
|
+
HS8440/40","product_desc":"A close and comfortable shave for an affordable
|
254
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
255
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/HS8440_40-IMS-global","full_image_link":"","map_price":"N","product_code":"HS8440/40","product_link":"http://www.philips.com","product_type":"Beauty
|
256
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312557,"product_id":969154,"sale_price":"0.0","sku_id":"hs8440/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
257
|
+
HS8460/41","product_desc":"A close and comfortable shave for an affordable
|
258
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
259
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/HS8460_41-IMS-global","full_image_link":"","map_price":"N","product_code":"HS8460/41","product_link":"http://www.philips.com","product_type":"Beauty
|
260
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312558,"product_id":972486,"sale_price":"0.0","sku_id":"hs8460/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
261
|
+
HS8015/17","product_desc":"A close and comfortable shave for an affordable
|
262
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
263
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/HS8015_17-IMS-global","full_image_link":"","map_price":"N","product_code":"HS8015/17","product_link":"http://www.philips.com","product_type":"Beauty
|
264
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312559,"product_id":942786,"sale_price":"0.0","sku_id":"hs8015/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
265
|
+
1059X/20","product_desc":"A close and comfortable shave for an affordable
|
266
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
267
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1059X_20-IMS-global","full_image_link":"","map_price":"N","product_code":"1059X/20","product_link":"http://www.philips.com","product_type":"Beauty
|
268
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312561,"product_id":972488,"sale_price":"0.0","sku_id":"1059x/20","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
269
|
+
1090X/20","product_desc":"A close and comfortable shave for an affordable
|
270
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
271
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1090X_20-IMS-global","full_image_link":"","map_price":"N","product_code":"1090X/20","product_link":"http://www.philips.com","product_type":"Beauty
|
272
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312562,"product_id":972489,"sale_price":"0.0","sku_id":"1090x/20","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
273
|
+
1150X/40","product_desc":"A close and comfortable shave for an affordable
|
274
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
275
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1150X_40-IMS-global","full_image_link":"","map_price":"N","product_code":"1150X/40","product_link":"http://www.philips.com","product_type":"Beauty
|
276
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312564,"product_id":972490,"sale_price":"0.0","sku_id":"1150x/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
277
|
+
1160X/40","product_desc":"A close and comfortable shave for an affordable
|
278
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
279
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1160X_40-IMS-global","full_image_link":"","map_price":"N","product_code":"1160X/40","product_link":"http://www.philips.com","product_type":"Beauty
|
280
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312565,"product_id":972491,"sale_price":"0.0","sku_id":"1160x/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
281
|
+
1180X/40","product_desc":"A close and comfortable shave for an affordable
|
282
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
283
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1180X_40-IMS-global","full_image_link":"","map_price":"N","product_code":"1180X/40","product_link":"http://www.philips.com","product_type":"Beauty
|
284
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312567,"product_id":972493,"sale_price":"0.0","sku_id":"1180x/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
285
|
+
1250X/40","product_desc":"A close and comfortable shave for an affordable
|
286
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
287
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1250X_40-IMS-global","full_image_link":"","map_price":"N","product_code":"1250X/40","product_link":"http://www.philips.com","product_type":"Beauty
|
288
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312568,"product_id":972494,"sale_price":"0.0","sku_id":"1250x/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
289
|
+
1260X/40","product_desc":"A close and comfortable shave for an affordable
|
290
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
291
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1260X_40-IMS-global","full_image_link":"","map_price":"N","product_code":"1260X/40","product_link":"http://www.philips.com","product_type":"Beauty
|
292
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312569,"product_id":972495,"sale_price":"0.0","sku_id":"1260x/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
293
|
+
1290X/40","product_desc":"A close and comfortable shave for an affordable
|
294
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
295
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1290X_40-IMS-global","full_image_link":"","map_price":"N","product_code":"1290X/40","product_link":"http://www.philips.com","product_type":"Beauty
|
296
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312571,"product_id":972496,"sale_price":"0.0","sku_id":"1290x/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
297
|
+
6423","product_desc":"A close and comfortable shave for an affordable price.
|
298
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
299
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6423-IMS-global","full_image_link":"","map_price":"N","product_code":"6423","product_link":"http://www.philips.com","product_type":"Beauty
|
300
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312872,"product_id":972497,"sale_price":"0.0","sku_id":"6423","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
301
|
+
6613","product_desc":"A close and comfortable shave for an affordable price.
|
302
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
303
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6613-IMS-global","full_image_link":"","map_price":"N","product_code":"6613","product_link":"http://www.philips.com","product_type":"Beauty
|
304
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312873,"product_id":972505,"sale_price":"0.0","sku_id":"6613","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
305
|
+
6828","product_desc":"A close and comfortable shave for an affordable price.
|
306
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
307
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6828-IMS-global","full_image_link":"","map_price":"N","product_code":"6828","product_link":"http://www.philips.com","product_type":"Beauty
|
308
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312874,"product_id":972438,"sale_price":"0.0","sku_id":"6828","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
309
|
+
6843","product_desc":"A close and comfortable shave for an affordable price.
|
310
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
311
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6843-IMS-global","full_image_link":"","map_price":"N","product_code":"6843","product_link":"http://www.philips.com","product_type":"Beauty
|
312
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312876,"product_id":972512,"sale_price":"0.0","sku_id":"6843","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
313
|
+
6853","product_desc":"A close and comfortable shave for an affordable price.
|
314
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
315
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6853-IMS-global","full_image_link":"","map_price":"N","product_code":"6853","product_link":"http://www.philips.com","product_type":"Beauty
|
316
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312877,"product_id":972516,"sale_price":"0.0","sku_id":"6853","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
317
|
+
6940","product_desc":"A close and comfortable shave for an affordable price.
|
318
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
319
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6940-IMS-global","full_image_link":"","map_price":"N","product_code":"6940","product_link":"http://www.philips.com","product_type":"Beauty
|
320
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312881,"product_id":972517,"sale_price":"0.0","sku_id":"6940","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
321
|
+
6864","product_desc":"A close and comfortable shave for an affordable price.
|
322
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
323
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6864-IMS-global","full_image_link":"","map_price":"N","product_code":"6864","product_link":"http://www.philips.com","product_type":"Beauty
|
324
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474125,"product_id":969156,"sale_price":"0.0","sku_id":"6864","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
325
|
+
31DB","product_desc":"A close and comfortable shave for an affordable price.
|
326
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
327
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/31DB-IMS-global","full_image_link":"","map_price":"N","product_code":"31DB","product_link":"http://www.philips.com","product_type":"Beauty
|
328
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474576,"product_id":972519,"sale_price":"0.0","sku_id":"31db","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
329
|
+
40DB","product_desc":"A close and comfortable shave for an affordable price.
|
330
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
331
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/40DB-IMS-global","full_image_link":"","map_price":"N","product_code":"40DB","product_link":"http://www.philips.com","product_type":"Beauty
|
332
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474577,"product_id":972520,"sale_price":"0.0","sku_id":"40db","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
333
|
+
6423LC","product_desc":"A close and comfortable shave for an affordable price.
|
334
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
335
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6423LC-IMS-global","full_image_link":"","map_price":"N","product_code":"6423LC","product_link":"http://www.philips.com","product_type":"Beauty
|
336
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474578,"product_id":972500,"sale_price":"0.0","sku_id":"6423lc","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
337
|
+
6613X","product_desc":"A close and comfortable shave for an affordable price.
|
338
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
339
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6613X-IMS-global","full_image_link":"","map_price":"N","product_code":"6613X","product_link":"http://www.philips.com","product_type":"Beauty
|
340
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474579,"product_id":973222,"sale_price":"0.0","sku_id":"6613x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
341
|
+
6843XL","product_desc":"A close and comfortable shave for an affordable price.
|
342
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
343
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6843XL-IMS-global","full_image_link":"","map_price":"N","product_code":"6843XL","product_link":"http://www.philips.com","product_type":"Beauty
|
344
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474580,"product_id":972515,"sale_price":"0.0","sku_id":"6843xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
345
|
+
6853X","product_desc":"A close and comfortable shave for an affordable price.
|
346
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
347
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6853X-IMS-global","full_image_link":"","map_price":"N","product_code":"6853X","product_link":"http://www.philips.com","product_type":"Beauty
|
348
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474581,"product_id":969408,"sale_price":"0.0","sku_id":"6853x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
349
|
+
6828XL","product_desc":"A close and comfortable shave for an affordable price.
|
350
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
351
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6828XL-IMS-global","full_image_link":"","map_price":"N","product_code":"6828XL","product_link":"http://www.philips.com","product_type":"Beauty
|
352
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474582,"product_id":972441,"sale_price":"0.0","sku_id":"6828xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
353
|
+
6829XL","product_desc":"A close and comfortable shave for an affordable price.
|
354
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
355
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6829XL-IMS-global","full_image_link":"","map_price":"N","product_code":"6829XL","product_link":"http://www.philips.com","product_type":"Beauty
|
356
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474583,"product_id":972442,"sale_price":"0.0","sku_id":"6829xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
357
|
+
6866XL","product_desc":"A close and comfortable shave for an affordable price.
|
358
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
359
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6866XL-IMS-global","full_image_link":"","map_price":"N","product_code":"6866XL","product_link":"http://www.philips.com","product_type":"Beauty
|
360
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474584,"product_id":972443,"sale_price":"0.0","sku_id":"6866xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
361
|
+
6887XL","product_desc":"A close and comfortable shave for an affordable price.
|
362
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
363
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6887XL-IMS-global","full_image_link":"","map_price":"N","product_code":"6887XL","product_link":"http://www.philips.com","product_type":"Beauty
|
364
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474585,"product_id":972444,"sale_price":"0.0","sku_id":"6887xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
365
|
+
7120X/11","product_desc":"A close and comfortable shave for an affordable
|
366
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
367
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7120X_11-IMS-global","full_image_link":"","map_price":"N","product_code":"7120X/11","product_link":"http://www.philips.com","product_type":"Beauty
|
368
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474586,"product_id":969409,"sale_price":"0.0","sku_id":"7120x/11","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
369
|
+
7125x","product_desc":"A close and comfortable shave for an affordable price.
|
370
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
371
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7125x-IMS-global","full_image_link":"","map_price":"N","product_code":"7125x","product_link":"http://www.philips.com","product_type":"Beauty
|
372
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474587,"product_id":972447,"sale_price":"0.0","sku_id":"7125x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
373
|
+
7140XL/17","product_desc":"A close and comfortable shave for an affordable
|
374
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
375
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7140XL_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7140XL/17","product_link":"http://www.philips.com","product_type":"Beauty
|
376
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474588,"product_id":969410,"sale_price":"0.0","sku_id":"7140xl/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
377
|
+
7145X/18","product_desc":"A close and comfortable shave for an affordable
|
378
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
379
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7145X_18-IMS-global","full_image_link":"","map_price":"N","product_code":"7145X/18","product_link":"http://www.philips.com","product_type":"Beauty
|
380
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474589,"product_id":969411,"sale_price":"0.0","sku_id":"7145x/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
381
|
+
7180X/11","product_desc":"A close and comfortable shave for an affordable
|
382
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
383
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7180X_11-IMS-global","full_image_link":"","map_price":"N","product_code":"7180X/11","product_link":"http://www.philips.com","product_type":"Beauty
|
384
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474590,"product_id":969412,"sale_price":"0.0","sku_id":"7180x/11","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
385
|
+
7360XL","product_desc":"A close and comfortable shave for an affordable price.
|
386
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
387
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7360XL-IMS-global","full_image_link":"","map_price":"N","product_code":"7360XL","product_link":"http://www.philips.com","product_type":"Beauty
|
388
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474591,"product_id":972457,"sale_price":"0.0","sku_id":"7360xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
389
|
+
7800XLCC/40","product_desc":"A close and comfortable shave for an affordable
|
390
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
391
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7800XLCC_40-IMS-global","full_image_link":"","map_price":"N","product_code":"7800XLCC/40","product_link":"http://www.philips.com","product_type":"Beauty
|
392
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474592,"product_id":969413,"sale_price":"0.0","sku_id":"7800xlcc/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
393
|
+
8831XL/43","product_desc":"A close and comfortable shave for an affordable
|
394
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
395
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8831XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"8831XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
396
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474593,"product_id":969414,"sale_price":"0.0","sku_id":"8831xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
397
|
+
8845XL","product_desc":"A close and comfortable shave for an affordable price.
|
398
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
399
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8845XL-IMS-global","full_image_link":"","map_price":"N","product_code":"8845XL","product_link":"http://www.philips.com","product_type":"Beauty
|
400
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474594,"product_id":972475,"sale_price":"0.0","sku_id":"8845xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
401
|
+
8846XL48","product_desc":"A close and comfortable shave for an affordable
|
402
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
403
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8846XL-IMS-global","full_image_link":"","map_price":"N","product_code":"8846XL48","product_link":"http://www.philips.com","product_type":"Beauty
|
404
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474595,"product_id":969415,"sale_price":"0.0","sku_id":"8846xl48","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
405
|
+
8892XL","product_desc":"A close and comfortable shave for an affordable price.
|
406
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
407
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8882XL-IMS-global","full_image_link":"","map_price":"N","product_code":"8892XL","product_link":"http://www.philips.com","product_type":"Beauty
|
408
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474596,"product_id":972478,"sale_price":"0.0","sku_id":"8892xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
409
|
+
8894XL/43","product_desc":"A close and comfortable shave for an affordable
|
410
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
411
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8894XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"8894XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
412
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474597,"product_id":969416,"sale_price":"0.0","sku_id":"8894xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
413
|
+
8138XL/43","product_desc":"A close and comfortable shave for an affordable
|
414
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
415
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8138XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"8138XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
416
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474598,"product_id":969417,"sale_price":"0.0","sku_id":"8138xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
417
|
+
8160XLCC/40","product_desc":"A close and comfortable shave for an affordable
|
418
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
419
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8160XLCC_40-IMS-global","full_image_link":"","map_price":"N","product_code":"8160XLCC/40","product_link":"http://www.philips.com","product_type":"Beauty
|
420
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474599,"product_id":969418,"sale_price":"0.0","sku_id":"8160xlcc/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
421
|
+
8260XLCC/22","product_desc":"A close and comfortable shave for an affordable
|
422
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
423
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8260XLCC_22-IMS-global","full_image_link":"","map_price":"N","product_code":"8260XLCC/22","product_link":"http://www.philips.com","product_type":"Beauty
|
424
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474600,"product_id":969419,"sale_price":"0.0","sku_id":"8260xlcc/22","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
425
|
+
8270XL/18","product_desc":"A close and comfortable shave for an affordable
|
426
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
427
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8270XL_18-IMS-global","full_image_link":"","map_price":"N","product_code":"8270XL/18","product_link":"http://www.philips.com","product_type":"Beauty
|
428
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474601,"product_id":969420,"sale_price":"0.0","sku_id":"8270xl/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
429
|
+
8280XL","product_desc":"A close and comfortable shave for an affordable price.
|
430
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
431
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8280XL-IMS-global","full_image_link":"","map_price":"N","product_code":"8280XL","product_link":"http://www.philips.com","product_type":"Beauty
|
432
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474602,"product_id":972474,"sale_price":"0.0","sku_id":"8280xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
433
|
+
9190XL","product_desc":"A close and comfortable shave for an affordable price.
|
434
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
435
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/9190XL-IMS-global","full_image_link":"","map_price":"N","product_code":"9190XL","product_link":"http://www.philips.com","product_type":"Beauty
|
436
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474603,"product_id":972481,"sale_price":"0.0","sku_id":"9190xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
437
|
+
9199XL/41","product_desc":"A close and comfortable shave for an affordable
|
438
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
439
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/9199XL_41-IMS-global","full_image_link":"","map_price":"N","product_code":"9199XL/41","product_link":"http://www.philips.com","product_type":"Beauty
|
440
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474604,"product_id":969421,"sale_price":"0.0","sku_id":"9199xl/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
441
|
+
1050X/22","product_desc":"A close and comfortable shave for an affordable
|
442
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
443
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1050X_22-IMS-global","full_image_link":"","map_price":"N","product_code":"1050X/22","product_link":"http://www.philips.com","product_type":"Beauty
|
444
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474605,"product_id":969422,"sale_price":"0.0","sku_id":"1050x/22","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
445
|
+
1170x","product_desc":"A close and comfortable shave for an affordable price.
|
446
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
447
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1170x-IMS-global","full_image_link":"","map_price":"N","product_code":"1170x","product_link":"http://www.philips.com","product_type":"Beauty
|
448
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474606,"product_id":972492,"sale_price":"0.0","sku_id":"1170x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
449
|
+
1280X/45","product_desc":"A close and comfortable shave for an affordable
|
450
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
451
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1280X_42-IMS-global","full_image_link":"","map_price":"N","product_code":"1280X/45","product_link":"http://www.philips.com","product_type":"Beauty
|
452
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1474607,"product_id":969423,"sale_price":"0.0","sku_id":"1280x/45","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
453
|
+
6675/33","product_desc":"A close and comfortable shave for an affordable price.
|
454
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
455
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6675_33-IMS-global","full_image_link":"","map_price":"N","product_code":"6675/33","product_link":"http://www.philips.com","product_type":"Beauty
|
456
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478858,"product_id":972278,"sale_price":"0.0","sku_id":"6675/33","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
457
|
+
6900LC/41","product_desc":"A close and comfortable shave for an affordable
|
458
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
459
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6900LC_41-IMS-global","full_image_link":"","map_price":"N","product_code":"6900LC/41","product_link":"http://www.philips.com","product_type":"Beauty
|
460
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478859,"product_id":972279,"sale_price":"0.0","sku_id":"6900lc/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
461
|
+
7864XL","product_desc":"A close and comfortable shave for an affordable price.
|
462
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
463
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7864XL-IMS-global","full_image_link":"","map_price":"N","product_code":"7864XL","product_link":"http://www.philips.com","product_type":"Beauty
|
464
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478860,"product_id":972280,"sale_price":"0.0","sku_id":"7864xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
465
|
+
6945XL/41","product_desc":"A close and comfortable shave for an affordable
|
466
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
467
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6945XL_41-IMS-global","full_image_link":"","map_price":"N","product_code":"6945XL/41","product_link":"http://www.philips.com","product_type":"Beauty
|
468
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478861,"product_id":972281,"sale_price":"0.0","sku_id":"6945xl/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
469
|
+
7250XL","product_desc":"A close and comfortable shave for an affordable price.
|
470
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
471
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7250XL_11-IMS-global","full_image_link":"","map_price":"N","product_code":"7250XL","product_link":"http://www.philips.com","product_type":"Beauty
|
472
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478862,"product_id":972282,"sale_price":"0.0","sku_id":"7250xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
473
|
+
7363/17","product_desc":"A close and comfortable shave for an affordable price.
|
474
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
475
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7363_17-IMS-global","full_image_link":"","map_price":"N","product_code":"7363/17","product_link":"http://www.philips.com","product_type":"Beauty
|
476
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478863,"product_id":972283,"sale_price":"0.0","sku_id":"7363/17","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
477
|
+
6955XL/41","product_desc":"A close and comfortable shave for an affordable
|
478
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
479
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6955XL_41-IMS-global","full_image_link":"","map_price":"N","product_code":"6955XL/41","product_link":"http://www.philips.com","product_type":"Beauty
|
480
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478864,"product_id":972284,"sale_price":"0.0","sku_id":"6955xl/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
481
|
+
7250XL/11","product_desc":"A close and comfortable shave for an affordable
|
482
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
483
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7250XL-IMS-global","full_image_link":"","map_price":"N","product_code":"7250XL/11","product_link":"http://www.philips.com","product_type":"Beauty
|
484
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478865,"product_id":972285,"sale_price":"0.0","sku_id":"7250xl/11","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
485
|
+
7812XL/18","product_desc":"A close and comfortable shave for an affordable
|
486
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
487
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/7812XL_18-IMS-global","full_image_link":"","map_price":"N","product_code":"7812XL/18","product_link":"http://www.philips.com","product_type":"Beauty
|
488
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478866,"product_id":972286,"sale_price":"0.0","sku_id":"7812xl/18","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
489
|
+
AT810/41","product_desc":"A close and comfortable shave for an affordable
|
490
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
491
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT810_41-IMS-global","full_image_link":"","map_price":"N","product_code":"AT810/41","product_link":"http://www.philips.com","product_type":"Beauty
|
492
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478867,"product_id":972287,"sale_price":"0.0","sku_id":"at810/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
493
|
+
8040X","product_desc":"A close and comfortable shave for an affordable price.
|
494
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
495
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8040X-IMS-global","full_image_link":"","map_price":"N","product_code":"8040X","product_link":"http://www.philips.com","product_type":"Beauty
|
496
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478869,"product_id":972539,"sale_price":"0.0","sku_id":"8040x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
497
|
+
AT814/41","product_desc":"A close and comfortable shave for an affordable
|
498
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
499
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT814_41-IMS-global","full_image_link":"","map_price":"N","product_code":"AT814/41","product_link":"http://www.philips.com","product_type":"Beauty
|
500
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478870,"product_id":972288,"sale_price":"0.0","sku_id":"at814/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
501
|
+
8171XL","product_desc":"A close and comfortable shave for an affordable price.
|
502
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
503
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8171XL-IMS-global","full_image_link":"","map_price":"N","product_code":"8171XL","product_link":"http://www.philips.com","product_type":"Beauty
|
504
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478872,"product_id":972468,"sale_price":"0.0","sku_id":"8171xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
505
|
+
8060X","product_desc":"A close and comfortable shave for an affordable price.
|
506
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
507
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8060X-IMS-global","full_image_link":"","map_price":"N","product_code":"8060X","product_link":"http://www.philips.com","product_type":"Beauty
|
508
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478873,"product_id":972289,"sale_price":"0.0","sku_id":"8060x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
509
|
+
AT815/41","product_desc":"A close and comfortable shave for an affordable
|
510
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
511
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT815_41-IMS-global","full_image_link":"","map_price":"N","product_code":"AT815/41","product_link":"http://www.philips.com","product_type":"Beauty
|
512
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478874,"product_id":972290,"sale_price":"0.0","sku_id":"at815/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
513
|
+
8140XL","product_desc":"A close and comfortable shave for an affordable price.
|
514
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
515
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8140XL-IMS-global","full_image_link":"","map_price":"N","product_code":"8140XL","product_link":"http://www.philips.com","product_type":"Beauty
|
516
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478876,"product_id":972541,"sale_price":"0.0","sku_id":"8140xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
517
|
+
8175XLC","product_desc":"A close and comfortable shave for an affordable price.
|
518
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
519
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8175XLC-IMS-global","full_image_link":"","map_price":"N","product_code":"8175XLC","product_link":"http://www.philips.com","product_type":"Beauty
|
520
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478877,"product_id":972469,"sale_price":"0.0","sku_id":"8175xlc","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
521
|
+
8150XL","product_desc":"A close and comfortable shave for an affordable price.
|
522
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
523
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8150XL-IMS-global","full_image_link":"
|
524
|
+
","map_price":"N","product_code":"8150XL","product_link":"http://www.philips.com","product_type":"Beauty
|
525
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478878,"product_id":972466,"sale_price":"0.0","sku_id":"8150xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
526
|
+
AT920/41","product_desc":"A close and comfortable shave for an affordable
|
527
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
528
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT920_20-IMS-global","full_image_link":"","map_price":"N","product_code":"AT920/41","product_link":"http://www.philips.com","product_type":"Beauty
|
529
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478879,"product_id":972292,"sale_price":"0.0","sku_id":"at920/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
530
|
+
AT830/41","product_desc":"A close and comfortable shave for an affordable
|
531
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
532
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT830_41-IMS-global","full_image_link":"","map_price":"N","product_code":"AT830/41","product_link":"http://www.philips.com","product_type":"Beauty
|
533
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478880,"product_id":972293,"sale_price":"0.0","sku_id":"at830/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
534
|
+
8151XL","product_desc":"A close and comfortable shave for an affordable price.
|
535
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
536
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8151XL-IMS-global","full_image_link":"","map_price":"N","product_code":"8151XL","product_link":"http://www.philips.com","product_type":"Beauty
|
537
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478882,"product_id":972467,"sale_price":"0.0","sku_id":"8151xl","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
538
|
+
1060X/20","product_desc":"A close and comfortable shave for an affordable
|
539
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
540
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1060X_20-IMS-global","full_image_link":"","map_price":"N","product_code":"1060X/20","product_link":"http://www.philips.com","product_type":"Beauty
|
541
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478883,"product_id":972294,"sale_price":"0.0","sku_id":"1060x/20","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
542
|
+
8060X/25","product_desc":"A close and comfortable shave for an affordable
|
543
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
544
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8060X-IMS-global","full_image_link":"","map_price":"N","product_code":"8060X/25","product_link":"http://www.philips.com","product_type":"Beauty
|
545
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478884,"product_id":972295,"sale_price":"0.0","sku_id":"8060x/25","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
546
|
+
1060X/40","product_desc":"A close and comfortable shave for an affordable
|
547
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
548
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1060X_20-IMS-global","full_image_link":"","map_price":"N","product_code":"1060X/40","product_link":"http://www.philips.com","product_type":"Beauty
|
549
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478885,"product_id":972296,"sale_price":"0.0","sku_id":"1060x/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
550
|
+
8260XL/40","product_desc":"A close and comfortable shave for an affordable
|
551
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
552
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8260XL_40-IMS-global","full_image_link":"","map_price":"N","product_code":"8260XL/40","product_link":"http://www.philips.com","product_type":"Beauty
|
553
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478886,"product_id":972297,"sale_price":"0.0","sku_id":"8260xl/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
554
|
+
1180X/42","product_desc":"A close and comfortable shave for an affordable
|
555
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
556
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1180X_42-IMS-global","full_image_link":"","map_price":"N","product_code":"1180X/42","product_link":"http://www.philips.com","product_type":"Beauty
|
557
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478887,"product_id":972298,"sale_price":"0.0","sku_id":"1180x/42","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
558
|
+
AT875/41","product_desc":"A close and comfortable shave for an affordable
|
559
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
560
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT875_41-IMS-global","full_image_link":"","map_price":"N","product_code":"AT875/41","product_link":"http://www.philips.com","product_type":"Beauty
|
561
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478888,"product_id":972299,"sale_price":"0.0","sku_id":"at875/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
562
|
+
8160XLCC","product_desc":"A close and comfortable shave for an affordable
|
563
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
564
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8160XLCC-IMS-global","full_image_link":"","map_price":"N","product_code":"8160XLCC","product_link":"http://www.philips.com","product_type":"Beauty
|
565
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478890,"product_id":972300,"sale_price":"0.0","sku_id":"8160xlcc","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
566
|
+
AT895/41","product_desc":"A close and comfortable shave for an affordable
|
567
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
568
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT895_41-IMS-global","full_image_link":"","map_price":"N","product_code":"AT895/41","product_link":"http://www.philips.com","product_type":"Beauty
|
569
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478891,"product_id":972301,"sale_price":"0.0","sku_id":"at895/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
570
|
+
1090X/40","product_desc":"A close and comfortable shave for an affordable
|
571
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
572
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1090X_20-IMS-global","full_image_link":"","map_price":"N","product_code":"1090X/40","product_link":"http://www.philips.com","product_type":"Beauty
|
573
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478892,"product_id":972302,"sale_price":"0.0","sku_id":"1090x/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
574
|
+
1250X/42","product_desc":"A close and comfortable shave for an affordable
|
575
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
576
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1250X_42-IMS-global","full_image_link":"","map_price":"N","product_code":"1250X/42","product_link":"http://www.philips.com","product_type":"Beauty
|
577
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478893,"product_id":972303,"sale_price":"0.0","sku_id":"1250x/42","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
578
|
+
8170XL/43","product_desc":"A close and comfortable shave for an affordable
|
579
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
580
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8170XL_43-IMS-global","full_image_link":"","map_price":"N","product_code":"8170XL/43","product_link":"http://www.philips.com","product_type":"Beauty
|
581
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478895,"product_id":972304,"sale_price":"0.0","sku_id":"8170xl/43","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
582
|
+
PT720/41","product_desc":"A close and comfortable shave for an affordable
|
583
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
584
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/PT720_41-IMS-global","full_image_link":"","map_price":"N","product_code":"PT720/41","product_link":"http://www.philips.com","product_type":"Beauty
|
585
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478896,"product_id":972305,"sale_price":"0.0","sku_id":"pt720/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
586
|
+
1250X/45","product_desc":"A close and comfortable shave for an affordable
|
587
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
588
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1250X_45-IMS-global","full_image_link":"","map_price":"N","product_code":"1250X/45","product_link":"http://www.philips.com","product_type":"Beauty
|
589
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478897,"product_id":972306,"sale_price":"0.0","sku_id":"1250x/45","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
590
|
+
1160X/42","product_desc":"A close and comfortable shave for an affordable
|
591
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
592
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1160X_42-IMS-global","full_image_link":"","map_price":"N","product_code":"1160X/42","product_link":"http://www.philips.com","product_type":"Beauty
|
593
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478898,"product_id":972307,"sale_price":"0.0","sku_id":"1160x/42","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
594
|
+
8170XLCC","product_desc":"A close and comfortable shave for an affordable
|
595
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
596
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8170XLCC-IMS-global","full_image_link":"","map_price":"N","product_code":"8170XLCC","product_link":"http://www.philips.com","product_type":"Beauty
|
597
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478899,"product_id":972308,"sale_price":"0.0","sku_id":"8170xlcc","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
598
|
+
1165X/45","product_desc":"A close and comfortable shave for an affordable
|
599
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
600
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1165X_45-IMS-global","full_image_link":"","map_price":"N","product_code":"1165X/45","product_link":"http://www.philips.com","product_type":"Beauty
|
601
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478901,"product_id":972310,"sale_price":"0.0","sku_id":"1165x/45","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
602
|
+
PT725/41","product_desc":"A close and comfortable shave for an affordable
|
603
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
604
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/PT725_41-IMS-global","full_image_link":"","map_price":"N","product_code":"PT725/41","product_link":"http://www.philips.com","product_type":"Beauty
|
605
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478902,"product_id":972311,"sale_price":"0.0","sku_id":"pt725/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
606
|
+
1255X/44","product_desc":"A close and comfortable shave for an affordable
|
607
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
608
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1255X_44-IMS-global","full_image_link":"","map_price":"N","product_code":"1255X/44","product_link":"http://www.philips.com","product_type":"Beauty
|
609
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478904,"product_id":972312,"sale_price":"0.0","sku_id":"1255x/44","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
610
|
+
8170XLCC/40","product_desc":"A close and comfortable shave for an affordable
|
611
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
612
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8170XLCC_40-IMS-global","full_image_link":"","map_price":"N","product_code":"8170XLCC/40","product_link":"http://www.philips.com","product_type":"Beauty
|
613
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478905,"product_id":972314,"sale_price":"0.0","sku_id":"8170xlcc/40","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
614
|
+
PT730/41","product_desc":"A close and comfortable shave for an affordable
|
615
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
616
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/PT730_41-IMS-global","full_image_link":"","map_price":"N","product_code":"PT730/41","product_link":"http://www.philips.com","product_type":"Beauty
|
617
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478906,"product_id":961574,"sale_price":"0.0","sku_id":"pt730/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
618
|
+
PT734/41","product_desc":"A close and comfortable shave for an affordable
|
619
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
620
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/PT734_41-IMS-global","full_image_link":"","map_price":"N","product_code":"PT734/41","product_link":"http://www.philips.com","product_type":"Beauty
|
621
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478908,"product_id":972315,"sale_price":"0.0","sku_id":"pt734/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
622
|
+
PT735/41","product_desc":"A close and comfortable shave for an affordable
|
623
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
624
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/PT735_41-IMS-global","full_image_link":"","map_price":"N","product_code":"PT735/41","product_link":"http://www.philips.com","product_type":"Beauty
|
625
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478910,"product_id":961578,"sale_price":"0.0","sku_id":"pt735/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
626
|
+
8020X","product_desc":"A close and comfortable shave for an affordable price.
|
627
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
628
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8020X-IMS-global","full_image_link":"
|
629
|
+
","map_price":"N","product_code":"8020X","product_link":"http://www.philips.com","product_type":"Beauty
|
630
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478911,"product_id":972538,"sale_price":"0.0","sku_id":"8020x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
631
|
+
8020X","product_desc":"A close and comfortable shave for an affordable price.
|
632
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
633
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/8020X-IMS-global","full_image_link":"","map_price":"N","product_code":"8020X","product_link":"http://www.philips.com","product_type":"Beauty
|
634
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478912,"product_id":972538,"sale_price":"0.0","sku_id":"8020x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
635
|
+
1280X/42","product_desc":"A close and comfortable shave for an affordable
|
636
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
637
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/1280X_45-IMS-global","full_image_link":"","map_price":"N","product_code":"1280X/42","product_link":"http://www.philips.com","product_type":"Beauty
|
638
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1478913,"product_id":972316,"sale_price":"0.0","sku_id":"1280x/42","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
639
|
+
6701X","product_desc":"A close and comfortable shave for an affordable price.
|
640
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
641
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6701X-IMS-global","full_image_link":"","map_price":"N","product_code":"6701X","product_link":"http://www.philips.com","product_type":"Beauty
|
642
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1541994,"product_id":997673,"sale_price":"0.0","sku_id":"6701x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
643
|
+
6711X","product_desc":"A close and comfortable shave for an affordable price.
|
644
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
645
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6711X-IMS-global","full_image_link":"","map_price":"N","product_code":"6711X","product_link":"http://www.philips.com","product_type":"Beauty
|
646
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1541995,"product_id":997674,"sale_price":"0.0","sku_id":"6711x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
647
|
+
6716X","product_desc":"A close and comfortable shave for an affordable price.
|
648
|
+
The Reflex Action system is combined with the Super Lift and Cut technology,
|
649
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/6716X-IMS-global","full_image_link":"","map_price":"N","product_code":"6716X","product_link":"http://www.philips.com","product_type":"Beauty
|
650
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1541996,"product_id":997675,"sale_price":"0.0","sku_id":"6716x","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
651
|
+
AT811/41","product_desc":"A close and comfortable shave for an affordable
|
652
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
653
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT811_41-IMS-global","full_image_link":"","map_price":"N","product_code":"AT811/41","product_link":"http://www.philips.com","product_type":"Beauty
|
654
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1541997,"product_id":997676,"sale_price":"0.0","sku_id":"at811/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
655
|
+
AT880/44","product_desc":"A close and comfortable shave for an affordable
|
656
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
657
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT880_44-IMS-global","full_image_link":"","map_price":"N","product_code":"AT880/44","product_link":"http://www.philips.com","product_type":"Beauty
|
658
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1541998,"product_id":997677,"sale_price":"0.0","sku_id":"at880/44","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null},{"product_name":"Philips
|
659
|
+
PT861/41","product_desc":"A close and comfortable shave for an affordable
|
660
|
+
price. The Reflex Action system is combined with the Super Lift and Cut technology,
|
661
|
+
guaranteeing a close and comfortable shave.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/AT861_41-IMS-global","full_image_link":"","map_price":"N","product_code":"PT861/41","product_link":"http://www.philips.com","product_type":"Beauty
|
662
|
+
> Electric Shavers","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1541999,"product_id":997678,"sale_price":"0.0","sku_id":"pt861/41","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":null,"pop_up":null}],"":[]},{"sort_order":1,"tool_group_name":"Shaver
|
663
|
+
Heads","tool_group_id":"00137362-af73-4cd3-b24f-654aa18da006","rankings":[{"product_name":"Philips
|
664
|
+
RQ11/52","product_desc":"To maintain the maximum performance from your Philips
|
665
|
+
shaver, replace your shaving heads every 2 years.","brand_name":"Philips","calculated_rank":2000,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/RQ11_52-IMS-global","full_image_link":"http://cdn.igodigital.com/images/philips/shaver-heads/RQ11.png","map_price":"N","product_code":"RQ11/52","product_link":"http://www.usa.philips.com/c/shaverheads/sensotouch-senso-touch-2d-rq11_52/prd/en/","product_type":"Beauty
|
666
|
+
> Shaver Heads","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312484,"product_id":973808,"sale_price":"0.0","sku_id":"rq11/52","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":"http://cdn.igodigital.com/images/philips/decocaps_hi_res/RQ11.png","pop_up":""},{"product_name":"Philips
|
667
|
+
RQ12/52","product_desc":"To maintain the maximum performance from your Philips
|
668
|
+
shaver, replace your shaving heads every 2 years.","brand_name":"Philips","calculated_rank":2000,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/RQ12_52-IMS-global","full_image_link":"http://cdn.igodigital.com/images/philips/shaver-heads/RQ12.png","map_price":"N","product_code":"RQ12/52","product_link":"http://www.usa.philips.com/c/shaverheads/sensotouch-3d-sensotouch-3d-rq12_52/prd/en/","product_type":"Beauty
|
669
|
+
> Shaver Heads","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312485,"product_id":973818,"sale_price":"0.0","sku_id":"rq12/52","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":"http://cdn.igodigital.com/images/philips/decocaps_hi_res/RQ12.png","pop_up":""},{"product_name":"Philips
|
670
|
+
HQ8/52","product_desc":"To maintain the maximum performance from your Philips
|
671
|
+
shaver, replace your shaving heads every 2 years.","brand_name":"Philips","calculated_rank":2000,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/HQ8_52-IMS-global","full_image_link":"http://cdn.igodigital.com/images/philips/shaver-heads/HQ8.png","map_price":"N","product_code":"HQ8/52","product_link":"http://www.usa.philips.com/c/shaverheads/3-heads-hq8_52/prd/en/","product_type":"Beauty
|
672
|
+
> Shaver Heads","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312481,"product_id":973831,"sale_price":"0.0","sku_id":"hq8/52","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":"http://cdn.igodigital.com/images/philips/decocaps_hi_res/HQ852.png","pop_up":""},{"product_name":"Philips
|
673
|
+
RQ10/52","product_desc":"To maintain the maximum performance from your Philips
|
674
|
+
shaver, replace your shaving heads every 2 years.","brand_name":"Philips","calculated_rank":2000,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/RQ10_52-IMS-global","full_image_link":"http://cdn.igodigital.com/images/philips/shaver-heads/RQ10.png","map_price":"N","product_code":"RQ10/52","product_link":"http://www.usa.philips.com/c/shaverheads/arcitec-flex-pivot-action-rq10_52/prd/en/","product_type":"Beauty
|
675
|
+
> Shaver Heads","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312483,"product_id":973800,"sale_price":"0.0","sku_id":"rq10/52","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":"http://cdn.igodigital.com/images/philips/decocaps_hi_res/RQ10.png","pop_up":""},{"product_name":"Philips
|
676
|
+
HQ6/52","product_desc":"To maintain the maximum performance from your Philips
|
677
|
+
shaver, replace your shaving heads every 2 years.","brand_name":"Philips","calculated_rank":1000,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/HQ6_52-IMS-global","full_image_link":"http://cdn.igodigital.com/images/philips/shaver-heads/HQ6_50.png","map_price":"N","product_code":"HQ6/52","product_link":"http://www.usa.philips.com/c/shaverheads/3-heads-hq6_52/prd/en/","product_type":"Beauty
|
678
|
+
> Shaver Heads","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312480,"product_id":895446,"sale_price":"0.0","sku_id":"hq6/52","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":"http://cdn.igodigital.com/images/philips/decocaps_hi_res/HQ6.png","pop_up":""},{"product_name":"Philips
|
679
|
+
HQ9/52","product_desc":"To maintain the maximum performance from your Philips
|
680
|
+
shaver, replace your shaving heads every 2 years.","brand_name":"Philips","calculated_rank":1000,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/HQ9_52-IMS-global","full_image_link":"http://cdn.igodigital.com/images/philips/shaver-heads/HQ9.png","map_price":"N","product_code":"HQ9/52","product_link":"http://www.usa.philips.com/c/shaverheads/3-heads-hq9_52/prd/en/","product_type":"Beauty
|
681
|
+
> Shaver Heads","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312482,"product_id":973399,"sale_price":"0.0","sku_id":"hq9/52","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":"http://cdn.igodigital.com/images/philips/decocaps_hi_res/HQ9.png","pop_up":""},{"product_name":"Philips
|
682
|
+
HQ56/52","product_desc":"To maintain the maximum performance from your Philips
|
683
|
+
shaver, replace your shaving heads every 2 years.","brand_name":"Philips","calculated_rank":0,"image_link":"http://images.philips.com/is/image/PhilipsConsumer/HQ56_52-IMS-global","full_image_link":"http://cdn.igodigital.com/images/philips/shaver-heads/HQ56.png","map_price":"N","product_code":"HQ56/52","product_link":"http://www.usa.philips.com/c/shaverheads/3-heads-hq56_52/prd/en/","product_type":"Beauty
|
684
|
+
> Shaver Heads","rebate":"0.0","regular_price":"0.0","retailer_id":516,"retailer_product_id":1312479,"product_id":973570,"sale_price":"0.0","sku_id":"hq56/52","reviews":null,"availability":"Y","online_availability":"Y","deco_cap":"http://cdn.igodigital.com/images/philips/decocaps_hi_res/HQ56.png","pop_up":"94903471-5318-4796-bc1f-7af22adc8bd0"}],"":[]}],"":[]}]}'
|
685
|
+
http_version:
|
686
|
+
recorded_at: Thu, 25 Oct 2012 01:00:02 GMT
|
687
|
+
recorded_with: VCR 2.2.5
|