access 2.0.48 → 2.0.49
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.
- checksums.yaml +4 -4
- data/.env.sample +8 -0
- data/.gitignore +1 -0
- data/Gemfile.lock +3 -1
- data/README.md +4 -0
- data/access.gemspec +1 -0
- data/bin/console +2 -1
- data/lib/access/api.rb +4 -4
- data/lib/access/favorite.rb +2 -2
- data/lib/access/version.rb +1 -1
- data/test/access/autocomplete_test.rb +5 -5
- data/test/access/campaign_test.rb +3 -3
- data/test/access/category_test.rb +5 -5
- data/test/access/channel_test.rb +6 -6
- data/test/access/device_test.rb +4 -4
- data/test/access/favorite_test.rb +61 -54
- data/test/access/filter_test.rb +3 -3
- data/test/access/location_test.rb +4 -4
- data/test/access/member_test.rb +3 -3
- data/test/access/oauth_application_test.rb +6 -7
- data/test/access/offer_test.rb +9 -9
- data/test/access/redeem_test.rb +3 -3
- data/test/access/redemption_test.rb +4 -5
- data/test/access/report_test.rb +14 -14
- data/test/access/spot_test.rb +4 -4
- data/test/access/store_test.rb +5 -5
- data/test/access/token_test.rb +3 -3
- data/test/access/user_test.rb +19 -15
- data/test/access/verify_test.rb +2 -2
- data/test/test_helper.rb +6 -3
- data/test/vcr/cassettes/{autocomplete_search_categories.yml → autocomplete/search_categories.yml} +8 -8
- data/test/vcr/cassettes/autocomplete/search_first.yml +94 -0
- data/test/vcr/cassettes/autocomplete/search_locations.yml +71 -0
- data/test/vcr/cassettes/{autocomplete_search_offers.yml → autocomplete/search_offers.yml} +10 -10
- data/test/vcr/cassettes/{autocomplete_search_stores.yml → autocomplete/search_stores.yml} +11 -11
- data/test/vcr/cassettes/campaign/search.yml +1021 -0
- data/test/vcr/cassettes/{category_find.yml → category/find.yml} +29 -29
- data/test/vcr/cassettes/category/search.yml +1588 -0
- data/test/vcr/cassettes/{location_search_fail_member_key.yml → category/search_fail_member_key.yml} +6 -6
- data/test/vcr/cassettes/{category_search.yml → category/search_first.yml} +739 -787
- data/test/vcr/cassettes/{subcategory_find.yml → category/subcategory_find.yml} +28 -28
- data/test/vcr/cassettes/{channel_search.yml → channel/search.yml} +3 -3
- data/test/vcr/cassettes/favorite/create_generic_with_offer.yml +126 -0
- data/test/vcr/cassettes/{favorite_create_offer.yml → favorite/create_location.yml} +7 -7
- data/test/vcr/cassettes/favorite/create_offer.yml +126 -0
- data/test/vcr/cassettes/favorite/create_store.yml +94 -0
- data/test/vcr/cassettes/favorite/delete_generic_with_offer.yml +171 -0
- data/test/vcr/cassettes/favorite/delete_location.yml +203 -0
- data/test/vcr/cassettes/favorite/delete_offer.yml +294 -0
- data/test/vcr/cassettes/favorite/delete_store.yml +258 -0
- data/test/vcr/cassettes/favorite/find_generic_with_offer.yml +323 -0
- data/test/vcr/cassettes/favorite/find_location.yml +158 -0
- data/test/vcr/cassettes/favorite/find_offer.yml +323 -0
- data/test/vcr/cassettes/favorite/find_store.yml +213 -0
- data/test/vcr/cassettes/{favorite_one_of_everything.yml → favorite/one_of_everything.yml} +181 -58
- data/test/vcr/cassettes/favorite/search.yml +346 -0
- data/test/vcr/cassettes/favorite/search_bad_member.yml +66 -0
- data/test/vcr/cassettes/favorite/search_locations.yml +113 -0
- data/test/vcr/cassettes/favorite/search_no_favorites.yml +66 -0
- data/test/vcr/cassettes/favorite/search_offers.yml +200 -0
- data/test/vcr/cassettes/favorite/search_stores.yml +178 -0
- data/test/vcr/cassettes/filter/find.yml +66 -0
- data/test/vcr/cassettes/{filter_search.yml → filter/search.yml} +12 -12
- data/test/vcr/cassettes/filter/search_first.yml +75 -0
- data/test/vcr/cassettes/location/find.yml +680 -0
- data/test/vcr/cassettes/location/search.yml +123 -0
- data/test/vcr/cassettes/{category_search_fail_member_key.yml → location/search_fail_member_key.yml} +6 -6
- data/test/vcr/cassettes/location/search_first.yml +123 -0
- data/test/vcr/cassettes/{member_show_failure.yml → member/show_failure.yml} +3 -3
- data/test/vcr/cassettes/{member_show_success.yml → member/show_success.yml} +5 -5
- data/test/vcr/cassettes/{favorite_delete_generic_with_offer.yml → member/update_success.yml} +7 -7
- data/test/vcr/cassettes/{member_authenticate_cvt_failure.yml → member_authenticate/cvt_failure.yml} +4 -4
- data/test/vcr/cassettes/{member_authenticate_cvt_success.yml → member_authenticate/cvt_success.yml} +6 -6
- data/test/vcr/cassettes/{member_authenticate_failure.yml → member_authenticate/failure.yml} +4 -4
- data/test/vcr/cassettes/{member_authenticate_member_key_failure.yml → member_authenticate/member_key_failure.yml} +3 -3
- data/test/vcr/cassettes/{member_authenticate_member_key_success.yml → member_authenticate/member_key_success.yml} +3 -3
- data/test/vcr/cassettes/{member_authenticate_success.yml → member_authenticate/success.yml} +5 -5
- data/test/vcr/cassettes/{member_device_search_failure.yml → member_device/search_failure.yml} +3 -3
- data/test/vcr/cassettes/member_device/search_success.yml +63 -0
- data/test/vcr/cassettes/{oauth_application_find.yml → oauth_application/find.yml} +19 -15
- data/test/vcr/cassettes/{oauth_application_search.yml → oauth_application/search.yml} +23 -19
- data/test/vcr/cassettes/oauth_application/search_oauth_first.yml +95 -0
- data/test/vcr/cassettes/oauth_application/token_find.yml +95 -0
- data/test/vcr/cassettes/oauth_application/token_search.yml +720 -0
- data/test/vcr/cassettes/oauth_application/token_search_tokens_first.yml +242 -0
- data/test/vcr/cassettes/offer/find.yml +158 -0
- data/test/vcr/cassettes/{offer_find_uses_remaining.yml → offer/find_uses_remaining.yml} +10 -10
- data/test/vcr/cassettes/offer/find_with_offer_uses_remaining.yml +158 -0
- data/test/vcr/cassettes/offer/search.yml +159 -0
- data/test/vcr/cassettes/{offer_search_fail_member_key.yml → offer/search_fail_member_key.yml} +6 -6
- data/test/vcr/cassettes/offer/search_first.yml +159 -0
- data/test/vcr/cassettes/offer/search_for_redeem.yml +159 -0
- data/test/vcr/cassettes/offer/with_aggregations.yml +1046 -0
- data/test/vcr/cassettes/redeem/offer_no_redeem_type.yml +36 -0
- data/test/vcr/cassettes/redeem/offer_with_redeem_type.yml +36 -0
- data/test/vcr/cassettes/redeem/redeem_offer_with_redeem_type_for_uses_remaining_test.yml +36 -0
- data/test/vcr/cassettes/redemption/find_by_member_key.yml +133 -0
- data/test/vcr/cassettes/redemption/search_by_member_key.yml +495 -0
- data/test/vcr/cassettes/redemption/search_by_member_key_first.yml +495 -0
- data/test/vcr/cassettes/{search_redemption_by_member_key_without_redemptions.yml → redemption/search_by_member_key_without_redemptions.yml} +6 -6
- data/test/vcr/cassettes/report/all_usage.yml +156 -0
- data/test/vcr/cassettes/{member_location_frequent.yml → report/member_location_frequent.yml} +6 -10
- data/test/vcr/cassettes/{member_location_recent.yml → report/member_location_recent.yml} +6 -6
- data/test/vcr/cassettes/{member_query_frequent.yml → report/member_query_frequent.yml} +6 -6
- data/test/vcr/cassettes/{member_query_recent.yml → report/member_query_recent.yml} +6 -6
- data/test/vcr/cassettes/report/usage.yml +156 -0
- data/test/vcr/cassettes/report/usage_other.yml +156 -0
- data/test/vcr/cassettes/{spot_find.yml → spot/find.yml} +3 -3
- data/test/vcr/cassettes/spot/search_by_campaign.yml +2727 -0
- data/test/vcr/cassettes/spot/search_by_channel.yml +956 -0
- data/test/vcr/cassettes/spot/search_by_channel_first.yml +956 -0
- data/test/vcr/cassettes/{store_find.yml → store/find.yml} +17 -17
- data/test/vcr/cassettes/store/national_stores.yml +3057 -0
- data/test/vcr/cassettes/{store_search.yml → store/search.yml} +21 -21
- data/test/vcr/cassettes/{store_search_fail_member_key.yml → store/search_fail_member_key.yml} +6 -6
- data/test/vcr/cassettes/store/search_first.yml +95 -0
- data/test/vcr/cassettes/token/find.yml +107 -0
- data/test/vcr/cassettes/token/get_first_token.yml +121 -0
- data/test/vcr/cassettes/token/search.yml +121 -0
- data/test/vcr/cassettes/{user_register_failure.yml → user_register/failure.yml} +4 -4
- data/test/vcr/cassettes/user_register/success.yml +101 -0
- data/test/vcr/cassettes/{user_update_success.yml → user_update/success.yml} +8 -6
- data/test/vcr/cassettes/{verify_filter.yml → verify/filter.yml} +41 -124
- data/test/vcr/cassettes/{verify_token.yml → verify/token.yml} +14 -11
- metadata +205 -174
- data/test/vcr/cassettes/all_usage.yml +0 -84
- data/test/vcr/cassettes/autocomplete_search.yml +0 -84
- data/test/vcr/cassettes/autocomplete_search_locations.yml +0 -66
- data/test/vcr/cassettes/campaign_find.yml +0 -232
- data/test/vcr/cassettes/campaign_search.yml +0 -1258
- data/test/vcr/cassettes/channel_find.yml +0 -57
- data/test/vcr/cassettes/favorite_create_generic_with_offer.yml +0 -93
- data/test/vcr/cassettes/favorite_create_location.yml +0 -91
- data/test/vcr/cassettes/favorite_create_store.yml +0 -92
- data/test/vcr/cassettes/favorite_delete_location.yml +0 -94
- data/test/vcr/cassettes/favorite_delete_offer.yml +0 -93
- data/test/vcr/cassettes/favorite_delete_store.yml +0 -94
- data/test/vcr/cassettes/favorite_find_generic_with_offer.yml +0 -93
- data/test/vcr/cassettes/favorite_find_location.yml +0 -179
- data/test/vcr/cassettes/favorite_find_offer.yml +0 -93
- data/test/vcr/cassettes/favorite_find_store.yml +0 -181
- data/test/vcr/cassettes/favorite_search.yml +0 -131
- data/test/vcr/cassettes/favorite_search_bad_member.yml +0 -49
- data/test/vcr/cassettes/favorite_search_locations.yml +0 -99
- data/test/vcr/cassettes/favorite_search_no_favorites.yml +0 -49
- data/test/vcr/cassettes/favorite_search_offers.yml +0 -169
- data/test/vcr/cassettes/favorite_search_stores.yml +0 -92
- data/test/vcr/cassettes/filter_find.yml +0 -174
- data/test/vcr/cassettes/find_redemption_by_member_key.yml +0 -131
- data/test/vcr/cassettes/location_find.yml +0 -505
- data/test/vcr/cassettes/location_search.yml +0 -123
- data/test/vcr/cassettes/member_device_search_success.yml +0 -48
- data/test/vcr/cassettes/member_update_success.yml +0 -183
- data/test/vcr/cassettes/national_stores.yml +0 -1914
- data/test/vcr/cassettes/oauth_application_token_find.yml +0 -92
- data/test/vcr/cassettes/oauth_application_token_search.yml +0 -95
- data/test/vcr/cassettes/offer_find.yml +0 -149
- data/test/vcr/cassettes/offer_find_with_offer_uses_remaining.yml +0 -149
- data/test/vcr/cassettes/offer_search.yml +0 -148
- data/test/vcr/cassettes/offer_with_aggregations.yml +0 -934
- data/test/vcr/cassettes/redeem_offer_no_redeem_type.yml +0 -38
- data/test/vcr/cassettes/redeem_offer_with_redeem_type.yml +0 -38
- data/test/vcr/cassettes/redeem_offer_with_redeem_type_for_uses_remaining_test.yml +0 -38
- data/test/vcr/cassettes/search_redemption_by_member_key.yml +0 -762
- data/test/vcr/cassettes/spot_search_by_campaign.yml +0 -2954
- data/test/vcr/cassettes/spot_search_by_channel.yml +0 -1192
- data/test/vcr/cassettes/token_find.yml +0 -99
- data/test/vcr/cassettes/token_get_first_token.yml +0 -113
- data/test/vcr/cassettes/token_search.yml +0 -113
- data/test/vcr/cassettes/usage.yml +0 -84
- data/test/vcr/cassettes/usage_other.yml +0 -84
- data/test/vcr/cassettes/user_register_success.yml +0 -50
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://offer-
|
5
|
+
uri: https://offer-stage.adcrws.com/v1/categories/51?member_key=API_RUBY_GEM_TEST
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -21,7 +21,7 @@ http_interactions:
|
|
21
21
|
Server:
|
22
22
|
- nginx/1.8.0
|
23
23
|
Date:
|
24
|
-
-
|
24
|
+
- Mon, 22 Feb 2016 20:17:06 GMT
|
25
25
|
Content-Type:
|
26
26
|
- application/json
|
27
27
|
Transfer-Encoding:
|
@@ -43,13 +43,13 @@ http_interactions:
|
|
43
43
|
Access-Control-Max-Age:
|
44
44
|
- '1728000'
|
45
45
|
Etag:
|
46
|
-
- '"
|
46
|
+
- '"0da8a935a289db05cf1497e6fa600f1d"'
|
47
47
|
Cache-Control:
|
48
48
|
- max-age=0, private, must-revalidate
|
49
49
|
X-Request-Id:
|
50
|
-
-
|
50
|
+
- c8e6dd8a-0428-4ae1-a877-0bb783a7a064
|
51
51
|
X-Runtime:
|
52
|
-
- '0.
|
52
|
+
- '0.020545'
|
53
53
|
body:
|
54
54
|
encoding: UTF-8
|
55
55
|
string: |-
|
@@ -68,7 +68,7 @@ http_interactions:
|
|
68
68
|
"category_parent_name": null,
|
69
69
|
"category_parent_key": null,
|
70
70
|
"links": {
|
71
|
-
"find_offers_in_this_category": "https://offer-
|
71
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=51"
|
72
72
|
},
|
73
73
|
"subcategories": [
|
74
74
|
{
|
@@ -78,9 +78,9 @@ http_interactions:
|
|
78
78
|
"category_parent_name": "Automotive",
|
79
79
|
"category_parent_key": 51,
|
80
80
|
"links": {
|
81
|
-
"show_category": "https://offer-
|
82
|
-
"show_parent_category": "https://offer-
|
83
|
-
"find_offers_in_this_category": "https://offer-
|
81
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1000",
|
82
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
83
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1000"
|
84
84
|
}
|
85
85
|
},
|
86
86
|
{
|
@@ -90,9 +90,9 @@ http_interactions:
|
|
90
90
|
"category_parent_name": "Automotive",
|
91
91
|
"category_parent_key": 51,
|
92
92
|
"links": {
|
93
|
-
"show_category": "https://offer-
|
94
|
-
"show_parent_category": "https://offer-
|
95
|
-
"find_offers_in_this_category": "https://offer-
|
93
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1001",
|
94
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
95
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1001"
|
96
96
|
}
|
97
97
|
},
|
98
98
|
{
|
@@ -102,9 +102,9 @@ http_interactions:
|
|
102
102
|
"category_parent_name": "Automotive",
|
103
103
|
"category_parent_key": 51,
|
104
104
|
"links": {
|
105
|
-
"show_category": "https://offer-
|
106
|
-
"show_parent_category": "https://offer-
|
107
|
-
"find_offers_in_this_category": "https://offer-
|
105
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1006",
|
106
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
107
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1006"
|
108
108
|
}
|
109
109
|
},
|
110
110
|
{
|
@@ -114,9 +114,9 @@ http_interactions:
|
|
114
114
|
"category_parent_name": "Automotive",
|
115
115
|
"category_parent_key": 51,
|
116
116
|
"links": {
|
117
|
-
"show_category": "https://offer-
|
118
|
-
"show_parent_category": "https://offer-
|
119
|
-
"find_offers_in_this_category": "https://offer-
|
117
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1002",
|
118
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
119
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1002"
|
120
120
|
}
|
121
121
|
},
|
122
122
|
{
|
@@ -126,9 +126,9 @@ http_interactions:
|
|
126
126
|
"category_parent_name": "Automotive",
|
127
127
|
"category_parent_key": 51,
|
128
128
|
"links": {
|
129
|
-
"show_category": "https://offer-
|
130
|
-
"show_parent_category": "https://offer-
|
131
|
-
"find_offers_in_this_category": "https://offer-
|
129
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1003",
|
130
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
131
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1003"
|
132
132
|
}
|
133
133
|
},
|
134
134
|
{
|
@@ -138,9 +138,9 @@ http_interactions:
|
|
138
138
|
"category_parent_name": "Automotive",
|
139
139
|
"category_parent_key": 51,
|
140
140
|
"links": {
|
141
|
-
"show_category": "https://offer-
|
142
|
-
"show_parent_category": "https://offer-
|
143
|
-
"find_offers_in_this_category": "https://offer-
|
141
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1004",
|
142
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
143
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1004"
|
144
144
|
}
|
145
145
|
},
|
146
146
|
{
|
@@ -150,9 +150,9 @@ http_interactions:
|
|
150
150
|
"category_parent_name": "Automotive",
|
151
151
|
"category_parent_key": 51,
|
152
152
|
"links": {
|
153
|
-
"show_category": "https://offer-
|
154
|
-
"show_parent_category": "https://offer-
|
155
|
-
"find_offers_in_this_category": "https://offer-
|
153
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1005",
|
154
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
155
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1005"
|
156
156
|
}
|
157
157
|
}
|
158
158
|
]
|
@@ -160,5 +160,5 @@ http_interactions:
|
|
160
160
|
]
|
161
161
|
}
|
162
162
|
http_version:
|
163
|
-
recorded_at:
|
164
|
-
recorded_with: VCR 3.0.
|
163
|
+
recorded_at: Mon, 22 Feb 2016 20:17:08 GMT
|
164
|
+
recorded_with: VCR 3.0.1
|
@@ -0,0 +1,1588 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://offer-stage.adcrws.com/v1/categories?member_key=API_RUBY_GEM_TEST
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Access-Token:
|
11
|
+
- ACCESS_TOKEN
|
12
|
+
Content-Type:
|
13
|
+
- application/json
|
14
|
+
Accept:
|
15
|
+
- application/json
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Server:
|
22
|
+
- nginx/1.8.0
|
23
|
+
Date:
|
24
|
+
- Mon, 22 Feb 2016 20:17:05 GMT
|
25
|
+
Content-Type:
|
26
|
+
- application/json
|
27
|
+
Transfer-Encoding:
|
28
|
+
- chunked
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
X-Frame-Options:
|
32
|
+
- SAMEORIGIN
|
33
|
+
X-Xss-Protection:
|
34
|
+
- 1; mode=block
|
35
|
+
X-Content-Type-Options:
|
36
|
+
- nosniff
|
37
|
+
Access-Control-Allow-Methods:
|
38
|
+
- POST, GET, PUT, DELETE, OPTIONS
|
39
|
+
Access-Control-Request-Method:
|
40
|
+
- GET
|
41
|
+
Access-Control-Allow-Headers:
|
42
|
+
- Origin, X-Requested-With, Content-Type, Accept, Authorization, Access-Token
|
43
|
+
Access-Control-Max-Age:
|
44
|
+
- '1728000'
|
45
|
+
Etag:
|
46
|
+
- '"8bbd902aa8faedc9431caae7a3917687"'
|
47
|
+
Cache-Control:
|
48
|
+
- max-age=0, private, must-revalidate
|
49
|
+
X-Request-Id:
|
50
|
+
- 85124a74-ed62-4709-9efd-a7f73aec53cf
|
51
|
+
X-Runtime:
|
52
|
+
- '0.141164'
|
53
|
+
body:
|
54
|
+
encoding: UTF-8
|
55
|
+
string: |-
|
56
|
+
{
|
57
|
+
"info": {
|
58
|
+
"total_results": 16,
|
59
|
+
"current_page": 1,
|
60
|
+
"total_pages": 1,
|
61
|
+
"results_per_page": 16
|
62
|
+
},
|
63
|
+
"categories": [
|
64
|
+
{
|
65
|
+
"category_name": "Automotive",
|
66
|
+
"category_key": 51,
|
67
|
+
"category_type": "category",
|
68
|
+
"category_parent_name": null,
|
69
|
+
"category_parent_key": null,
|
70
|
+
"links": {
|
71
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
72
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=51"
|
73
|
+
},
|
74
|
+
"subcategories": [
|
75
|
+
{
|
76
|
+
"category_name": "Auto Body & Paint",
|
77
|
+
"category_key": 1000,
|
78
|
+
"category_type": "subcategory",
|
79
|
+
"category_parent_name": "Automotive",
|
80
|
+
"category_parent_key": 51,
|
81
|
+
"links": {
|
82
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1000",
|
83
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
84
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1000"
|
85
|
+
}
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"category_name": "Auto Parts",
|
89
|
+
"category_key": 1001,
|
90
|
+
"category_type": "subcategory",
|
91
|
+
"category_parent_name": "Automotive",
|
92
|
+
"category_parent_key": 51,
|
93
|
+
"links": {
|
94
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1001",
|
95
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
96
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1001"
|
97
|
+
}
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"category_name": "Auto Sales & Warranties",
|
101
|
+
"category_key": 1006,
|
102
|
+
"category_type": "subcategory",
|
103
|
+
"category_parent_name": "Automotive",
|
104
|
+
"category_parent_key": 51,
|
105
|
+
"links": {
|
106
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1006",
|
107
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
108
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1006"
|
109
|
+
}
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"category_name": "Auto Service & Repair",
|
113
|
+
"category_key": 1002,
|
114
|
+
"category_type": "subcategory",
|
115
|
+
"category_parent_name": "Automotive",
|
116
|
+
"category_parent_key": 51,
|
117
|
+
"links": {
|
118
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1002",
|
119
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
120
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1002"
|
121
|
+
}
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"category_name": "Car Wash & Detail",
|
125
|
+
"category_key": 1003,
|
126
|
+
"category_type": "subcategory",
|
127
|
+
"category_parent_name": "Automotive",
|
128
|
+
"category_parent_key": 51,
|
129
|
+
"links": {
|
130
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1003",
|
131
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
132
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1003"
|
133
|
+
}
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"category_name": "Gas Station",
|
137
|
+
"category_key": 1004,
|
138
|
+
"category_type": "subcategory",
|
139
|
+
"category_parent_name": "Automotive",
|
140
|
+
"category_parent_key": 51,
|
141
|
+
"links": {
|
142
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1004",
|
143
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
144
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1004"
|
145
|
+
}
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"category_name": "Tires",
|
149
|
+
"category_key": 1005,
|
150
|
+
"category_type": "subcategory",
|
151
|
+
"category_parent_name": "Automotive",
|
152
|
+
"category_parent_key": 51,
|
153
|
+
"links": {
|
154
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1005",
|
155
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
156
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1005"
|
157
|
+
}
|
158
|
+
}
|
159
|
+
]
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"category_name": "Car Rental",
|
163
|
+
"category_key": 58,
|
164
|
+
"category_type": "category",
|
165
|
+
"category_parent_name": null,
|
166
|
+
"category_parent_key": null,
|
167
|
+
"links": {
|
168
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/58",
|
169
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=58"
|
170
|
+
},
|
171
|
+
"subcategories": [
|
172
|
+
|
173
|
+
]
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"category_name": "Condos & Resorts",
|
177
|
+
"category_key": 54,
|
178
|
+
"category_type": "category",
|
179
|
+
"category_parent_name": null,
|
180
|
+
"category_parent_key": null,
|
181
|
+
"links": {
|
182
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/54",
|
183
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=54"
|
184
|
+
},
|
185
|
+
"subcategories": [
|
186
|
+
|
187
|
+
]
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"category_name": "Cruise",
|
191
|
+
"category_key": 60,
|
192
|
+
"category_type": "category",
|
193
|
+
"category_parent_name": null,
|
194
|
+
"category_parent_key": null,
|
195
|
+
"links": {
|
196
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/60",
|
197
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=60"
|
198
|
+
},
|
199
|
+
"subcategories": [
|
200
|
+
|
201
|
+
]
|
202
|
+
},
|
203
|
+
{
|
204
|
+
"category_name": "Dining & Food",
|
205
|
+
"category_key": 39,
|
206
|
+
"category_type": "category",
|
207
|
+
"category_parent_name": null,
|
208
|
+
"category_parent_key": null,
|
209
|
+
"links": {
|
210
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
211
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=39"
|
212
|
+
},
|
213
|
+
"subcategories": [
|
214
|
+
{
|
215
|
+
"category_name": "Casual & Fine Dining",
|
216
|
+
"category_key": 1009,
|
217
|
+
"category_type": "subcategory",
|
218
|
+
"category_parent_name": "Dining & Food",
|
219
|
+
"category_parent_key": 39,
|
220
|
+
"links": {
|
221
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1009",
|
222
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
223
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1009"
|
224
|
+
}
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"category_name": "Catering",
|
228
|
+
"category_key": 1011,
|
229
|
+
"category_type": "subcategory",
|
230
|
+
"category_parent_name": "Dining & Food",
|
231
|
+
"category_parent_key": 39,
|
232
|
+
"links": {
|
233
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1011",
|
234
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
235
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1011"
|
236
|
+
}
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"category_name": "Convenience Stores",
|
240
|
+
"category_key": 1012,
|
241
|
+
"category_type": "subcategory",
|
242
|
+
"category_parent_name": "Dining & Food",
|
243
|
+
"category_parent_key": 39,
|
244
|
+
"links": {
|
245
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1012",
|
246
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
247
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1012"
|
248
|
+
}
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"category_name": "Desserts & Snacks",
|
252
|
+
"category_key": 1007,
|
253
|
+
"category_type": "subcategory",
|
254
|
+
"category_parent_name": "Dining & Food",
|
255
|
+
"category_parent_key": 39,
|
256
|
+
"links": {
|
257
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1007",
|
258
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
259
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1007"
|
260
|
+
}
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"category_name": "Fast Food",
|
264
|
+
"category_key": 1008,
|
265
|
+
"category_type": "subcategory",
|
266
|
+
"category_parent_name": "Dining & Food",
|
267
|
+
"category_parent_key": 39,
|
268
|
+
"links": {
|
269
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1008",
|
270
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
271
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1008"
|
272
|
+
}
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"category_name": "Specialty Foods & Gifts",
|
276
|
+
"category_key": 1010,
|
277
|
+
"category_type": "subcategory",
|
278
|
+
"category_parent_name": "Dining & Food",
|
279
|
+
"category_parent_key": 39,
|
280
|
+
"links": {
|
281
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1010",
|
282
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
283
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1010"
|
284
|
+
}
|
285
|
+
}
|
286
|
+
]
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"category_name": "Educators Only",
|
290
|
+
"category_key": 1113,
|
291
|
+
"category_type": "category",
|
292
|
+
"category_parent_name": null,
|
293
|
+
"category_parent_key": null,
|
294
|
+
"links": {
|
295
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1113",
|
296
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1113"
|
297
|
+
},
|
298
|
+
"subcategories": [
|
299
|
+
|
300
|
+
]
|
301
|
+
},
|
302
|
+
{
|
303
|
+
"category_name": "Entertainment & Recreation",
|
304
|
+
"category_key": 59,
|
305
|
+
"category_type": "category",
|
306
|
+
"category_parent_name": null,
|
307
|
+
"category_parent_key": null,
|
308
|
+
"links": {
|
309
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
310
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=59"
|
311
|
+
},
|
312
|
+
"subcategories": [
|
313
|
+
{
|
314
|
+
"category_name": "Amusement Parks",
|
315
|
+
"category_key": 1018,
|
316
|
+
"category_type": "subcategory",
|
317
|
+
"category_parent_name": "Entertainment & Recreation",
|
318
|
+
"category_parent_key": 59,
|
319
|
+
"links": {
|
320
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1018",
|
321
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
322
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1018"
|
323
|
+
}
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"category_name": "Classes",
|
327
|
+
"category_key": 1019,
|
328
|
+
"category_type": "subcategory",
|
329
|
+
"category_parent_name": "Entertainment & Recreation",
|
330
|
+
"category_parent_key": 59,
|
331
|
+
"links": {
|
332
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1019",
|
333
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
334
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1019"
|
335
|
+
}
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"category_name": "Concerts & Events",
|
339
|
+
"category_key": 1014,
|
340
|
+
"category_type": "subcategory",
|
341
|
+
"category_parent_name": "Entertainment & Recreation",
|
342
|
+
"category_parent_key": 59,
|
343
|
+
"links": {
|
344
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1014",
|
345
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
346
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1014"
|
347
|
+
}
|
348
|
+
},
|
349
|
+
{
|
350
|
+
"category_name": "Fun Centers",
|
351
|
+
"category_key": 1013,
|
352
|
+
"category_type": "subcategory",
|
353
|
+
"category_parent_name": "Entertainment & Recreation",
|
354
|
+
"category_parent_key": 59,
|
355
|
+
"links": {
|
356
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1013",
|
357
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
358
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1013"
|
359
|
+
}
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"category_name": "Museums, Zoos & Tours",
|
363
|
+
"category_key": 1015,
|
364
|
+
"category_type": "subcategory",
|
365
|
+
"category_parent_name": "Entertainment & Recreation",
|
366
|
+
"category_parent_key": 59,
|
367
|
+
"links": {
|
368
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1015",
|
369
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
370
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1015"
|
371
|
+
}
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"category_name": "Outdoor Adventure",
|
375
|
+
"category_key": 1016,
|
376
|
+
"category_type": "subcategory",
|
377
|
+
"category_parent_name": "Entertainment & Recreation",
|
378
|
+
"category_parent_key": 59,
|
379
|
+
"links": {
|
380
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1016",
|
381
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
382
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1016"
|
383
|
+
}
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"category_name": "Sporting Events",
|
387
|
+
"category_key": 1017,
|
388
|
+
"category_type": "subcategory",
|
389
|
+
"category_parent_name": "Entertainment & Recreation",
|
390
|
+
"category_parent_key": 59,
|
391
|
+
"links": {
|
392
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1017",
|
393
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
394
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1017"
|
395
|
+
}
|
396
|
+
}
|
397
|
+
]
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"category_name": "Golf",
|
401
|
+
"category_key": 48,
|
402
|
+
"category_type": "category",
|
403
|
+
"category_parent_name": null,
|
404
|
+
"category_parent_key": null,
|
405
|
+
"links": {
|
406
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
407
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=48"
|
408
|
+
},
|
409
|
+
"subcategories": [
|
410
|
+
{
|
411
|
+
"category_name": "Golf Apparel",
|
412
|
+
"category_key": 1021,
|
413
|
+
"category_type": "subcategory",
|
414
|
+
"category_parent_name": "Golf",
|
415
|
+
"category_parent_key": 48,
|
416
|
+
"links": {
|
417
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1021",
|
418
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
419
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1021"
|
420
|
+
}
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"category_name": "Golf Courses",
|
424
|
+
"category_key": 1020,
|
425
|
+
"category_type": "subcategory",
|
426
|
+
"category_parent_name": "Golf",
|
427
|
+
"category_parent_key": 48,
|
428
|
+
"links": {
|
429
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1020",
|
430
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
431
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1020"
|
432
|
+
}
|
433
|
+
},
|
434
|
+
{
|
435
|
+
"category_name": "Golf Equipment",
|
436
|
+
"category_key": 1022,
|
437
|
+
"category_type": "subcategory",
|
438
|
+
"category_parent_name": "Golf",
|
439
|
+
"category_parent_key": 48,
|
440
|
+
"links": {
|
441
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1022",
|
442
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
443
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1022"
|
444
|
+
}
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"category_name": "Golf Instruction",
|
448
|
+
"category_key": 1023,
|
449
|
+
"category_type": "subcategory",
|
450
|
+
"category_parent_name": "Golf",
|
451
|
+
"category_parent_key": 48,
|
452
|
+
"links": {
|
453
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1023",
|
454
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
455
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1023"
|
456
|
+
}
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"category_name": "Golf Packages",
|
460
|
+
"category_key": 1024,
|
461
|
+
"category_type": "subcategory",
|
462
|
+
"category_parent_name": "Golf",
|
463
|
+
"category_parent_key": 48,
|
464
|
+
"links": {
|
465
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1024",
|
466
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
467
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1024"
|
468
|
+
}
|
469
|
+
}
|
470
|
+
]
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"category_name": "Health & Beauty",
|
474
|
+
"category_key": 53,
|
475
|
+
"category_type": "category",
|
476
|
+
"category_parent_name": null,
|
477
|
+
"category_parent_key": null,
|
478
|
+
"links": {
|
479
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
480
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=53"
|
481
|
+
},
|
482
|
+
"subcategories": [
|
483
|
+
{
|
484
|
+
"category_name": "Chiropractic",
|
485
|
+
"category_key": 1025,
|
486
|
+
"category_type": "subcategory",
|
487
|
+
"category_parent_name": "Health & Beauty",
|
488
|
+
"category_parent_key": 53,
|
489
|
+
"links": {
|
490
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1025",
|
491
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
492
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1025"
|
493
|
+
}
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"category_name": "Cosmetics & Skin Care",
|
497
|
+
"category_key": 1035,
|
498
|
+
"category_type": "subcategory",
|
499
|
+
"category_parent_name": "Health & Beauty",
|
500
|
+
"category_parent_key": 53,
|
501
|
+
"links": {
|
502
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1035",
|
503
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
504
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1035"
|
505
|
+
}
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"category_name": "Day Spa",
|
509
|
+
"category_key": 1026,
|
510
|
+
"category_type": "subcategory",
|
511
|
+
"category_parent_name": "Health & Beauty",
|
512
|
+
"category_parent_key": 53,
|
513
|
+
"links": {
|
514
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1026",
|
515
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
516
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1026"
|
517
|
+
}
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"category_name": "Dental",
|
521
|
+
"category_key": 1027,
|
522
|
+
"category_type": "subcategory",
|
523
|
+
"category_parent_name": "Health & Beauty",
|
524
|
+
"category_parent_key": 53,
|
525
|
+
"links": {
|
526
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1027",
|
527
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
528
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1027"
|
529
|
+
}
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"category_name": "Fitness Centers",
|
533
|
+
"category_key": 1031,
|
534
|
+
"category_type": "subcategory",
|
535
|
+
"category_parent_name": "Health & Beauty",
|
536
|
+
"category_parent_key": 53,
|
537
|
+
"links": {
|
538
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1031",
|
539
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
540
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1031"
|
541
|
+
}
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"category_name": "Fitness Equipment",
|
545
|
+
"category_key": 1028,
|
546
|
+
"category_type": "subcategory",
|
547
|
+
"category_parent_name": "Health & Beauty",
|
548
|
+
"category_parent_key": 53,
|
549
|
+
"links": {
|
550
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1028",
|
551
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
552
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1028"
|
553
|
+
}
|
554
|
+
},
|
555
|
+
{
|
556
|
+
"category_name": "Health Products",
|
557
|
+
"category_key": 1029,
|
558
|
+
"category_type": "subcategory",
|
559
|
+
"category_parent_name": "Health & Beauty",
|
560
|
+
"category_parent_key": 53,
|
561
|
+
"links": {
|
562
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1029",
|
563
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
564
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1029"
|
565
|
+
}
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"category_name": "Hearing",
|
569
|
+
"category_key": 1030,
|
570
|
+
"category_type": "subcategory",
|
571
|
+
"category_parent_name": "Health & Beauty",
|
572
|
+
"category_parent_key": 53,
|
573
|
+
"links": {
|
574
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1030",
|
575
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
576
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1030"
|
577
|
+
}
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"category_name": "Massage",
|
581
|
+
"category_key": 1032,
|
582
|
+
"category_type": "subcategory",
|
583
|
+
"category_parent_name": "Health & Beauty",
|
584
|
+
"category_parent_key": 53,
|
585
|
+
"links": {
|
586
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1032",
|
587
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
588
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1032"
|
589
|
+
}
|
590
|
+
},
|
591
|
+
{
|
592
|
+
"category_name": "Medical",
|
593
|
+
"category_key": 1033,
|
594
|
+
"category_type": "subcategory",
|
595
|
+
"category_parent_name": "Health & Beauty",
|
596
|
+
"category_parent_key": 53,
|
597
|
+
"links": {
|
598
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1033",
|
599
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
600
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1033"
|
601
|
+
}
|
602
|
+
},
|
603
|
+
{
|
604
|
+
"category_name": "Salon",
|
605
|
+
"category_key": 1036,
|
606
|
+
"category_type": "subcategory",
|
607
|
+
"category_parent_name": "Health & Beauty",
|
608
|
+
"category_parent_key": 53,
|
609
|
+
"links": {
|
610
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1036",
|
611
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
612
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1036"
|
613
|
+
}
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"category_name": "Tanning Salon",
|
617
|
+
"category_key": 1034,
|
618
|
+
"category_type": "subcategory",
|
619
|
+
"category_parent_name": "Health & Beauty",
|
620
|
+
"category_parent_key": 53,
|
621
|
+
"links": {
|
622
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1034",
|
623
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
624
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1034"
|
625
|
+
}
|
626
|
+
},
|
627
|
+
{
|
628
|
+
"category_name": "Vision",
|
629
|
+
"category_key": 1037,
|
630
|
+
"category_type": "subcategory",
|
631
|
+
"category_parent_name": "Health & Beauty",
|
632
|
+
"category_parent_key": 53,
|
633
|
+
"links": {
|
634
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1037",
|
635
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
636
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1037"
|
637
|
+
}
|
638
|
+
},
|
639
|
+
{
|
640
|
+
"category_name": "Weight Management",
|
641
|
+
"category_key": 1038,
|
642
|
+
"category_type": "subcategory",
|
643
|
+
"category_parent_name": "Health & Beauty",
|
644
|
+
"category_parent_key": 53,
|
645
|
+
"links": {
|
646
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1038",
|
647
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
648
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1038"
|
649
|
+
}
|
650
|
+
}
|
651
|
+
]
|
652
|
+
},
|
653
|
+
{
|
654
|
+
"category_name": "Home & Garden",
|
655
|
+
"category_key": 1039,
|
656
|
+
"category_type": "category",
|
657
|
+
"category_parent_name": null,
|
658
|
+
"category_parent_key": null,
|
659
|
+
"links": {
|
660
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
661
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1039"
|
662
|
+
},
|
663
|
+
"subcategories": [
|
664
|
+
{
|
665
|
+
"category_name": "Appliances",
|
666
|
+
"category_key": 1042,
|
667
|
+
"category_type": "subcategory",
|
668
|
+
"category_parent_name": "Home & Garden",
|
669
|
+
"category_parent_key": 1039,
|
670
|
+
"links": {
|
671
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1042",
|
672
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
673
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1042"
|
674
|
+
}
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"category_name": "Cleaning",
|
678
|
+
"category_key": 1045,
|
679
|
+
"category_type": "subcategory",
|
680
|
+
"category_parent_name": "Home & Garden",
|
681
|
+
"category_parent_key": 1039,
|
682
|
+
"links": {
|
683
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1045",
|
684
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
685
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1045"
|
686
|
+
}
|
687
|
+
},
|
688
|
+
{
|
689
|
+
"category_name": "Flooring",
|
690
|
+
"category_key": 1043,
|
691
|
+
"category_type": "subcategory",
|
692
|
+
"category_parent_name": "Home & Garden",
|
693
|
+
"category_parent_key": 1039,
|
694
|
+
"links": {
|
695
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1043",
|
696
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
697
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1043"
|
698
|
+
}
|
699
|
+
},
|
700
|
+
{
|
701
|
+
"category_name": "Garden Centers",
|
702
|
+
"category_key": 1050,
|
703
|
+
"category_type": "subcategory",
|
704
|
+
"category_parent_name": "Home & Garden",
|
705
|
+
"category_parent_key": 1039,
|
706
|
+
"links": {
|
707
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1050",
|
708
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
709
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1050"
|
710
|
+
}
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"category_name": "Hardware Stores",
|
714
|
+
"category_key": 1049,
|
715
|
+
"category_type": "subcategory",
|
716
|
+
"category_parent_name": "Home & Garden",
|
717
|
+
"category_parent_key": 1039,
|
718
|
+
"links": {
|
719
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1049",
|
720
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
721
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1049"
|
722
|
+
}
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"category_name": "Home Improvement & Repairs",
|
726
|
+
"category_key": 1044,
|
727
|
+
"category_type": "subcategory",
|
728
|
+
"category_parent_name": "Home & Garden",
|
729
|
+
"category_parent_key": 1039,
|
730
|
+
"links": {
|
731
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1044",
|
732
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
733
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1044"
|
734
|
+
}
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"category_name": "Landscaping",
|
738
|
+
"category_key": 1048,
|
739
|
+
"category_type": "subcategory",
|
740
|
+
"category_parent_name": "Home & Garden",
|
741
|
+
"category_parent_key": 1039,
|
742
|
+
"links": {
|
743
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1048",
|
744
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
745
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1048"
|
746
|
+
}
|
747
|
+
},
|
748
|
+
{
|
749
|
+
"category_name": "Pest Control",
|
750
|
+
"category_key": 1047,
|
751
|
+
"category_type": "subcategory",
|
752
|
+
"category_parent_name": "Home & Garden",
|
753
|
+
"category_parent_key": 1039,
|
754
|
+
"links": {
|
755
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1047",
|
756
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
757
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1047"
|
758
|
+
}
|
759
|
+
},
|
760
|
+
{
|
761
|
+
"category_name": "Siding",
|
762
|
+
"category_key": 1041,
|
763
|
+
"category_type": "subcategory",
|
764
|
+
"category_parent_name": "Home & Garden",
|
765
|
+
"category_parent_key": 1039,
|
766
|
+
"links": {
|
767
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1041",
|
768
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
769
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1041"
|
770
|
+
}
|
771
|
+
},
|
772
|
+
{
|
773
|
+
"category_name": "Water purification/softening",
|
774
|
+
"category_key": 1046,
|
775
|
+
"category_type": "subcategory",
|
776
|
+
"category_parent_name": "Home & Garden",
|
777
|
+
"category_parent_key": 1039,
|
778
|
+
"links": {
|
779
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1046",
|
780
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
781
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1046"
|
782
|
+
}
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"category_name": "Windows",
|
786
|
+
"category_key": 1040,
|
787
|
+
"category_type": "subcategory",
|
788
|
+
"category_parent_name": "Home & Garden",
|
789
|
+
"category_parent_key": 1039,
|
790
|
+
"links": {
|
791
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1040",
|
792
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
793
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1040"
|
794
|
+
}
|
795
|
+
}
|
796
|
+
]
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"category_name": "Hotel",
|
800
|
+
"category_key": 44,
|
801
|
+
"category_type": "category",
|
802
|
+
"category_parent_name": null,
|
803
|
+
"category_parent_key": null,
|
804
|
+
"links": {
|
805
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/44",
|
806
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=44"
|
807
|
+
},
|
808
|
+
"subcategories": [
|
809
|
+
{
|
810
|
+
"category_name": "Hotel",
|
811
|
+
"category_key": 1052,
|
812
|
+
"category_type": "subcategory",
|
813
|
+
"category_parent_name": "Hotel",
|
814
|
+
"category_parent_key": 44,
|
815
|
+
"links": {
|
816
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1052",
|
817
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/44",
|
818
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1052"
|
819
|
+
}
|
820
|
+
},
|
821
|
+
{
|
822
|
+
"category_name": "Motel",
|
823
|
+
"category_key": 1053,
|
824
|
+
"category_type": "subcategory",
|
825
|
+
"category_parent_name": "Hotel",
|
826
|
+
"category_parent_key": 44,
|
827
|
+
"links": {
|
828
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1053",
|
829
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/44",
|
830
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1053"
|
831
|
+
}
|
832
|
+
}
|
833
|
+
]
|
834
|
+
},
|
835
|
+
{
|
836
|
+
"category_name": "Movies",
|
837
|
+
"category_key": 56,
|
838
|
+
"category_type": "category",
|
839
|
+
"category_parent_name": null,
|
840
|
+
"category_parent_key": null,
|
841
|
+
"links": {
|
842
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/56",
|
843
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=56"
|
844
|
+
},
|
845
|
+
"subcategories": [
|
846
|
+
{
|
847
|
+
"category_name": "Movie Rentals",
|
848
|
+
"category_key": 1054,
|
849
|
+
"category_type": "subcategory",
|
850
|
+
"category_parent_name": "Movies",
|
851
|
+
"category_parent_key": 56,
|
852
|
+
"links": {
|
853
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1054",
|
854
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/56",
|
855
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1054"
|
856
|
+
}
|
857
|
+
},
|
858
|
+
{
|
859
|
+
"category_name": "Movie Theaters",
|
860
|
+
"category_key": 1055,
|
861
|
+
"category_type": "subcategory",
|
862
|
+
"category_parent_name": "Movies",
|
863
|
+
"category_parent_key": 56,
|
864
|
+
"links": {
|
865
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1055",
|
866
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/56",
|
867
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1055"
|
868
|
+
}
|
869
|
+
}
|
870
|
+
]
|
871
|
+
},
|
872
|
+
{
|
873
|
+
"category_name": "Services",
|
874
|
+
"category_key": 50,
|
875
|
+
"category_type": "category",
|
876
|
+
"category_parent_name": null,
|
877
|
+
"category_parent_key": null,
|
878
|
+
"links": {
|
879
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
880
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=50"
|
881
|
+
},
|
882
|
+
"subcategories": [
|
883
|
+
{
|
884
|
+
"category_name": "Appliance Repair",
|
885
|
+
"category_key": 1056,
|
886
|
+
"category_type": "subcategory",
|
887
|
+
"category_parent_name": "Services",
|
888
|
+
"category_parent_key": 50,
|
889
|
+
"links": {
|
890
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1056",
|
891
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
892
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1056"
|
893
|
+
}
|
894
|
+
},
|
895
|
+
{
|
896
|
+
"category_name": "Cable & Satellite",
|
897
|
+
"category_key": 1075,
|
898
|
+
"category_type": "subcategory",
|
899
|
+
"category_parent_name": "Services",
|
900
|
+
"category_parent_key": 50,
|
901
|
+
"links": {
|
902
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1075",
|
903
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
904
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1075"
|
905
|
+
}
|
906
|
+
},
|
907
|
+
{
|
908
|
+
"category_name": "Carpet Cleaner",
|
909
|
+
"category_key": 1057,
|
910
|
+
"category_type": "subcategory",
|
911
|
+
"category_parent_name": "Services",
|
912
|
+
"category_parent_key": 50,
|
913
|
+
"links": {
|
914
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1057",
|
915
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
916
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1057"
|
917
|
+
}
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"category_name": "Cell Phone",
|
921
|
+
"category_key": 1058,
|
922
|
+
"category_type": "subcategory",
|
923
|
+
"category_parent_name": "Services",
|
924
|
+
"category_parent_key": 50,
|
925
|
+
"links": {
|
926
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1058",
|
927
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
928
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1058"
|
929
|
+
}
|
930
|
+
},
|
931
|
+
{
|
932
|
+
"category_name": "Child Care",
|
933
|
+
"category_key": 1059,
|
934
|
+
"category_type": "subcategory",
|
935
|
+
"category_parent_name": "Services",
|
936
|
+
"category_parent_key": 50,
|
937
|
+
"links": {
|
938
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1059",
|
939
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
940
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1059"
|
941
|
+
}
|
942
|
+
},
|
943
|
+
{
|
944
|
+
"category_name": "Dry Cleaning",
|
945
|
+
"category_key": 1060,
|
946
|
+
"category_type": "subcategory",
|
947
|
+
"category_parent_name": "Services",
|
948
|
+
"category_parent_key": 50,
|
949
|
+
"links": {
|
950
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1060",
|
951
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
952
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1060"
|
953
|
+
}
|
954
|
+
},
|
955
|
+
{
|
956
|
+
"category_name": "Educational Services",
|
957
|
+
"category_key": 1067,
|
958
|
+
"category_type": "subcategory",
|
959
|
+
"category_parent_name": "Services",
|
960
|
+
"category_parent_key": 50,
|
961
|
+
"links": {
|
962
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1067",
|
963
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
964
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1067"
|
965
|
+
}
|
966
|
+
},
|
967
|
+
{
|
968
|
+
"category_name": "Internet Service Provider",
|
969
|
+
"category_key": 1063,
|
970
|
+
"category_type": "subcategory",
|
971
|
+
"category_parent_name": "Services",
|
972
|
+
"category_parent_key": 50,
|
973
|
+
"links": {
|
974
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1063",
|
975
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
976
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1063"
|
977
|
+
}
|
978
|
+
},
|
979
|
+
{
|
980
|
+
"category_name": "Legal",
|
981
|
+
"category_key": 1064,
|
982
|
+
"category_type": "subcategory",
|
983
|
+
"category_parent_name": "Services",
|
984
|
+
"category_parent_key": 50,
|
985
|
+
"links": {
|
986
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1064",
|
987
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
988
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1064"
|
989
|
+
}
|
990
|
+
},
|
991
|
+
{
|
992
|
+
"category_name": "Locksmith",
|
993
|
+
"category_key": 1065,
|
994
|
+
"category_type": "subcategory",
|
995
|
+
"category_parent_name": "Services",
|
996
|
+
"category_parent_key": 50,
|
997
|
+
"links": {
|
998
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1065",
|
999
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1000
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1065"
|
1001
|
+
}
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"category_name": "Mail/Copy/Print",
|
1005
|
+
"category_key": 1066,
|
1006
|
+
"category_type": "subcategory",
|
1007
|
+
"category_parent_name": "Services",
|
1008
|
+
"category_parent_key": 50,
|
1009
|
+
"links": {
|
1010
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1066",
|
1011
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1012
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1066"
|
1013
|
+
}
|
1014
|
+
},
|
1015
|
+
{
|
1016
|
+
"category_name": "Moving & Storage",
|
1017
|
+
"category_key": 1068,
|
1018
|
+
"category_type": "subcategory",
|
1019
|
+
"category_parent_name": "Services",
|
1020
|
+
"category_parent_key": 50,
|
1021
|
+
"links": {
|
1022
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1068",
|
1023
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1024
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1068"
|
1025
|
+
}
|
1026
|
+
},
|
1027
|
+
{
|
1028
|
+
"category_name": "Office Services",
|
1029
|
+
"category_key": 1069,
|
1030
|
+
"category_type": "subcategory",
|
1031
|
+
"category_parent_name": "Services",
|
1032
|
+
"category_parent_key": 50,
|
1033
|
+
"links": {
|
1034
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1069",
|
1035
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1036
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1069"
|
1037
|
+
}
|
1038
|
+
},
|
1039
|
+
{
|
1040
|
+
"category_name": "Party & Event Rental",
|
1041
|
+
"category_key": 1076,
|
1042
|
+
"category_type": "subcategory",
|
1043
|
+
"category_parent_name": "Services",
|
1044
|
+
"category_parent_key": 50,
|
1045
|
+
"links": {
|
1046
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1076",
|
1047
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1048
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1076"
|
1049
|
+
}
|
1050
|
+
},
|
1051
|
+
{
|
1052
|
+
"category_name": "Photography & Photo Printing",
|
1053
|
+
"category_key": 1070,
|
1054
|
+
"category_type": "subcategory",
|
1055
|
+
"category_parent_name": "Services",
|
1056
|
+
"category_parent_key": 50,
|
1057
|
+
"links": {
|
1058
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1070",
|
1059
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1060
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1070"
|
1061
|
+
}
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
"category_name": "Tax Services",
|
1065
|
+
"category_key": 1071,
|
1066
|
+
"category_type": "subcategory",
|
1067
|
+
"category_parent_name": "Services",
|
1068
|
+
"category_parent_key": 50,
|
1069
|
+
"links": {
|
1070
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1071",
|
1071
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1072
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1071"
|
1073
|
+
}
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
"category_name": "Transportation",
|
1077
|
+
"category_key": 1072,
|
1078
|
+
"category_type": "subcategory",
|
1079
|
+
"category_parent_name": "Services",
|
1080
|
+
"category_parent_key": 50,
|
1081
|
+
"links": {
|
1082
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1072",
|
1083
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1084
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1072"
|
1085
|
+
}
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
"category_name": "Tuxedo Rental",
|
1089
|
+
"category_key": 1073,
|
1090
|
+
"category_type": "subcategory",
|
1091
|
+
"category_parent_name": "Services",
|
1092
|
+
"category_parent_key": 50,
|
1093
|
+
"links": {
|
1094
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1073",
|
1095
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1096
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1073"
|
1097
|
+
}
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
"category_name": "Weddings",
|
1101
|
+
"category_key": 1074,
|
1102
|
+
"category_type": "subcategory",
|
1103
|
+
"category_parent_name": "Services",
|
1104
|
+
"category_parent_key": 50,
|
1105
|
+
"links": {
|
1106
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1074",
|
1107
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
1108
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1074"
|
1109
|
+
}
|
1110
|
+
}
|
1111
|
+
]
|
1112
|
+
},
|
1113
|
+
{
|
1114
|
+
"category_name": "Shopping",
|
1115
|
+
"category_key": 45,
|
1116
|
+
"category_type": "category",
|
1117
|
+
"category_parent_name": null,
|
1118
|
+
"category_parent_key": null,
|
1119
|
+
"links": {
|
1120
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1121
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=45"
|
1122
|
+
},
|
1123
|
+
"subcategories": [
|
1124
|
+
{
|
1125
|
+
"category_name": "Apparel & Accessories",
|
1126
|
+
"category_key": 1077,
|
1127
|
+
"category_type": "subcategory",
|
1128
|
+
"category_parent_name": "Shopping",
|
1129
|
+
"category_parent_key": 45,
|
1130
|
+
"links": {
|
1131
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1077",
|
1132
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1133
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1077"
|
1134
|
+
}
|
1135
|
+
},
|
1136
|
+
{
|
1137
|
+
"category_name": "Art",
|
1138
|
+
"category_key": 1078,
|
1139
|
+
"category_type": "subcategory",
|
1140
|
+
"category_parent_name": "Shopping",
|
1141
|
+
"category_parent_key": 45,
|
1142
|
+
"links": {
|
1143
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1078",
|
1144
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1145
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1078"
|
1146
|
+
}
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
"category_name": "Baby/Maternity",
|
1150
|
+
"category_key": 1079,
|
1151
|
+
"category_type": "subcategory",
|
1152
|
+
"category_parent_name": "Shopping",
|
1153
|
+
"category_parent_key": 45,
|
1154
|
+
"links": {
|
1155
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1079",
|
1156
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1157
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1079"
|
1158
|
+
}
|
1159
|
+
},
|
1160
|
+
{
|
1161
|
+
"category_name": "Bath & Body",
|
1162
|
+
"category_key": 1080,
|
1163
|
+
"category_type": "subcategory",
|
1164
|
+
"category_parent_name": "Shopping",
|
1165
|
+
"category_parent_key": 45,
|
1166
|
+
"links": {
|
1167
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1080",
|
1168
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1169
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1080"
|
1170
|
+
}
|
1171
|
+
},
|
1172
|
+
{
|
1173
|
+
"category_name": "Boutique",
|
1174
|
+
"category_key": 1081,
|
1175
|
+
"category_type": "subcategory",
|
1176
|
+
"category_parent_name": "Shopping",
|
1177
|
+
"category_parent_key": 45,
|
1178
|
+
"links": {
|
1179
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1081",
|
1180
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1181
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1081"
|
1182
|
+
}
|
1183
|
+
},
|
1184
|
+
{
|
1185
|
+
"category_name": "Bridal",
|
1186
|
+
"category_key": 1082,
|
1187
|
+
"category_type": "subcategory",
|
1188
|
+
"category_parent_name": "Shopping",
|
1189
|
+
"category_parent_key": 45,
|
1190
|
+
"links": {
|
1191
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1082",
|
1192
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1193
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1082"
|
1194
|
+
}
|
1195
|
+
},
|
1196
|
+
{
|
1197
|
+
"category_name": "Crafts",
|
1198
|
+
"category_key": 1083,
|
1199
|
+
"category_type": "subcategory",
|
1200
|
+
"category_parent_name": "Shopping",
|
1201
|
+
"category_parent_key": 45,
|
1202
|
+
"links": {
|
1203
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1083",
|
1204
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1205
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1083"
|
1206
|
+
}
|
1207
|
+
},
|
1208
|
+
{
|
1209
|
+
"category_name": "Cycling",
|
1210
|
+
"category_key": 1084,
|
1211
|
+
"category_type": "subcategory",
|
1212
|
+
"category_parent_name": "Shopping",
|
1213
|
+
"category_parent_key": 45,
|
1214
|
+
"links": {
|
1215
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1084",
|
1216
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1217
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1084"
|
1218
|
+
}
|
1219
|
+
},
|
1220
|
+
{
|
1221
|
+
"category_name": "Department Stores",
|
1222
|
+
"category_key": 1085,
|
1223
|
+
"category_type": "subcategory",
|
1224
|
+
"category_parent_name": "Shopping",
|
1225
|
+
"category_parent_key": 45,
|
1226
|
+
"links": {
|
1227
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1085",
|
1228
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1229
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1085"
|
1230
|
+
}
|
1231
|
+
},
|
1232
|
+
{
|
1233
|
+
"category_name": "Electronics",
|
1234
|
+
"category_key": 1086,
|
1235
|
+
"category_type": "subcategory",
|
1236
|
+
"category_parent_name": "Shopping",
|
1237
|
+
"category_parent_key": 45,
|
1238
|
+
"links": {
|
1239
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1086",
|
1240
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1241
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1086"
|
1242
|
+
}
|
1243
|
+
},
|
1244
|
+
{
|
1245
|
+
"category_name": "Flowers",
|
1246
|
+
"category_key": 1087,
|
1247
|
+
"category_type": "subcategory",
|
1248
|
+
"category_parent_name": "Shopping",
|
1249
|
+
"category_parent_key": 45,
|
1250
|
+
"links": {
|
1251
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1087",
|
1252
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1253
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1087"
|
1254
|
+
}
|
1255
|
+
},
|
1256
|
+
{
|
1257
|
+
"category_name": "Fragrance",
|
1258
|
+
"category_key": 1088,
|
1259
|
+
"category_type": "subcategory",
|
1260
|
+
"category_parent_name": "Shopping",
|
1261
|
+
"category_parent_key": 45,
|
1262
|
+
"links": {
|
1263
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1088",
|
1264
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1265
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1088"
|
1266
|
+
}
|
1267
|
+
},
|
1268
|
+
{
|
1269
|
+
"category_name": "Framing",
|
1270
|
+
"category_key": 1089,
|
1271
|
+
"category_type": "subcategory",
|
1272
|
+
"category_parent_name": "Shopping",
|
1273
|
+
"category_parent_key": 45,
|
1274
|
+
"links": {
|
1275
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1089",
|
1276
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1277
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1089"
|
1278
|
+
}
|
1279
|
+
},
|
1280
|
+
{
|
1281
|
+
"category_name": "Furniture",
|
1282
|
+
"category_key": 1090,
|
1283
|
+
"category_type": "subcategory",
|
1284
|
+
"category_parent_name": "Shopping",
|
1285
|
+
"category_parent_key": 45,
|
1286
|
+
"links": {
|
1287
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1090",
|
1288
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1289
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1090"
|
1290
|
+
}
|
1291
|
+
},
|
1292
|
+
{
|
1293
|
+
"category_name": "Gifts",
|
1294
|
+
"category_key": 1091,
|
1295
|
+
"category_type": "subcategory",
|
1296
|
+
"category_parent_name": "Shopping",
|
1297
|
+
"category_parent_key": 45,
|
1298
|
+
"links": {
|
1299
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1091",
|
1300
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1301
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1091"
|
1302
|
+
}
|
1303
|
+
},
|
1304
|
+
{
|
1305
|
+
"category_name": "Jewelry",
|
1306
|
+
"category_key": 1092,
|
1307
|
+
"category_type": "subcategory",
|
1308
|
+
"category_parent_name": "Shopping",
|
1309
|
+
"category_parent_key": 45,
|
1310
|
+
"links": {
|
1311
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1092",
|
1312
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1313
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1092"
|
1314
|
+
}
|
1315
|
+
},
|
1316
|
+
{
|
1317
|
+
"category_name": "Luggage & Travel Accessories",
|
1318
|
+
"category_key": 1093,
|
1319
|
+
"category_type": "subcategory",
|
1320
|
+
"category_parent_name": "Shopping",
|
1321
|
+
"category_parent_key": 45,
|
1322
|
+
"links": {
|
1323
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1093",
|
1324
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1325
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1093"
|
1326
|
+
}
|
1327
|
+
},
|
1328
|
+
{
|
1329
|
+
"category_name": "Movies, Music & Books",
|
1330
|
+
"category_key": 1094,
|
1331
|
+
"category_type": "subcategory",
|
1332
|
+
"category_parent_name": "Shopping",
|
1333
|
+
"category_parent_key": 45,
|
1334
|
+
"links": {
|
1335
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1094",
|
1336
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1337
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1094"
|
1338
|
+
}
|
1339
|
+
},
|
1340
|
+
{
|
1341
|
+
"category_name": "Office Supplies",
|
1342
|
+
"category_key": 1095,
|
1343
|
+
"category_type": "subcategory",
|
1344
|
+
"category_parent_name": "Shopping",
|
1345
|
+
"category_parent_key": 45,
|
1346
|
+
"links": {
|
1347
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1095",
|
1348
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1349
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1095"
|
1350
|
+
}
|
1351
|
+
},
|
1352
|
+
{
|
1353
|
+
"category_name": "Other Shopping",
|
1354
|
+
"category_key": 1102,
|
1355
|
+
"category_type": "subcategory",
|
1356
|
+
"category_parent_name": "Shopping",
|
1357
|
+
"category_parent_key": 45,
|
1358
|
+
"links": {
|
1359
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1102",
|
1360
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1361
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1102"
|
1362
|
+
}
|
1363
|
+
},
|
1364
|
+
{
|
1365
|
+
"category_name": "Outdoor Equipment",
|
1366
|
+
"category_key": 1096,
|
1367
|
+
"category_type": "subcategory",
|
1368
|
+
"category_parent_name": "Shopping",
|
1369
|
+
"category_parent_key": 45,
|
1370
|
+
"links": {
|
1371
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1096",
|
1372
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1373
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1096"
|
1374
|
+
}
|
1375
|
+
},
|
1376
|
+
{
|
1377
|
+
"category_name": "Pets",
|
1378
|
+
"category_key": 1097,
|
1379
|
+
"category_type": "subcategory",
|
1380
|
+
"category_parent_name": "Shopping",
|
1381
|
+
"category_parent_key": 45,
|
1382
|
+
"links": {
|
1383
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1097",
|
1384
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1385
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1097"
|
1386
|
+
}
|
1387
|
+
},
|
1388
|
+
{
|
1389
|
+
"category_name": "Publications",
|
1390
|
+
"category_key": 1098,
|
1391
|
+
"category_type": "subcategory",
|
1392
|
+
"category_parent_name": "Shopping",
|
1393
|
+
"category_parent_key": 45,
|
1394
|
+
"links": {
|
1395
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1098",
|
1396
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1397
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1098"
|
1398
|
+
}
|
1399
|
+
},
|
1400
|
+
{
|
1401
|
+
"category_name": "Sporting Goods",
|
1402
|
+
"category_key": 1099,
|
1403
|
+
"category_type": "subcategory",
|
1404
|
+
"category_parent_name": "Shopping",
|
1405
|
+
"category_parent_key": 45,
|
1406
|
+
"links": {
|
1407
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1099",
|
1408
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1409
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1099"
|
1410
|
+
}
|
1411
|
+
},
|
1412
|
+
{
|
1413
|
+
"category_name": "Toys",
|
1414
|
+
"category_key": 1100,
|
1415
|
+
"category_type": "subcategory",
|
1416
|
+
"category_parent_name": "Shopping",
|
1417
|
+
"category_parent_key": 45,
|
1418
|
+
"links": {
|
1419
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1100",
|
1420
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1421
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1100"
|
1422
|
+
}
|
1423
|
+
},
|
1424
|
+
{
|
1425
|
+
"category_name": "Wireless",
|
1426
|
+
"category_key": 1101,
|
1427
|
+
"category_type": "subcategory",
|
1428
|
+
"category_parent_name": "Shopping",
|
1429
|
+
"category_parent_key": 45,
|
1430
|
+
"links": {
|
1431
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1101",
|
1432
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
1433
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1101"
|
1434
|
+
}
|
1435
|
+
}
|
1436
|
+
]
|
1437
|
+
},
|
1438
|
+
{
|
1439
|
+
"category_name": "Ski & Snowboard",
|
1440
|
+
"category_key": 55,
|
1441
|
+
"category_type": "category",
|
1442
|
+
"category_parent_name": null,
|
1443
|
+
"category_parent_key": null,
|
1444
|
+
"links": {
|
1445
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
1446
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=55"
|
1447
|
+
},
|
1448
|
+
"subcategories": [
|
1449
|
+
{
|
1450
|
+
"category_name": "Cross Country Ski",
|
1451
|
+
"category_key": 1106,
|
1452
|
+
"category_type": "subcategory",
|
1453
|
+
"category_parent_name": "Ski & Snowboard",
|
1454
|
+
"category_parent_key": 55,
|
1455
|
+
"links": {
|
1456
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1106",
|
1457
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
1458
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1106"
|
1459
|
+
}
|
1460
|
+
},
|
1461
|
+
{
|
1462
|
+
"category_name": "Ski Gear & Rentals",
|
1463
|
+
"category_key": 1103,
|
1464
|
+
"category_type": "subcategory",
|
1465
|
+
"category_parent_name": "Ski & Snowboard",
|
1466
|
+
"category_parent_key": 55,
|
1467
|
+
"links": {
|
1468
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1103",
|
1469
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
1470
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1103"
|
1471
|
+
}
|
1472
|
+
},
|
1473
|
+
{
|
1474
|
+
"category_name": "Ski Lessons",
|
1475
|
+
"category_key": 1105,
|
1476
|
+
"category_type": "subcategory",
|
1477
|
+
"category_parent_name": "Ski & Snowboard",
|
1478
|
+
"category_parent_key": 55,
|
1479
|
+
"links": {
|
1480
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1105",
|
1481
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
1482
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1105"
|
1483
|
+
}
|
1484
|
+
},
|
1485
|
+
{
|
1486
|
+
"category_name": "Ski Packages",
|
1487
|
+
"category_key": 1108,
|
1488
|
+
"category_type": "subcategory",
|
1489
|
+
"category_parent_name": "Ski & Snowboard",
|
1490
|
+
"category_parent_key": 55,
|
1491
|
+
"links": {
|
1492
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1108",
|
1493
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
1494
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1108"
|
1495
|
+
}
|
1496
|
+
},
|
1497
|
+
{
|
1498
|
+
"category_name": "Ski Resort",
|
1499
|
+
"category_key": 1107,
|
1500
|
+
"category_type": "subcategory",
|
1501
|
+
"category_parent_name": "Ski & Snowboard",
|
1502
|
+
"category_parent_key": 55,
|
1503
|
+
"links": {
|
1504
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1107",
|
1505
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
1506
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1107"
|
1507
|
+
}
|
1508
|
+
},
|
1509
|
+
{
|
1510
|
+
"category_name": "Snow Sports",
|
1511
|
+
"category_key": 1104,
|
1512
|
+
"category_type": "subcategory",
|
1513
|
+
"category_parent_name": "Ski & Snowboard",
|
1514
|
+
"category_parent_key": 55,
|
1515
|
+
"links": {
|
1516
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1104",
|
1517
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
1518
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1104"
|
1519
|
+
}
|
1520
|
+
}
|
1521
|
+
]
|
1522
|
+
},
|
1523
|
+
{
|
1524
|
+
"category_name": "Travel",
|
1525
|
+
"category_key": 38,
|
1526
|
+
"category_type": "category",
|
1527
|
+
"category_parent_name": null,
|
1528
|
+
"category_parent_key": null,
|
1529
|
+
"links": {
|
1530
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
1531
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=38"
|
1532
|
+
},
|
1533
|
+
"subcategories": [
|
1534
|
+
{
|
1535
|
+
"category_name": "Air & Parking",
|
1536
|
+
"category_key": 1109,
|
1537
|
+
"category_type": "subcategory",
|
1538
|
+
"category_parent_name": "Travel",
|
1539
|
+
"category_parent_key": 38,
|
1540
|
+
"links": {
|
1541
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1109",
|
1542
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
1543
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1109"
|
1544
|
+
}
|
1545
|
+
},
|
1546
|
+
{
|
1547
|
+
"category_name": "Resorts & Spas",
|
1548
|
+
"category_key": 1110,
|
1549
|
+
"category_type": "subcategory",
|
1550
|
+
"category_parent_name": "Travel",
|
1551
|
+
"category_parent_key": 38,
|
1552
|
+
"links": {
|
1553
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1110",
|
1554
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
1555
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1110"
|
1556
|
+
}
|
1557
|
+
},
|
1558
|
+
{
|
1559
|
+
"category_name": "Tours",
|
1560
|
+
"category_key": 1111,
|
1561
|
+
"category_type": "subcategory",
|
1562
|
+
"category_parent_name": "Travel",
|
1563
|
+
"category_parent_key": 38,
|
1564
|
+
"links": {
|
1565
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1111",
|
1566
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
1567
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1111"
|
1568
|
+
}
|
1569
|
+
},
|
1570
|
+
{
|
1571
|
+
"category_name": "Travel Packages & Tours",
|
1572
|
+
"category_key": 1112,
|
1573
|
+
"category_type": "subcategory",
|
1574
|
+
"category_parent_name": "Travel",
|
1575
|
+
"category_parent_key": 38,
|
1576
|
+
"links": {
|
1577
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1112",
|
1578
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
1579
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1112"
|
1580
|
+
}
|
1581
|
+
}
|
1582
|
+
]
|
1583
|
+
}
|
1584
|
+
]
|
1585
|
+
}
|
1586
|
+
http_version:
|
1587
|
+
recorded_at: Mon, 22 Feb 2016 20:17:08 GMT
|
1588
|
+
recorded_with: VCR 3.0.1
|