citygrid_api 0.0.6 → 0.0.7
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/.sass-cache/c6f2c767b164f077e5b9fb1f18a7886d7c755211/test.scssc +0 -0
- data/README.rdoc +42 -13
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/citygrid_api.gemspec +23 -12
- data/citygrid_api.yml.sample +10 -2
- data/citygrid_api.yml.sandbox +46 -0
- data/dashboard.rb +1 -1
- data/fixtures/vcr_cassettes/AdGroupCriterion_mutate.yml +3 -3
- data/fixtures/vcr_cassettes/AdGroupCriterion_search.yml +3 -3
- data/fixtures/vcr_cassettes/Adding_a_place.yml +4 -4
- data/fixtures/vcr_cassettes/Geo.yml +30 -13
- data/fixtures/vcr_cassettes/Getting_an_offer.yml +413 -0
- data/fixtures/vcr_cassettes/Getting_an_offer_by_listing_ID.yml +12 -12
- data/fixtures/vcr_cassettes/Import_a_cg_account.yml +28 -16
- data/fixtures/vcr_cassettes/Initiating_a_Details.yml +14 -30
- data/fixtures/vcr_cassettes/Initiating_new_MultiDetails.yml +13 -13
- data/fixtures/vcr_cassettes/Mutating_AdGroup_Ads.yml +4 -4
- data/fixtures/vcr_cassettes/Report_summary_daily.yml +34 -34
- data/fixtures/vcr_cassettes/Report_summary_user_actions.yml +14 -10
- data/fixtures/vcr_cassettes/Search_Ad_Group_by_Campaign_Id.yml +3 -3
- data/fixtures/vcr_cassettes/Search_Billing_by_Campaign_Id.yml +31 -12
- data/fixtures/vcr_cassettes/Search_account_manager_by_Campaign_Id.yml +25 -12
- data/fixtures/vcr_cassettes/Searching_AdGroup_Geo.yml +6 -6
- data/fixtures/vcr_cassettes/Searching_budgets.yml +31 -12
- data/fixtures/vcr_cassettes/Searching_categories_by_listing_id.yml +3 -3
- data/fixtures/vcr_cassettes/Searching_categories_by_query.yml +3 -3
- data/fixtures/vcr_cassettes/Upload_an_image_Add_a_preview.yml +31 -12
- data/fixtures/vcr_cassettes/{Method_of_Payment_mutate.yml → create_a_mop.yml} +24 -12
- data/fixtures/vcr_cassettes/create_an_offer.yml +51 -0
- data/fixtures/vcr_cassettes/create_campaign.yml +5 -5
- data/fixtures/vcr_cassettes/create_campaign_then_create_ad_group_belonging_to_campaign.yml +61 -0
- data/fixtures/vcr_cassettes/create_campaign_then_create_ad_group_belonging_to_campaign_then_search_.yml +91 -0
- data/fixtures/vcr_cassettes/getting_reviews_by_listing_id.yml +91 -0
- data/fixtures/vcr_cassettes/log_in_a_session.yml +3 -3
- data/fixtures/vcr_cassettes/log_in_a_session_mutate_places.yml +7 -7
- data/fixtures/vcr_cassettes/query_account_type_by_id.yml +24 -12
- data/fixtures/vcr_cassettes/search_for_an_account_by_id.yml +24 -13
- data/fixtures/vcr_cassettes/search_for_an_account_by_name.yml +27 -17
- data/fixtures/vcr_cassettes/search_for_call_detail_by_campaign.yml +49 -0
- data/fixtures/vcr_cassettes/search_for_mop_by_account_id.yml +65 -0
- data/fixtures/vcr_cassettes/searching_for_a_CityGrid_listing.yml +57 -53
- data/fixtures/vcr_cassettes/searching_for_a_special_CityGrid_listing.yml +10 -10
- data/fixtures/vcr_cassettes/user_log_in_with_raw_API.yml +24 -0
- data/fixtures/vcr_cassettes/user_log_in_with_session.yml +24 -0
- data/lib/citygrid/api/accounts/account.rb +2 -2
- data/lib/citygrid/api/accounts/method_of_payment.rb +2 -2
- data/lib/citygrid/api/accounts/user.rb +8 -4
- data/lib/citygrid/api/advertising/account_manager.rb +1 -1
- data/lib/citygrid/api/advertising/ad_group.rb +2 -2
- data/lib/citygrid/api/advertising/ad_group_ad.rb +2 -2
- data/lib/citygrid/api/advertising/ad_group_criterion.rb +2 -2
- data/lib/citygrid/api/advertising/ad_group_geo.rb +2 -2
- data/lib/citygrid/api/advertising/billing.rb +2 -1
- data/lib/citygrid/api/advertising/budget.rb +2 -2
- data/lib/citygrid/api/advertising/call_detail.rb +2 -2
- data/lib/citygrid/api/advertising/campaign.rb +2 -2
- data/lib/citygrid/api/advertising/category.rb +2 -2
- data/lib/citygrid/api/advertising/geolocation.rb +2 -2
- data/lib/citygrid/api/advertising/image.rb +3 -3
- data/lib/citygrid/api/advertising/offers.rb +10 -0
- data/lib/citygrid/api/advertising/places.rb +2 -2
- data/lib/citygrid/api/content/offers.rb +11 -2
- data/lib/citygrid/api/content/places.rb +1 -1
- data/lib/citygrid/api/content/response.rb +14 -0
- data/lib/citygrid/api/content/reviews.rb +5 -2
- data/lib/citygrid/api/mutable.rb +13 -0
- data/lib/citygrid/api/searchable.rb +4 -6
- data/lib/citygrid/api.rb +70 -52
- data/lib/citygrid/session.rb +5 -9
- data/lib/citygrid.rb +28 -1
- data/test/api/accounts/test_account.rb +53 -32
- data/test/api/accounts/test_method_of_payment.rb +40 -43
- data/test/api/accounts/test_user.rb +16 -0
- data/test/api/advertising/test_call_detail.rb +17 -2
- data/test/api/advertising/test_offers.rb +33 -0
- data/test/api/advertising/test_places.rb +18 -0
- data/test/api/content/test_offers.rb +14 -14
- data/test/api/content/test_response.rb +51 -0
- data/test/api/content/test_reviews.rb +11 -0
- data/test/helper.rb +18 -11
- metadata +41 -29
- data/README +0 -21
- data/citygrid_api.yml.backup +0 -35
- data/fixtures/vcr_cassettes/Call_Detail_by_campaign.yml +0 -79
- data/fixtures/vcr_cassettes/Method_of_Payment_search.yml +0 -59
- data/lib/citygrid/api/mutatable.rb +0 -15
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
---
|
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
|
3
|
+
request: !ruby/struct:VCR::Request
|
|
4
|
+
method: :get
|
|
5
|
+
uri: http://api.citygridmedia.com:80/content/offers/v2/search/where?client_ip=192.168.0.1&format=json&publisher=citygrid&what=restaurant&where=98033
|
|
6
|
+
body: !!null
|
|
7
|
+
headers:
|
|
8
|
+
accept:
|
|
9
|
+
- application/json
|
|
10
|
+
content-type:
|
|
11
|
+
- Application/JSON
|
|
12
|
+
response: !ruby/struct:VCR::Response
|
|
13
|
+
status: !ruby/struct:VCR::ResponseStatus
|
|
14
|
+
code: 200
|
|
15
|
+
message: OK
|
|
16
|
+
headers:
|
|
17
|
+
date:
|
|
18
|
+
- Sat, 31 Dec 2011 01:13:25 GMT
|
|
19
|
+
server:
|
|
20
|
+
- Apache-Coyote/1.1
|
|
21
|
+
content-type:
|
|
22
|
+
- application/xml
|
|
23
|
+
vary:
|
|
24
|
+
- Accept-Encoding
|
|
25
|
+
transfer-encoding:
|
|
26
|
+
- chunked
|
|
27
|
+
body: ! '<?xml version=''1.0'' encoding=''UTF-8''?><results total_hits="15" rpp="20"
|
|
28
|
+
page="1" last_hit="15" first_hit="1"><uri>http://api.citygridmedia.com/search/offers/v2/search/where?has_budget=true&format=json%2Cjson&page=1&rpp=20&histograms=false&what=restaurant&where=98033&publisher=citygrid&region_type=circle</uri><did_you_mean
|
|
29
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><regions><region
|
|
30
|
+
type="market"><name>Seattle, WA Metro</name><latitude>47.761743</latitude><longitude>-121.780798</longitude><default_radius>67.1000</default_radius></region></regions><histograms/><offers><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
31
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_60276412</id><reference_id>1</reference_id><impression_id>000b000002f37c9f9c22c84457b9cde2c742ce9eb7</impression_id><title>Free
|
|
32
|
+
Meal</title><description>1 Free Meal if you purchase 4 or more entrees</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Does
|
|
33
|
+
not include drinks; valid from 10am - 4pm, Monday - Friday. Make sure to say
|
|
34
|
+
you heard about this offer at CityGrid.</terms><redemption_url>http://www.tropicosbreeze.com</redemption_url><offer_source>CUSTOMER</offer_source><offer_types><offer_type>free</offer_type></offer_types><image_url
|
|
35
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2010-09-01T00:00:00.000Z</start_date><expiration_date
|
|
36
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
37
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
38
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
39
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>45523431</id><infousa_id
|
|
40
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><rating>10.0</rating><name>Tropicos
|
|
41
|
+
Breeze</name><address><street>9710 Aurora Ave N</street><city>Seattle</city><state>WA</state><postal_code>98103</postal_code></address><phone>2065243046</phone><latitude>47.699713</latitude><longitude>-122.344659</longitude><image_url>http://images.citysearch.net/assets/imgdb/merchant/2010/8/27/0/hViBprOP182_100x100.jpeg</image_url><business_hours>Mon-Wed
|
|
42
|
+
10am-9:30pm; Thu-Sun 10am-10pm</business_hours><tags><tag id="11206" primary="false">Colombian</tag><tag
|
|
43
|
+
id="11207" primary="false">Costa Rican</tag><tag id="11208" primary="false">Mexican</tag><tag
|
|
44
|
+
id="11209" primary="false">Nicaraguan</tag><tag id="11194" primary="false">Puerto
|
|
45
|
+
Rican</tag><tag id="1728" primary="false">Dessert Shops</tag><tag id="11349"
|
|
46
|
+
primary="false">Discover</tag><tag id="1684" primary="false">Food & Dining</tag><tag
|
|
47
|
+
id="1722" primary="true">Restaurants</tag><tag id="11347" primary="false">Debit
|
|
48
|
+
Card</tag><tag id="10018" primary="false">Beer & Wine Only</tag><tag id="11211"
|
|
49
|
+
primary="false">Venezuelan</tag><tag id="11212" primary="false">Latin American</tag><tag
|
|
50
|
+
id="66" primary="false">Arts & Entertainment</tag><tag id="11232" primary="false">$$</tag><tag
|
|
51
|
+
id="1738" primary="false">Global</tag><tag id="11369" primary="false">Parking
|
|
52
|
+
Lot</tag><tag id="11239" primary="false">Breakfast</tag><tag id="11286" primary="false">Lunch
|
|
53
|
+
Spot</tag><tag id="11361" primary="false">MasterCard</tag><tag id="11339" primary="false">Cash</tag><tag
|
|
54
|
+
id="164" primary="false">Bars & Clubs</tag><tag id="11382" primary="false">Visa</tag><tag
|
|
55
|
+
id="11333" primary="false">American Express</tag><tag id="11263" primary="false">Family-Friendly
|
|
56
|
+
Dining</tag></tags><public_id>tropicos-breeze-seattle</public_id></location></locations><offer_collapse_count
|
|
57
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
58
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_60308852</id><reference_id>1</reference_id><impression_id>000b000002740866bc9d6e478f9765910ed2177850</impression_id><title>NEW
|
|
59
|
+
Pupusas only $2.99! Choose From Cheese & Jalapeno, Shrimp, or Tilapia.</title><description>
|
|
60
|
+
|
|
61
|
+
When You Mention This Offer From CityGrid Media!</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Must
|
|
62
|
+
mention CityGrid Media to redeem discount. Cannot be combined with any other
|
|
63
|
+
offer. Please call for details.</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
64
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>other</offer_type></offer_types><image_url
|
|
65
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2010-09-07T00:00:00.000Z</start_date><expiration_date
|
|
66
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
67
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
68
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
69
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>45523431</id><infousa_id
|
|
70
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><rating>10.0</rating><name>Tropicos
|
|
71
|
+
Breeze</name><address><street>9710 Aurora Ave N</street><city>Seattle</city><state>WA</state><postal_code>98103</postal_code></address><phone>2065243046</phone><latitude>47.699713</latitude><longitude>-122.344659</longitude><image_url>http://images.citysearch.net/assets/imgdb/merchant/2010/8/27/0/hViBprOP182_100x100.jpeg</image_url><business_hours>Mon-Wed
|
|
72
|
+
10am-9:30pm; Thu-Sun 10am-10pm</business_hours><tags><tag id="11206" primary="false">Colombian</tag><tag
|
|
73
|
+
id="11207" primary="false">Costa Rican</tag><tag id="11208" primary="false">Mexican</tag><tag
|
|
74
|
+
id="11209" primary="false">Nicaraguan</tag><tag id="11194" primary="false">Puerto
|
|
75
|
+
Rican</tag><tag id="1728" primary="false">Dessert Shops</tag><tag id="11349"
|
|
76
|
+
primary="false">Discover</tag><tag id="1684" primary="false">Food & Dining</tag><tag
|
|
77
|
+
id="1722" primary="true">Restaurants</tag><tag id="11347" primary="false">Debit
|
|
78
|
+
Card</tag><tag id="10018" primary="false">Beer & Wine Only</tag><tag id="11211"
|
|
79
|
+
primary="false">Venezuelan</tag><tag id="11212" primary="false">Latin American</tag><tag
|
|
80
|
+
id="66" primary="false">Arts & Entertainment</tag><tag id="11232" primary="false">$$</tag><tag
|
|
81
|
+
id="1738" primary="false">Global</tag><tag id="11369" primary="false">Parking
|
|
82
|
+
Lot</tag><tag id="11239" primary="false">Breakfast</tag><tag id="11286" primary="false">Lunch
|
|
83
|
+
Spot</tag><tag id="11361" primary="false">MasterCard</tag><tag id="11339" primary="false">Cash</tag><tag
|
|
84
|
+
id="164" primary="false">Bars & Clubs</tag><tag id="11382" primary="false">Visa</tag><tag
|
|
85
|
+
id="11333" primary="false">American Express</tag><tag id="11263" primary="false">Family-Friendly
|
|
86
|
+
Dining</tag></tags><public_id>tropicos-breeze-seattle</public_id></location></locations><offer_collapse_count
|
|
87
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
88
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_71416982</id><reference_id>1</reference_id><impression_id>000b00000271d5c55a1b8443b1a67ebc1a9ba94f12</impression_id><title>Free
|
|
89
|
+
Shipping on Volterra Signature Products</title><description>Free Shipping when
|
|
90
|
+
you order Volterra Signature Products online. Visit http://volterraproducts.net/index.html</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>For
|
|
91
|
+
online orders.</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
92
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>free</offer_type></offer_types><image_url
|
|
93
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2010-11-05T00:00:00.000Z</start_date><expiration_date
|
|
94
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
95
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
96
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
97
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>41708108</id><infousa_id>611769993</infousa_id><rating>9.0</rating><name>Volterra</name><address><street>5411
|
|
98
|
+
Ballard Ave NW</street><city>Seattle</city><state>WA</state><postal_code>98107</postal_code></address><phone>2067895100</phone><latitude>47.6678</latitude><longitude>-122.385</longitude><image_url>http://images.citysearch.net/assets/imgdb/merchant/2009/12/1/0/cIpVFcqy33_100x100.jpeg</image_url><business_hours>Mon-Thu
|
|
99
|
+
5pm-12am
|
|
100
|
+
|
|
101
|
+
Fri 5pm-1am
|
|
102
|
+
|
|
103
|
+
Sat 9am-2pm, 5pm-1am
|
|
104
|
+
|
|
105
|
+
Sun 9am-2pm, 5pm-9pm</business_hours><tags><tag id="11258" primary="false">Dine
|
|
106
|
+
At The Bar</tag><tag id="11265" primary="false">Fine Dining</tag><tag id="11233"
|
|
107
|
+
primary="false">$$$</tag><tag id="11279" primary="false">Italian</tag><tag id="11269"
|
|
108
|
+
primary="false">Group Dining</tag><tag id="1738" primary="false">Global</tag><tag
|
|
109
|
+
id="11361" primary="false">MasterCard</tag><tag id="11294" primary="false">Notable
|
|
110
|
+
Wine List</tag><tag id="1705" primary="false">Catering</tag><tag id="11296"
|
|
111
|
+
primary="false">Outdoor Dining</tag><tag id="11282" primary="false">Late Night
|
|
112
|
+
Dining</tag><tag id="11349" primary="false">Discover</tag><tag id="1684" primary="false">Food
|
|
113
|
+
& Dining</tag><tag id="11382" primary="false">Visa</tag><tag id="11240"
|
|
114
|
+
primary="false">Brunch</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
115
|
+
id="11333" primary="false">American Express</tag><tag id="11263" primary="false">Family-Friendly
|
|
116
|
+
Dining</tag><tag id="11307" primary="false">Romantic Dining</tag></tags><public_id>volterra-seattle</public_id></location></locations><offer_collapse_count
|
|
117
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
118
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_75384112</id><reference_id>1</reference_id><impression_id>000b000002c47f1fbeb3da4c9ca98911f11c29fcef</impression_id><title>Citysearch
|
|
119
|
+
Special- Try One, Get One FREE!</title><description>Mention this Citysearch
|
|
120
|
+
ad when you try any one of our menu items and get a FREE Yellow Plate! For more
|
|
121
|
+
info, please stop by and see us, or call us for more info: (206) 452-1359</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>To
|
|
122
|
+
redeem this offer, you must print out this certificate or show the offer on
|
|
123
|
+
your mobile application. Offer valid with a minimum of $10 purchase.</terms><redemption_url
|
|
124
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>buy1get1</offer_type></offer_types><image_url>http://images.citysearch.net/assets/imgdb/merchant/2011/1/14/0/izRPgjjr255_100x100.jpeg</image_url><start_date>2011-01-14T00:00:00.000Z</start_date><expiration_date
|
|
125
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
126
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
127
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
128
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>603414012</id><infousa_id>404689657</infousa_id><rating>9.0</rating><name>Blue
|
|
129
|
+
C Sushi</name><address><street>1510 7th Ave</street><city>Seattle</city><state>WA</state><postal_code>98101</postal_code></address><phone>2064674022</phone><latitude>47.611664</latitude><longitude>-122.333482</longitude><image_url>http://images.citysearch.net/assets/imgdb/merchant/2010/2/3/0/kUWzQBwn47_100x100.jpeg</image_url><business_hours>Sun-Thu:
|
|
130
|
+
11am-9pm; Fri-Sat 12pm-10pm; Happy Hour Daily 4pm-7pm</business_hours><tags><tag
|
|
131
|
+
id="11249" primary="false">Cheap Eats</tag><tag id="11258" primary="false">Dine
|
|
132
|
+
At The Bar</tag><tag id="11235" primary="false">Asian</tag><tag id="11247" primary="false">Carry
|
|
133
|
+
Out</tag><tag id="11201" primary="false">Sushi</tag><tag id="11202" primary="false">Japanese</tag><tag
|
|
134
|
+
id="12821" primary="false">Casual Date Spot</tag><tag id="11244" primary="false">Business
|
|
135
|
+
Dining</tag><tag id="11231" primary="false">$</tag><tag id="11269" primary="false">Group
|
|
136
|
+
Dining</tag><tag id="11286" primary="false">Lunch Spot</tag><tag id="1705" primary="false">Catering</tag><tag
|
|
137
|
+
id="1684" primary="false">Food & Dining</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
138
|
+
id="13670" primary="false">Corporate Catering</tag><tag id="11271" primary="false">Happy
|
|
139
|
+
Hour</tag><tag id="11263" primary="false">Family-Friendly Dining</tag></tags><public_id>blue-c-sushi-seattle</public_id></location></locations><offer_collapse_count
|
|
140
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
141
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_52438892</id><reference_id>1</reference_id><impression_id>000b000002a2866256be25440daa9349f147774598</impression_id><title>happy
|
|
142
|
+
hour at umi sake house 4-6pm every day!</title><description>4-6pm every day,
|
|
143
|
+
4-8pm every day in front porch and cocktail bar.
|
|
144
|
+
|
|
145
|
+
late night happy hour 11pm- 1am sun-thurs. food & drink specials.</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>no
|
|
146
|
+
need to bring in offer. just come back to citysearch and write a review.</terms><redemption_url
|
|
147
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>purchase</offer_type></offer_types><image_url
|
|
148
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2010-03-09T00:00:00.000Z</start_date><expiration_date
|
|
149
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
150
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
151
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
152
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>41928927</id><infousa_id>596472514</infousa_id><rating>8.0</rating><name>Umi
|
|
153
|
+
Sake House</name><address><street>2230 First Ave</street><city>Seattle</city><state>WA</state><postal_code>98121</postal_code></address><phone>2063748717</phone><latitude>47.612844</latitude><longitude>-122.345644</longitude><image_url>http://images.citysearch.net/assets/imgdb/advertorial_profile/f2/7a/V-SEAWA-55089002_ID162741_guide_inclusion_100x100.jpg</image_url><business_hours>Daily
|
|
154
|
+
4pm-2am</business_hours><tags><tag id="66" primary="false">Arts & Entertainment</tag><tag
|
|
155
|
+
id="11238" primary="false">Bar Scene</tag><tag id="11201" primary="false">Sushi</tag><tag
|
|
156
|
+
id="11202" primary="false">Japanese</tag><tag id="11269" primary="false">Group
|
|
157
|
+
Dining</tag><tag id="11232" primary="false">$$</tag><tag id="1738" primary="false">Global</tag><tag
|
|
158
|
+
id="11367" primary="false">Open 7 Days</tag><tag id="11361" primary="false">MasterCard</tag><tag
|
|
159
|
+
id="1705" primary="true">Catering</tag><tag id="11304" primary="false">Private
|
|
160
|
+
Rooms</tag><tag id="164" primary="false">Bars & Clubs</tag><tag id="11282"
|
|
161
|
+
primary="false">Late Night Dining</tag><tag id="1684" primary="false">Food &
|
|
162
|
+
Dining</tag><tag id="1686" primary="false">Bars & Pubs</tag><tag id="11382"
|
|
163
|
+
primary="false">Visa</tag><tag id="1722" primary="false">Restaurants</tag><tag
|
|
164
|
+
id="11333" primary="false">American Express</tag><tag id="11271" primary="false">Happy
|
|
165
|
+
Hour</tag></tags><public_id>umi-sake-house-seattle-2</public_id></location></locations><offer_collapse_count
|
|
166
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
167
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_75679652</id><reference_id>1</reference_id><impression_id>000b00000208269fdd1fc641608c37d3509159731f</impression_id><title>Buy
|
|
168
|
+
1, Get 1 FREE</title><description>Buy any 1 food item and get 1 of equal or
|
|
169
|
+
lesser value FREE.</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Offer
|
|
170
|
+
valid with the purchase of 2 beverages. Dine-in only. Valid from 7pm - 9pm. Make
|
|
171
|
+
sure to say you heard about this through CityGrid Media.</terms><redemption_url
|
|
172
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>buy1get1</offer_type></offer_types><image_url
|
|
173
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-01-20T00:00:00.000Z</start_date><expiration_date
|
|
174
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
175
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
176
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
177
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>44693925</id><infousa_id>391138534</infousa_id><rating>8.0</rating><name>The
|
|
178
|
+
Blarney Stone</name><address><street>1909 3rd Ave</street><city>Seattle</city><state>WA</state><postal_code>98101</postal_code></address><phone>2064488439</phone><latitude>47.0</latitude><longitude>-122.0</longitude><image_url>http://images.citysearch.net/assets/imgdb/merchant/2011/1/31/0/dMzGTDgw109_100x100.jpeg</image_url><business_hours>Mon-Fri
|
|
179
|
+
11:30am-2am; Sat 1pm-2am; Sun 1pm-12am</business_hours><tags><tag id="11070"
|
|
180
|
+
primary="false">Darts</tag><tag id="66" primary="false">Arts & Entertainment</tag><tag
|
|
181
|
+
id="11221" primary="false">Irish</tag><tag id="1738" primary="false">Global</tag><tag
|
|
182
|
+
id="1692" primary="false">Billiards Bars</tag><tag id="11361" primary="false">MasterCard</tag><tag
|
|
183
|
+
id="1687" primary="true">Pubs</tag><tag id="1688" primary="false">Irish Pubs</tag><tag
|
|
184
|
+
id="11328" primary="false">Karaoke</tag><tag id="11284" primary="false">Local
|
|
185
|
+
Favorite</tag><tag id="11090" primary="false">Happy Hour</tag><tag id="164"
|
|
186
|
+
primary="false">Bars & Clubs</tag><tag id="1684" primary="false">Food &
|
|
187
|
+
Dining</tag><tag id="11382" primary="false">Visa</tag><tag id="1686" primary="false">Bars
|
|
188
|
+
& Pubs</tag><tag id="1722" primary="false">Restaurants</tag><tag id="11333"
|
|
189
|
+
primary="false">American Express</tag></tags><public_id>the-blarney-stone-seattle</public_id></location></locations><offer_collapse_count
|
|
190
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
191
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_50312462</id><reference_id>1</reference_id><impression_id>000b000002dfc59253f61e4961b13f7670045eaf1c</impression_id><title>4
|
|
192
|
+
Complimentary Small Plates with a $3 Beer or $4 Glass of Wine during Happy Hour</title><description>Happy
|
|
193
|
+
Hour is 5-6:30 p.m. Mondays-Fridays and also 11-midnight Fridays and Saturdays</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Mention
|
|
194
|
+
you found us on Citysearch</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
195
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>free</offer_type></offer_types><image_url
|
|
196
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2010-01-28T00:00:00.000Z</start_date><expiration_date
|
|
197
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
198
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
199
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
200
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>11348631</id><infousa_id>509943965</infousa_id><rating>7.0</rating><name>Osteria
|
|
201
|
+
la Spiga</name><address><street>1429 12th Ave</street><city>Seattle</city><state>WA</state><postal_code>98122</postal_code></address><phone>2063238881</phone><latitude>47.6132</latitude><longitude>-122.3169</longitude><image_url>http://images.citysearch.net/assets/imgdb/merchant/2010/1/27/0/wqHjmhkk51_100x100.jpeg</image_url><business_hours>Sunday
|
|
202
|
+
- Thursday 5 p.m. to 11 p.m.
|
|
203
|
+
|
|
204
|
+
Friday - Saturday 5 p.m. to 12 a.m.</business_hours><tags><tag id="11258" primary="false">Dine
|
|
205
|
+
At The Bar</tag><tag id="11238" primary="false">Bar Scene</tag><tag id="11265"
|
|
206
|
+
primary="false">Fine Dining</tag><tag id="11279" primary="false">Italian</tag><tag
|
|
207
|
+
id="11256" primary="false">Date Spot</tag><tag id="11269" primary="false">Group
|
|
208
|
+
Dining</tag><tag id="11232" primary="false">$$</tag><tag id="1738" primary="false">Global</tag><tag
|
|
209
|
+
id="11361" primary="false">MasterCard</tag><tag id="11294" primary="false">Notable
|
|
210
|
+
Wine List</tag><tag id="11284" primary="false">Local Favorite</tag><tag id="1705"
|
|
211
|
+
primary="false">Catering</tag><tag id="11304" primary="false">Private Rooms</tag><tag
|
|
212
|
+
id="11283" primary="false">Live Music</tag><tag id="11282" primary="false">Late
|
|
213
|
+
Night Dining</tag><tag id="1684" primary="false">Food & Dining</tag><tag
|
|
214
|
+
id="11382" primary="false">Visa</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
215
|
+
id="11271" primary="false">Happy Hour</tag><tag id="11307" primary="false">Romantic
|
|
216
|
+
Dining</tag></tags><public_id>osteria-la-spiga-seattle</public_id></location></locations><offer_collapse_count
|
|
217
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
218
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_87977152</id><reference_id>1</reference_id><impression_id>000b0000024b6ebd33e95649d98249815c8b02fba1</impression_id><title>Mon-Fri
|
|
219
|
+
Lunch Special!</title><description>Have Lunch at Super China Buffet for only
|
|
220
|
+
$6.33 (Reg. $7.45)</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Lunch
|
|
221
|
+
Special valid Mon-Fri only.</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
222
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>other</offer_type></offer_types><image_url
|
|
223
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-12-06T00:00:00.000Z</start_date><expiration_date
|
|
224
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
225
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
226
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
227
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>43923142</id><infousa_id>236738647</infousa_id><rating>7.0</rating><name>Super
|
|
228
|
+
China Buffet</name><address><street>15323 Westminster Way N</street><city>Shoreline</city><state>WA</state><postal_code>98133</postal_code></address><phone>2064179908</phone><latitude>47.740351</latitude><longitude>-122.349236</longitude><image_url>http://images.citysearch.net/assets/imgdb/advertorial_profile/e4/6a/V-SEAWA-55119768_ID244977_guide_inclusion_100x100.jpg</image_url><business_hours>Mon-Thu
|
|
229
|
+
11am-9pm;
|
|
230
|
+
|
|
231
|
+
Fri-Sat 11am-9:30pm;
|
|
232
|
+
|
|
233
|
+
Sun 11am-9pm</business_hours><tags><tag id="11269" primary="false">Group Dining</tag><tag
|
|
234
|
+
id="1738" primary="false">Global</tag><tag id="11369" primary="false">Parking
|
|
235
|
+
Lot</tag><tag id="11228" primary="false">Seafood</tag><tag id="11361" primary="false">MasterCard</tag><tag
|
|
236
|
+
id="11304" primary="false">Private Rooms</tag><tag id="11339" primary="false">Cash</tag><tag
|
|
237
|
+
id="11303" primary="false">Private Parties</tag><tag id="1684" primary="false">Food
|
|
238
|
+
& Dining</tag><tag id="11382" primary="false">Visa</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
239
|
+
id="11241" primary="false">Buffet</tag><tag id="11252" primary="false">Chinese</tag><tag
|
|
240
|
+
id="11263" primary="false">Family-Friendly Dining</tag></tags><public_id>super-china-buffet-shoreline</public_id></location></locations><offer_collapse_count
|
|
241
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
242
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_87977372</id><reference_id>1</reference_id><impression_id>000b0000026fd5b64fb08247f892d30d0d878859bd</impression_id><title>Mon-Thu
|
|
243
|
+
Dinner Special!</title><description>Have DINNER at Super China Buffet for only
|
|
244
|
+
$8.36 (Reg. $10.45); Mon-Thu</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Dinner
|
|
245
|
+
Special valid Mon-Thu only.</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
246
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>other</offer_type></offer_types><image_url
|
|
247
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-12-06T00:00:00.000Z</start_date><expiration_date
|
|
248
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
249
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
250
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
251
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>43923142</id><infousa_id>236738647</infousa_id><rating>7.0</rating><name>Super
|
|
252
|
+
China Buffet</name><address><street>15323 Westminster Way N</street><city>Shoreline</city><state>WA</state><postal_code>98133</postal_code></address><phone>2064179908</phone><latitude>47.740351</latitude><longitude>-122.349236</longitude><image_url>http://images.citysearch.net/assets/imgdb/advertorial_profile/e4/6a/V-SEAWA-55119768_ID244977_guide_inclusion_100x100.jpg</image_url><business_hours>Mon-Thu
|
|
253
|
+
11am-9pm;
|
|
254
|
+
|
|
255
|
+
Fri-Sat 11am-9:30pm;
|
|
256
|
+
|
|
257
|
+
Sun 11am-9pm</business_hours><tags><tag id="11269" primary="false">Group Dining</tag><tag
|
|
258
|
+
id="1738" primary="false">Global</tag><tag id="11369" primary="false">Parking
|
|
259
|
+
Lot</tag><tag id="11228" primary="false">Seafood</tag><tag id="11361" primary="false">MasterCard</tag><tag
|
|
260
|
+
id="11304" primary="false">Private Rooms</tag><tag id="11339" primary="false">Cash</tag><tag
|
|
261
|
+
id="11303" primary="false">Private Parties</tag><tag id="1684" primary="false">Food
|
|
262
|
+
& Dining</tag><tag id="11382" primary="false">Visa</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
263
|
+
id="11241" primary="false">Buffet</tag><tag id="11252" primary="false">Chinese</tag><tag
|
|
264
|
+
id="11263" primary="false">Family-Friendly Dining</tag></tags><public_id>super-china-buffet-shoreline</public_id></location></locations><offer_collapse_count
|
|
265
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
266
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_87977412</id><reference_id>1</reference_id><impression_id>000b0000028de6cfae14a14ed392e4279506903341</impression_id><title>Fri
|
|
267
|
+
& Sat Dinner Special!</title><description>Have Dinner at Super China Buffet
|
|
268
|
+
for only $9.73 (Reg. $11.45); Fri & All Day Sat</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Dinner
|
|
269
|
+
Special valid Fri & Sat only.</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
270
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>other</offer_type></offer_types><image_url
|
|
271
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-12-06T00:00:00.000Z</start_date><expiration_date
|
|
272
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
273
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
274
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
275
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>43923142</id><infousa_id>236738647</infousa_id><rating>7.0</rating><name>Super
|
|
276
|
+
China Buffet</name><address><street>15323 Westminster Way N</street><city>Shoreline</city><state>WA</state><postal_code>98133</postal_code></address><phone>2064179908</phone><latitude>47.740351</latitude><longitude>-122.349236</longitude><image_url>http://images.citysearch.net/assets/imgdb/advertorial_profile/e4/6a/V-SEAWA-55119768_ID244977_guide_inclusion_100x100.jpg</image_url><business_hours>Mon-Thu
|
|
277
|
+
11am-9pm;
|
|
278
|
+
|
|
279
|
+
Fri-Sat 11am-9:30pm;
|
|
280
|
+
|
|
281
|
+
Sun 11am-9pm</business_hours><tags><tag id="11269" primary="false">Group Dining</tag><tag
|
|
282
|
+
id="1738" primary="false">Global</tag><tag id="11369" primary="false">Parking
|
|
283
|
+
Lot</tag><tag id="11228" primary="false">Seafood</tag><tag id="11361" primary="false">MasterCard</tag><tag
|
|
284
|
+
id="11304" primary="false">Private Rooms</tag><tag id="11339" primary="false">Cash</tag><tag
|
|
285
|
+
id="11303" primary="false">Private Parties</tag><tag id="1684" primary="false">Food
|
|
286
|
+
& Dining</tag><tag id="11382" primary="false">Visa</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
287
|
+
id="11241" primary="false">Buffet</tag><tag id="11252" primary="false">Chinese</tag><tag
|
|
288
|
+
id="11263" primary="false">Family-Friendly Dining</tag></tags><public_id>super-china-buffet-shoreline</public_id></location></locations><offer_collapse_count
|
|
289
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
290
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_87977432</id><reference_id>1</reference_id><impression_id>000b000002e3792f3b755349faaf0ce03b0acc8be8</impression_id><title>Sunday
|
|
291
|
+
Dinner Special!</title><description>Have DINNER at Super China Buffet for only
|
|
292
|
+
$10.99 (Reg. $12.95) on Sunday</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Dinner
|
|
293
|
+
Special valid Sunday only</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
294
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>other</offer_type></offer_types><image_url
|
|
295
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-12-06T00:00:00.000Z</start_date><expiration_date
|
|
296
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
297
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
298
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
299
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>43923142</id><infousa_id>236738647</infousa_id><rating>7.0</rating><name>Super
|
|
300
|
+
China Buffet</name><address><street>15323 Westminster Way N</street><city>Shoreline</city><state>WA</state><postal_code>98133</postal_code></address><phone>2064179908</phone><latitude>47.740351</latitude><longitude>-122.349236</longitude><image_url>http://images.citysearch.net/assets/imgdb/advertorial_profile/e4/6a/V-SEAWA-55119768_ID244977_guide_inclusion_100x100.jpg</image_url><business_hours>Mon-Thu
|
|
301
|
+
11am-9pm;
|
|
302
|
+
|
|
303
|
+
Fri-Sat 11am-9:30pm;
|
|
304
|
+
|
|
305
|
+
Sun 11am-9pm</business_hours><tags><tag id="11269" primary="false">Group Dining</tag><tag
|
|
306
|
+
id="1738" primary="false">Global</tag><tag id="11369" primary="false">Parking
|
|
307
|
+
Lot</tag><tag id="11228" primary="false">Seafood</tag><tag id="11361" primary="false">MasterCard</tag><tag
|
|
308
|
+
id="11304" primary="false">Private Rooms</tag><tag id="11339" primary="false">Cash</tag><tag
|
|
309
|
+
id="11303" primary="false">Private Parties</tag><tag id="1684" primary="false">Food
|
|
310
|
+
& Dining</tag><tag id="11382" primary="false">Visa</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
311
|
+
id="11241" primary="false">Buffet</tag><tag id="11252" primary="false">Chinese</tag><tag
|
|
312
|
+
id="11263" primary="false">Family-Friendly Dining</tag></tags><public_id>super-china-buffet-shoreline</public_id></location></locations><offer_collapse_count
|
|
313
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
314
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_87977512</id><reference_id>1</reference_id><impression_id>000b00000270c2035633204a1e87514b30503600e7</impression_id><title>Senior
|
|
315
|
+
Citizen Special!</title><description>Senior Citizens can purchase one meal and
|
|
316
|
+
get the second one half price at Super China Buffet on Tuesdays</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Valid
|
|
317
|
+
for Senior Citizens only. Offer good on Tuesdays only.</terms><redemption_url
|
|
318
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>other</offer_type></offer_types><image_url
|
|
319
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-12-06T00:00:00.000Z</start_date><expiration_date
|
|
320
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
321
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
322
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
323
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>43923142</id><infousa_id>236738647</infousa_id><rating>7.0</rating><name>Super
|
|
324
|
+
China Buffet</name><address><street>15323 Westminster Way N</street><city>Shoreline</city><state>WA</state><postal_code>98133</postal_code></address><phone>2064179908</phone><latitude>47.740351</latitude><longitude>-122.349236</longitude><image_url>http://images.citysearch.net/assets/imgdb/advertorial_profile/e4/6a/V-SEAWA-55119768_ID244977_guide_inclusion_100x100.jpg</image_url><business_hours>Mon-Thu
|
|
325
|
+
11am-9pm;
|
|
326
|
+
|
|
327
|
+
Fri-Sat 11am-9:30pm;
|
|
328
|
+
|
|
329
|
+
Sun 11am-9pm</business_hours><tags><tag id="11269" primary="false">Group Dining</tag><tag
|
|
330
|
+
id="1738" primary="false">Global</tag><tag id="11369" primary="false">Parking
|
|
331
|
+
Lot</tag><tag id="11228" primary="false">Seafood</tag><tag id="11361" primary="false">MasterCard</tag><tag
|
|
332
|
+
id="11304" primary="false">Private Rooms</tag><tag id="11339" primary="false">Cash</tag><tag
|
|
333
|
+
id="11303" primary="false">Private Parties</tag><tag id="1684" primary="false">Food
|
|
334
|
+
& Dining</tag><tag id="11382" primary="false">Visa</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
335
|
+
id="11241" primary="false">Buffet</tag><tag id="11252" primary="false">Chinese</tag><tag
|
|
336
|
+
id="11263" primary="false">Family-Friendly Dining</tag></tags><public_id>super-china-buffet-shoreline</public_id></location></locations><offer_collapse_count
|
|
337
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
338
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_79709072</id><reference_id>1</reference_id><impression_id>000b0000020a144a782a6e40769415f94848530032</impression_id><title>$15.00
|
|
339
|
+
Gift Certificate</title><description>$15.00 gift certificate when you celebrate
|
|
340
|
+
your birthday with us</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Celebrate
|
|
341
|
+
your birthday with us and receive a $15.00 gift certificate! (proof ID required).
|
|
342
|
+
Make sure to say you heard about this offer on CityGrid.</terms><redemption_url
|
|
343
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>giftwithpurchase</offer_type></offer_types><image_url
|
|
344
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-05-13T00:00:00.000Z</start_date><expiration_date
|
|
345
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
346
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
347
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
348
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>605026982</id><infousa_id
|
|
349
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><rating>6.0</rating><name>Dozo
|
|
350
|
+
Cafe</name><address><street>3720 Factoria Blvd SE Ste I</street><city>Bellevue</city><state>WA</state><postal_code>98006</postal_code></address><phone>4256448899</phone><latitude>47.577052</latitude><longitude>-122.169469</longitude><image_url>http://images.citysearch.net/assets/imgdb/merchant/2011/5/13/0/DKqQweSA84_100x100.jpeg</image_url><business_hours>Mon-Sat
|
|
351
|
+
11am-2:30pm; Mon-Sat 5pm-9pm</business_hours><tags><tag id="11235" primary="false">Asian</tag><tag
|
|
352
|
+
id="11247" primary="false">Carry Out</tag><tag id="11201" primary="false">Sushi</tag><tag
|
|
353
|
+
id="11202" primary="false">Japanese</tag><tag id="1738" primary="false">Global</tag><tag
|
|
354
|
+
id="11286" primary="false">Lunch Spot</tag><tag id="11361" primary="false">MasterCard</tag><tag
|
|
355
|
+
id="1705" primary="false">Catering</tag><tag id="11339" primary="false">Cash</tag><tag
|
|
356
|
+
id="11349" primary="false">Discover</tag><tag id="1684" primary="false">Food
|
|
357
|
+
& Dining</tag><tag id="11382" primary="false">Visa</tag><tag id="11291"
|
|
358
|
+
primary="false">Noodle Shop</tag><tag id="1722" primary="true">Restaurants</tag><tag
|
|
359
|
+
id="11333" primary="false">American Express</tag><tag id="11341" primary="false">Check</tag></tags><public_id>dozo-cafe-bellevue</public_id></location></locations><offer_collapse_count
|
|
360
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
361
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_88701012</id><reference_id>1</reference_id><impression_id>000b00000249533ce96cf84930b98946b7fed85b6b</impression_id><title>Free
|
|
362
|
+
Shipping Special</title><description>If you spend over $150 on supplies, you
|
|
363
|
+
can receive FREE shipping by just mentioning this offer</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>Please
|
|
364
|
+
call for further details</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
365
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>free</offer_type></offer_types><image_url
|
|
366
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-12-01T00:00:00.000Z</start_date><expiration_date
|
|
367
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
368
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
369
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
370
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>605368852</id><infousa_id
|
|
371
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><rating
|
|
372
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><name>Health
|
|
373
|
+
Coach Heather</name><address><street>12402 Admiralty Way</street><city>Everett</city><state>WA</state><postal_code>98204</postal_code></address><phone>4252394850</phone><latitude>47.88489</latitude><longitude>-122.25309</longitude><image_url
|
|
374
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><business_hours
|
|
375
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><tags><tag
|
|
376
|
+
id="3995" primary="false">Fitness</tag><tag id="3996" primary="false">Health
|
|
377
|
+
& Fitness Consultants</tag><tag id="11200" primary="false">Health Food</tag><tag
|
|
378
|
+
id="3999" primary="false">Personal Trainers</tag><tag id="6217" primary="false">Life
|
|
379
|
+
Coaches</tag><tag id="3506" primary="false">Other Personal Services</tag><tag
|
|
380
|
+
id="3460" primary="false">Personal Services</tag><tag id="1931" primary="false">Weight
|
|
381
|
+
Loss</tag><tag id="3990" primary="false">Sports & Recreation</tag><tag id="1790"
|
|
382
|
+
primary="false">Health & Medical Services</tag><tag id="1684" primary="true">Food
|
|
383
|
+
& Dining</tag><tag id="1722" primary="false">Restaurants</tag><tag id="11436"
|
|
384
|
+
primary="false">Weight Loss Products</tag><tag id="12551" primary="false">Exercise
|
|
385
|
+
Programs</tag></tags><public_id>health-coach-heather-everett</public_id></location></locations><offer_collapse_count
|
|
386
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer><offer><attribution_logo>http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg</attribution_logo><attribution_source>CUSTOMER</attribution_source><attribution_text>Citysearch</attribution_text><attribution_url
|
|
387
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><id>cg_88700982</id><reference_id>1</reference_id><impression_id>000b00000203f376b35f7d4558b01cc839880b68f8</impression_id><title>Free
|
|
388
|
+
Two Weeks!</title><description>Become a member of the BeSLim club and receive
|
|
389
|
+
2 weeks free of coaching</description><redemption_type_id>1</redemption_type_id><redemption_type>Print</redemption_type><terms>*Please
|
|
390
|
+
call for further details</terms><redemption_url xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
391
|
+
xsi:nil="true"/><offer_source>CUSTOMER</offer_source><offer_types><offer_type>free</offer_type></offer_types><image_url
|
|
392
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><start_date>2011-12-01T00:00:00.000Z</start_date><expiration_date
|
|
393
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><popularity
|
|
394
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><face_value
|
|
395
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><discount_value
|
|
396
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><locations><location><id>605368852</id><infousa_id
|
|
397
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><rating
|
|
398
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><name>Health
|
|
399
|
+
Coach Heather</name><address><street>12402 Admiralty Way</street><city>Everett</city><state>WA</state><postal_code>98204</postal_code></address><phone>4252394850</phone><latitude>47.88489</latitude><longitude>-122.25309</longitude><image_url
|
|
400
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><business_hours
|
|
401
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/><tags><tag
|
|
402
|
+
id="3995" primary="false">Fitness</tag><tag id="3996" primary="false">Health
|
|
403
|
+
& Fitness Consultants</tag><tag id="11200" primary="false">Health Food</tag><tag
|
|
404
|
+
id="3999" primary="false">Personal Trainers</tag><tag id="6217" primary="false">Life
|
|
405
|
+
Coaches</tag><tag id="3506" primary="false">Other Personal Services</tag><tag
|
|
406
|
+
id="3460" primary="false">Personal Services</tag><tag id="1931" primary="false">Weight
|
|
407
|
+
Loss</tag><tag id="3990" primary="false">Sports & Recreation</tag><tag id="1790"
|
|
408
|
+
primary="false">Health & Medical Services</tag><tag id="1684" primary="true">Food
|
|
409
|
+
& Dining</tag><tag id="1722" primary="false">Restaurants</tag><tag id="11436"
|
|
410
|
+
primary="false">Weight Loss Products</tag><tag id="12551" primary="false">Exercise
|
|
411
|
+
Programs</tag></tags><public_id>health-coach-heather-everett</public_id></location></locations><offer_collapse_count
|
|
412
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/></offer></offers></results>'
|
|
413
|
+
http_version: '1.1'
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
message: OK
|
|
16
16
|
headers:
|
|
17
17
|
date:
|
|
18
|
-
-
|
|
18
|
+
- Sat, 31 Dec 2011 01:13:28 GMT
|
|
19
19
|
server:
|
|
20
20
|
- Apache-Coyote/1.1
|
|
21
21
|
content-type:
|
|
@@ -24,7 +24,16 @@
|
|
|
24
24
|
- '6066'
|
|
25
25
|
vary:
|
|
26
26
|
- Accept-Encoding
|
|
27
|
-
body: ! '{"results":{"query_id":null,"uri":"http://api.citygridmedia.com/search/offers/v2/search/places?listing_id=628554020&has_budget=false&format=json&page=1&rpp=20&radius=5.0&histograms=false&publisher=citygrid®ion_type=circle","first_hit":1,"last_hit":3,"total_hits":3,"page":1,"rpp":20,"did_you_mean":null,"regions":[],"histograms":[],"offers":[{"attribution_logo":"http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg","attribution_source":"CUSTOMER","attribution_text":"Citysearch","attribution_url":null,"id":"
|
|
27
|
+
body: ! '{"results":{"query_id":null,"uri":"http://api.citygridmedia.com/search/offers/v2/search/places?listing_id=628554020&has_budget=false&format=json&page=1&rpp=20&radius=5.0&histograms=false&publisher=citygrid®ion_type=circle","first_hit":1,"last_hit":3,"total_hits":3,"page":1,"rpp":20,"did_you_mean":null,"regions":[],"histograms":[],"offers":[{"attribution_logo":"http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg","attribution_source":"CUSTOMER","attribution_text":"Citysearch","attribution_url":null,"id":"cg_49335912","reference_id":null,"impression_id":"000b0000029d4740f2e9ad42878f9e2bb1c339606d","title":"Office
|
|
28
|
+
Pack for 6 to 8 people for $36 (Regular Price $48.30)\n","description":"Office
|
|
29
|
+
Pack for 6 to 8 people $36 (Reg. $48.30)\n- Two Large 2-topping Pizza''s\n-
|
|
30
|
+
One 2 Litre Soda\n- Caesar Salad Bowl\n","redemption_type_id":1,"redemption_type":"Print","terms":"Not
|
|
31
|
+
valid with any other offers. Mentioning Citysearch is required.","image_url":"http://images.citysearch.net/assets/imgdb/merchant/2011/2/23/0/QrAXPXEW105_100x100.jpeg","start_date":"2010-01-06T00:00:00Z","redemption_url":null,"offer_source":"CUSTOMER","offer_types":["other"],"expiration_date":null,"popularity":null,"face_value":null,"discount_value":null,"locations":[{"id":628554020,"infousa_id":null,"rating":8.0,"name":"Bella
|
|
32
|
+
Kitchen","address":{"street":"8556 122nd Ave NE Ste A2","city":"Kirkland","state":"WA","postal_code":"98033"},"phone":"4252424764","latitude":47.0,"longitude":-122.0,"image_url":"http://images.citysearch.net/assets/imgdb/merchant/2009/12/18/0/PmwVniqn32_100x100.jpeg","business_hours":"Sunday-Thursday
|
|
33
|
+
10am-10pm\nFriday-Saturday 10am-2am","tags":[{"id":11361,"name":"MasterCard","primary":false},{"id":11267,"name":"Food
|
|
34
|
+
Delivery","primary":false},{"id":11247,"name":"Carry Out","primary":false},{"id":11279,"name":"Italian","primary":false},{"id":1684,"name":"Food
|
|
35
|
+
& Dining","primary":false},{"id":11382,"name":"Visa","primary":false},{"id":1738,"name":"Global","primary":false},{"id":1722,"name":"Restaurants","primary":true},{"id":11333,"name":"American
|
|
36
|
+
Express","primary":false},{"id":1736,"name":"Sandwich Shops","primary":false},{"id":11299,"name":"Pizza","primary":false}],"public_id":"bella-kitchen-kirkland"}],"offer_collapse_count":null},{"attribution_logo":"http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg","attribution_source":"CUSTOMER","attribution_text":"Citysearch","attribution_url":null,"id":"cg_49335902","reference_id":null,"impression_id":"000b0000027a0833d92c43492190458e4e6efa1b85","title":"Family
|
|
28
37
|
Special - for 4 to 6 people $26 (Regular Price $32.14)\n","description":"Family
|
|
29
38
|
Special for 4-6 people. $26 (Reg. $32.14)\n-One Large 2-topping pizza\n-One
|
|
30
39
|
Med 2-topping pizza\n- One 2 Litre soda\n","redemption_type_id":1,"redemption_type":"Print","terms":"Not
|
|
@@ -33,7 +42,7 @@
|
|
|
33
42
|
10am-10pm\nFriday-Saturday 10am-2am","tags":[{"id":11361,"name":"MasterCard","primary":false},{"id":11267,"name":"Food
|
|
34
43
|
Delivery","primary":false},{"id":11247,"name":"Carry Out","primary":false},{"id":11279,"name":"Italian","primary":false},{"id":1684,"name":"Food
|
|
35
44
|
& Dining","primary":false},{"id":11382,"name":"Visa","primary":false},{"id":1738,"name":"Global","primary":false},{"id":1722,"name":"Restaurants","primary":true},{"id":11333,"name":"American
|
|
36
|
-
Express","primary":false},{"id":1736,"name":"Sandwich Shops","primary":false},{"id":11299,"name":"Pizza","primary":false}],"public_id":"bella-kitchen-kirkland"}],"offer_collapse_count":null},{"attribution_logo":"http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg","attribution_source":"CUSTOMER","attribution_text":"Citysearch","attribution_url":null,"id":"cg_49335922","reference_id":null,"impression_id":"
|
|
45
|
+
Express","primary":false},{"id":1736,"name":"Sandwich Shops","primary":false},{"id":11299,"name":"Pizza","primary":false}],"public_id":"bella-kitchen-kirkland"}],"offer_collapse_count":null},{"attribution_logo":"http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg","attribution_source":"CUSTOMER","attribution_text":"Citysearch","attribution_url":null,"id":"cg_49335922","reference_id":null,"impression_id":"000b0000021ec4a8fe4c5f446bb07cb76f75116799","title":"10\"
|
|
37
46
|
1-topping pizza for $5 when mentioning Citysearch!\n","description":"10\" 1-topping
|
|
38
47
|
pizza for $5! Mentioning Citysearch is required.\n","redemption_type_id":1,"redemption_type":"Print","terms":"Not
|
|
39
48
|
to be combined with other offers.","image_url":"http://images.citysearch.net/assets/imgdb/merchant/2011/2/23/0/ZrgRhGee78_100x100.jpeg","start_date":"2010-01-06T00:00:00Z","redemption_url":null,"offer_source":"CUSTOMER","offer_types":["other"],"expiration_date":null,"popularity":null,"face_value":null,"discount_value":null,"locations":[{"id":628554020,"infousa_id":null,"rating":8.0,"name":"Bella
|
|
@@ -41,14 +50,5 @@
|
|
|
41
50
|
10am-10pm\nFriday-Saturday 10am-2am","tags":[{"id":11361,"name":"MasterCard","primary":false},{"id":11267,"name":"Food
|
|
42
51
|
Delivery","primary":false},{"id":11247,"name":"Carry Out","primary":false},{"id":11279,"name":"Italian","primary":false},{"id":1684,"name":"Food
|
|
43
52
|
& Dining","primary":false},{"id":11382,"name":"Visa","primary":false},{"id":1738,"name":"Global","primary":false},{"id":1722,"name":"Restaurants","primary":true},{"id":11333,"name":"American
|
|
44
|
-
Express","primary":false},{"id":1736,"name":"Sandwich Shops","primary":false},{"id":11299,"name":"Pizza","primary":false}],"public_id":"bella-kitchen-kirkland"}],"offer_collapse_count":null},{"attribution_logo":"http://images.citysearch.net/assets/imgdb/custom/ue-357/CS_logo88x31.jpg","attribution_source":"CUSTOMER","attribution_text":"Citysearch","attribution_url":null,"id":"cg_49335912","reference_id":null,"impression_id":"000b000002429f3cafee1b4c3f9337696665f83a6a","title":"Office
|
|
45
|
-
Pack for 6 to 8 people for $36 (Regular Price $48.30)\n","description":"Office
|
|
46
|
-
Pack for 6 to 8 people $36 (Reg. $48.30)\n- Two Large 2-topping Pizza''s\n-
|
|
47
|
-
One 2 Litre Soda\n- Caesar Salad Bowl\n","redemption_type_id":1,"redemption_type":"Print","terms":"Not
|
|
48
|
-
valid with any other offers. Mentioning Citysearch is required.","image_url":"http://images.citysearch.net/assets/imgdb/merchant/2011/2/23/0/QrAXPXEW105_100x100.jpeg","start_date":"2010-01-06T00:00:00Z","redemption_url":null,"offer_source":"CUSTOMER","offer_types":["other"],"expiration_date":null,"popularity":null,"face_value":null,"discount_value":null,"locations":[{"id":628554020,"infousa_id":null,"rating":8.0,"name":"Bella
|
|
49
|
-
Kitchen","address":{"street":"8556 122nd Ave NE Ste A2","city":"Kirkland","state":"WA","postal_code":"98033"},"phone":"4252424764","latitude":47.0,"longitude":-122.0,"image_url":"http://images.citysearch.net/assets/imgdb/merchant/2009/12/18/0/PmwVniqn32_100x100.jpeg","business_hours":"Sunday-Thursday
|
|
50
|
-
10am-10pm\nFriday-Saturday 10am-2am","tags":[{"id":11361,"name":"MasterCard","primary":false},{"id":11267,"name":"Food
|
|
51
|
-
Delivery","primary":false},{"id":11247,"name":"Carry Out","primary":false},{"id":11279,"name":"Italian","primary":false},{"id":1684,"name":"Food
|
|
52
|
-
& Dining","primary":false},{"id":11382,"name":"Visa","primary":false},{"id":1738,"name":"Global","primary":false},{"id":1722,"name":"Restaurants","primary":true},{"id":11333,"name":"American
|
|
53
53
|
Express","primary":false},{"id":1736,"name":"Sandwich Shops","primary":false},{"id":11299,"name":"Pizza","primary":false}],"public_id":"bella-kitchen-kirkland"}],"offer_collapse_count":null}]}}'
|
|
54
54
|
http_version: '1.1'
|