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
data/test/vcr/cassettes/{location_search_fail_member_key.yml → category/search_fail_member_key.yml}
RENAMED
@@ -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?query=pizza
|
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:
|
@@ -45,9 +45,9 @@ http_interactions:
|
|
45
45
|
Cache-Control:
|
46
46
|
- no-cache
|
47
47
|
X-Request-Id:
|
48
|
-
-
|
48
|
+
- 09ab6159-8b2c-478a-b51a-5f7ec02ca930
|
49
49
|
X-Runtime:
|
50
|
-
- '0.
|
50
|
+
- '0.006259'
|
51
51
|
body:
|
52
52
|
encoding: UTF-8
|
53
53
|
string: |-
|
@@ -56,5 +56,5 @@ http_interactions:
|
|
56
56
|
"status": 401
|
57
57
|
}
|
58
58
|
http_version:
|
59
|
-
recorded_at:
|
60
|
-
recorded_with: VCR 3.0.
|
59
|
+
recorded_at: Mon, 22 Feb 2016 20:17:08 GMT
|
60
|
+
recorded_with: VCR 3.0.1
|
@@ -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?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:04 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
|
+
- '"8bbd902aa8faedc9431caae7a3917687"'
|
47
47
|
Cache-Control:
|
48
48
|
- max-age=0, private, must-revalidate
|
49
49
|
X-Request-Id:
|
50
|
-
-
|
50
|
+
- 5fe545f4-59fe-4b72-93b0-ab977469f92f
|
51
51
|
X-Runtime:
|
52
|
-
- '0.
|
52
|
+
- '0.129397'
|
53
53
|
body:
|
54
54
|
encoding: UTF-8
|
55
55
|
string: |-
|
@@ -68,8 +68,8 @@ http_interactions:
|
|
68
68
|
"category_parent_name": null,
|
69
69
|
"category_parent_key": null,
|
70
70
|
"links": {
|
71
|
-
"show_category": "https://offer-
|
72
|
-
"find_offers_in_this_category": "https://offer-
|
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
73
|
},
|
74
74
|
"subcategories": [
|
75
75
|
{
|
@@ -79,9 +79,9 @@ http_interactions:
|
|
79
79
|
"category_parent_name": "Automotive",
|
80
80
|
"category_parent_key": 51,
|
81
81
|
"links": {
|
82
|
-
"show_category": "https://offer-
|
83
|
-
"show_parent_category": "https://offer-
|
84
|
-
"find_offers_in_this_category": "https://offer-
|
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
85
|
}
|
86
86
|
},
|
87
87
|
{
|
@@ -91,9 +91,9 @@ http_interactions:
|
|
91
91
|
"category_parent_name": "Automotive",
|
92
92
|
"category_parent_key": 51,
|
93
93
|
"links": {
|
94
|
-
"show_category": "https://offer-
|
95
|
-
"show_parent_category": "https://offer-
|
96
|
-
"find_offers_in_this_category": "https://offer-
|
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
97
|
}
|
98
98
|
},
|
99
99
|
{
|
@@ -103,9 +103,9 @@ http_interactions:
|
|
103
103
|
"category_parent_name": "Automotive",
|
104
104
|
"category_parent_key": 51,
|
105
105
|
"links": {
|
106
|
-
"show_category": "https://offer-
|
107
|
-
"show_parent_category": "https://offer-
|
108
|
-
"find_offers_in_this_category": "https://offer-
|
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
109
|
}
|
110
110
|
},
|
111
111
|
{
|
@@ -115,9 +115,9 @@ http_interactions:
|
|
115
115
|
"category_parent_name": "Automotive",
|
116
116
|
"category_parent_key": 51,
|
117
117
|
"links": {
|
118
|
-
"show_category": "https://offer-
|
119
|
-
"show_parent_category": "https://offer-
|
120
|
-
"find_offers_in_this_category": "https://offer-
|
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
121
|
}
|
122
122
|
},
|
123
123
|
{
|
@@ -127,9 +127,9 @@ http_interactions:
|
|
127
127
|
"category_parent_name": "Automotive",
|
128
128
|
"category_parent_key": 51,
|
129
129
|
"links": {
|
130
|
-
"show_category": "https://offer-
|
131
|
-
"show_parent_category": "https://offer-
|
132
|
-
"find_offers_in_this_category": "https://offer-
|
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
133
|
}
|
134
134
|
},
|
135
135
|
{
|
@@ -139,9 +139,9 @@ http_interactions:
|
|
139
139
|
"category_parent_name": "Automotive",
|
140
140
|
"category_parent_key": 51,
|
141
141
|
"links": {
|
142
|
-
"show_category": "https://offer-
|
143
|
-
"show_parent_category": "https://offer-
|
144
|
-
"find_offers_in_this_category": "https://offer-
|
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
145
|
}
|
146
146
|
},
|
147
147
|
{
|
@@ -151,9 +151,9 @@ http_interactions:
|
|
151
151
|
"category_parent_name": "Automotive",
|
152
152
|
"category_parent_key": 51,
|
153
153
|
"links": {
|
154
|
-
"show_category": "https://offer-
|
155
|
-
"show_parent_category": "https://offer-
|
156
|
-
"find_offers_in_this_category": "https://offer-
|
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
157
|
}
|
158
158
|
}
|
159
159
|
]
|
@@ -165,8 +165,8 @@ http_interactions:
|
|
165
165
|
"category_parent_name": null,
|
166
166
|
"category_parent_key": null,
|
167
167
|
"links": {
|
168
|
-
"show_category": "https://offer-
|
169
|
-
"find_offers_in_this_category": "https://offer-
|
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
170
|
},
|
171
171
|
"subcategories": [
|
172
172
|
|
@@ -179,8 +179,8 @@ http_interactions:
|
|
179
179
|
"category_parent_name": null,
|
180
180
|
"category_parent_key": null,
|
181
181
|
"links": {
|
182
|
-
"show_category": "https://offer-
|
183
|
-
"find_offers_in_this_category": "https://offer-
|
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
184
|
},
|
185
185
|
"subcategories": [
|
186
186
|
|
@@ -193,8 +193,8 @@ http_interactions:
|
|
193
193
|
"category_parent_name": null,
|
194
194
|
"category_parent_key": null,
|
195
195
|
"links": {
|
196
|
-
"show_category": "https://offer-
|
197
|
-
"find_offers_in_this_category": "https://offer-
|
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
198
|
},
|
199
199
|
"subcategories": [
|
200
200
|
|
@@ -207,8 +207,8 @@ http_interactions:
|
|
207
207
|
"category_parent_name": null,
|
208
208
|
"category_parent_key": null,
|
209
209
|
"links": {
|
210
|
-
"show_category": "https://offer-
|
211
|
-
"find_offers_in_this_category": "https://offer-
|
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
212
|
},
|
213
213
|
"subcategories": [
|
214
214
|
{
|
@@ -218,9 +218,9 @@ http_interactions:
|
|
218
218
|
"category_parent_name": "Dining & Food",
|
219
219
|
"category_parent_key": 39,
|
220
220
|
"links": {
|
221
|
-
"show_category": "https://offer-
|
222
|
-
"show_parent_category": "https://offer-
|
223
|
-
"find_offers_in_this_category": "https://offer-
|
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
224
|
}
|
225
225
|
},
|
226
226
|
{
|
@@ -230,9 +230,9 @@ http_interactions:
|
|
230
230
|
"category_parent_name": "Dining & Food",
|
231
231
|
"category_parent_key": 39,
|
232
232
|
"links": {
|
233
|
-
"show_category": "https://offer-
|
234
|
-
"show_parent_category": "https://offer-
|
235
|
-
"find_offers_in_this_category": "https://offer-
|
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
236
|
}
|
237
237
|
},
|
238
238
|
{
|
@@ -242,9 +242,9 @@ http_interactions:
|
|
242
242
|
"category_parent_name": "Dining & Food",
|
243
243
|
"category_parent_key": 39,
|
244
244
|
"links": {
|
245
|
-
"show_category": "https://offer-
|
246
|
-
"show_parent_category": "https://offer-
|
247
|
-
"find_offers_in_this_category": "https://offer-
|
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
248
|
}
|
249
249
|
},
|
250
250
|
{
|
@@ -254,9 +254,9 @@ http_interactions:
|
|
254
254
|
"category_parent_name": "Dining & Food",
|
255
255
|
"category_parent_key": 39,
|
256
256
|
"links": {
|
257
|
-
"show_category": "https://offer-
|
258
|
-
"show_parent_category": "https://offer-
|
259
|
-
"find_offers_in_this_category": "https://offer-
|
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
260
|
}
|
261
261
|
},
|
262
262
|
{
|
@@ -266,9 +266,9 @@ http_interactions:
|
|
266
266
|
"category_parent_name": "Dining & Food",
|
267
267
|
"category_parent_key": 39,
|
268
268
|
"links": {
|
269
|
-
"show_category": "https://offer-
|
270
|
-
"show_parent_category": "https://offer-
|
271
|
-
"find_offers_in_this_category": "https://offer-
|
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
272
|
}
|
273
273
|
},
|
274
274
|
{
|
@@ -278,22 +278,22 @@ http_interactions:
|
|
278
278
|
"category_parent_name": "Dining & Food",
|
279
279
|
"category_parent_key": 39,
|
280
280
|
"links": {
|
281
|
-
"show_category": "https://offer-
|
282
|
-
"show_parent_category": "https://offer-
|
283
|
-
"find_offers_in_this_category": "https://offer-
|
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
284
|
}
|
285
285
|
}
|
286
286
|
]
|
287
287
|
},
|
288
288
|
{
|
289
|
-
"category_name": "
|
289
|
+
"category_name": "Educators Only",
|
290
290
|
"category_key": 1113,
|
291
291
|
"category_type": "category",
|
292
292
|
"category_parent_name": null,
|
293
293
|
"category_parent_key": null,
|
294
294
|
"links": {
|
295
|
-
"show_category": "https://offer-
|
296
|
-
"find_offers_in_this_category": "https://offer-
|
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
297
|
},
|
298
298
|
"subcategories": [
|
299
299
|
|
@@ -306,8 +306,8 @@ http_interactions:
|
|
306
306
|
"category_parent_name": null,
|
307
307
|
"category_parent_key": null,
|
308
308
|
"links": {
|
309
|
-
"show_category": "https://offer-
|
310
|
-
"find_offers_in_this_category": "https://offer-
|
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
311
|
},
|
312
312
|
"subcategories": [
|
313
313
|
{
|
@@ -317,9 +317,9 @@ http_interactions:
|
|
317
317
|
"category_parent_name": "Entertainment & Recreation",
|
318
318
|
"category_parent_key": 59,
|
319
319
|
"links": {
|
320
|
-
"show_category": "https://offer-
|
321
|
-
"show_parent_category": "https://offer-
|
322
|
-
"find_offers_in_this_category": "https://offer-
|
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
323
|
}
|
324
324
|
},
|
325
325
|
{
|
@@ -329,9 +329,9 @@ http_interactions:
|
|
329
329
|
"category_parent_name": "Entertainment & Recreation",
|
330
330
|
"category_parent_key": 59,
|
331
331
|
"links": {
|
332
|
-
"show_category": "https://offer-
|
333
|
-
"show_parent_category": "https://offer-
|
334
|
-
"find_offers_in_this_category": "https://offer-
|
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
335
|
}
|
336
336
|
},
|
337
337
|
{
|
@@ -341,9 +341,9 @@ http_interactions:
|
|
341
341
|
"category_parent_name": "Entertainment & Recreation",
|
342
342
|
"category_parent_key": 59,
|
343
343
|
"links": {
|
344
|
-
"show_category": "https://offer-
|
345
|
-
"show_parent_category": "https://offer-
|
346
|
-
"find_offers_in_this_category": "https://offer-
|
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
347
|
}
|
348
348
|
},
|
349
349
|
{
|
@@ -353,9 +353,9 @@ http_interactions:
|
|
353
353
|
"category_parent_name": "Entertainment & Recreation",
|
354
354
|
"category_parent_key": 59,
|
355
355
|
"links": {
|
356
|
-
"show_category": "https://offer-
|
357
|
-
"show_parent_category": "https://offer-
|
358
|
-
"find_offers_in_this_category": "https://offer-
|
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
359
|
}
|
360
360
|
},
|
361
361
|
{
|
@@ -365,9 +365,9 @@ http_interactions:
|
|
365
365
|
"category_parent_name": "Entertainment & Recreation",
|
366
366
|
"category_parent_key": 59,
|
367
367
|
"links": {
|
368
|
-
"show_category": "https://offer-
|
369
|
-
"show_parent_category": "https://offer-
|
370
|
-
"find_offers_in_this_category": "https://offer-
|
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
371
|
}
|
372
372
|
},
|
373
373
|
{
|
@@ -377,9 +377,9 @@ http_interactions:
|
|
377
377
|
"category_parent_name": "Entertainment & Recreation",
|
378
378
|
"category_parent_key": 59,
|
379
379
|
"links": {
|
380
|
-
"show_category": "https://offer-
|
381
|
-
"show_parent_category": "https://offer-
|
382
|
-
"find_offers_in_this_category": "https://offer-
|
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
383
|
}
|
384
384
|
},
|
385
385
|
{
|
@@ -389,9 +389,9 @@ http_interactions:
|
|
389
389
|
"category_parent_name": "Entertainment & Recreation",
|
390
390
|
"category_parent_key": 59,
|
391
391
|
"links": {
|
392
|
-
"show_category": "https://offer-
|
393
|
-
"show_parent_category": "https://offer-
|
394
|
-
"find_offers_in_this_category": "https://offer-
|
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
395
|
}
|
396
396
|
}
|
397
397
|
]
|
@@ -403,8 +403,8 @@ http_interactions:
|
|
403
403
|
"category_parent_name": null,
|
404
404
|
"category_parent_key": null,
|
405
405
|
"links": {
|
406
|
-
"show_category": "https://offer-
|
407
|
-
"find_offers_in_this_category": "https://offer-
|
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
408
|
},
|
409
409
|
"subcategories": [
|
410
410
|
{
|
@@ -414,9 +414,9 @@ http_interactions:
|
|
414
414
|
"category_parent_name": "Golf",
|
415
415
|
"category_parent_key": 48,
|
416
416
|
"links": {
|
417
|
-
"show_category": "https://offer-
|
418
|
-
"show_parent_category": "https://offer-
|
419
|
-
"find_offers_in_this_category": "https://offer-
|
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
420
|
}
|
421
421
|
},
|
422
422
|
{
|
@@ -426,9 +426,9 @@ http_interactions:
|
|
426
426
|
"category_parent_name": "Golf",
|
427
427
|
"category_parent_key": 48,
|
428
428
|
"links": {
|
429
|
-
"show_category": "https://offer-
|
430
|
-
"show_parent_category": "https://offer-
|
431
|
-
"find_offers_in_this_category": "https://offer-
|
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
432
|
}
|
433
433
|
},
|
434
434
|
{
|
@@ -438,9 +438,9 @@ http_interactions:
|
|
438
438
|
"category_parent_name": "Golf",
|
439
439
|
"category_parent_key": 48,
|
440
440
|
"links": {
|
441
|
-
"show_category": "https://offer-
|
442
|
-
"show_parent_category": "https://offer-
|
443
|
-
"find_offers_in_this_category": "https://offer-
|
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
444
|
}
|
445
445
|
},
|
446
446
|
{
|
@@ -450,9 +450,9 @@ http_interactions:
|
|
450
450
|
"category_parent_name": "Golf",
|
451
451
|
"category_parent_key": 48,
|
452
452
|
"links": {
|
453
|
-
"show_category": "https://offer-
|
454
|
-
"show_parent_category": "https://offer-
|
455
|
-
"find_offers_in_this_category": "https://offer-
|
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
456
|
}
|
457
457
|
},
|
458
458
|
{
|
@@ -462,9 +462,9 @@ http_interactions:
|
|
462
462
|
"category_parent_name": "Golf",
|
463
463
|
"category_parent_key": 48,
|
464
464
|
"links": {
|
465
|
-
"show_category": "https://offer-
|
466
|
-
"show_parent_category": "https://offer-
|
467
|
-
"find_offers_in_this_category": "https://offer-
|
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
468
|
}
|
469
469
|
}
|
470
470
|
]
|
@@ -476,8 +476,8 @@ http_interactions:
|
|
476
476
|
"category_parent_name": null,
|
477
477
|
"category_parent_key": null,
|
478
478
|
"links": {
|
479
|
-
"show_category": "https://offer-
|
480
|
-
"find_offers_in_this_category": "https://offer-
|
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
481
|
},
|
482
482
|
"subcategories": [
|
483
483
|
{
|
@@ -487,9 +487,9 @@ http_interactions:
|
|
487
487
|
"category_parent_name": "Health & Beauty",
|
488
488
|
"category_parent_key": 53,
|
489
489
|
"links": {
|
490
|
-
"show_category": "https://offer-
|
491
|
-
"show_parent_category": "https://offer-
|
492
|
-
"find_offers_in_this_category": "https://offer-
|
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
493
|
}
|
494
494
|
},
|
495
495
|
{
|
@@ -499,9 +499,9 @@ http_interactions:
|
|
499
499
|
"category_parent_name": "Health & Beauty",
|
500
500
|
"category_parent_key": 53,
|
501
501
|
"links": {
|
502
|
-
"show_category": "https://offer-
|
503
|
-
"show_parent_category": "https://offer-
|
504
|
-
"find_offers_in_this_category": "https://offer-
|
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
505
|
}
|
506
506
|
},
|
507
507
|
{
|
@@ -511,9 +511,9 @@ http_interactions:
|
|
511
511
|
"category_parent_name": "Health & Beauty",
|
512
512
|
"category_parent_key": 53,
|
513
513
|
"links": {
|
514
|
-
"show_category": "https://offer-
|
515
|
-
"show_parent_category": "https://offer-
|
516
|
-
"find_offers_in_this_category": "https://offer-
|
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
517
|
}
|
518
518
|
},
|
519
519
|
{
|
@@ -523,9 +523,9 @@ http_interactions:
|
|
523
523
|
"category_parent_name": "Health & Beauty",
|
524
524
|
"category_parent_key": 53,
|
525
525
|
"links": {
|
526
|
-
"show_category": "https://offer-
|
527
|
-
"show_parent_category": "https://offer-
|
528
|
-
"find_offers_in_this_category": "https://offer-
|
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
529
|
}
|
530
530
|
},
|
531
531
|
{
|
@@ -535,9 +535,9 @@ http_interactions:
|
|
535
535
|
"category_parent_name": "Health & Beauty",
|
536
536
|
"category_parent_key": 53,
|
537
537
|
"links": {
|
538
|
-
"show_category": "https://offer-
|
539
|
-
"show_parent_category": "https://offer-
|
540
|
-
"find_offers_in_this_category": "https://offer-
|
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
541
|
}
|
542
542
|
},
|
543
543
|
{
|
@@ -547,9 +547,9 @@ http_interactions:
|
|
547
547
|
"category_parent_name": "Health & Beauty",
|
548
548
|
"category_parent_key": 53,
|
549
549
|
"links": {
|
550
|
-
"show_category": "https://offer-
|
551
|
-
"show_parent_category": "https://offer-
|
552
|
-
"find_offers_in_this_category": "https://offer-
|
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
553
|
}
|
554
554
|
},
|
555
555
|
{
|
@@ -559,9 +559,9 @@ http_interactions:
|
|
559
559
|
"category_parent_name": "Health & Beauty",
|
560
560
|
"category_parent_key": 53,
|
561
561
|
"links": {
|
562
|
-
"show_category": "https://offer-
|
563
|
-
"show_parent_category": "https://offer-
|
564
|
-
"find_offers_in_this_category": "https://offer-
|
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
565
|
}
|
566
566
|
},
|
567
567
|
{
|
@@ -571,9 +571,9 @@ http_interactions:
|
|
571
571
|
"category_parent_name": "Health & Beauty",
|
572
572
|
"category_parent_key": 53,
|
573
573
|
"links": {
|
574
|
-
"show_category": "https://offer-
|
575
|
-
"show_parent_category": "https://offer-
|
576
|
-
"find_offers_in_this_category": "https://offer-
|
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
577
|
}
|
578
578
|
},
|
579
579
|
{
|
@@ -583,9 +583,9 @@ http_interactions:
|
|
583
583
|
"category_parent_name": "Health & Beauty",
|
584
584
|
"category_parent_key": 53,
|
585
585
|
"links": {
|
586
|
-
"show_category": "https://offer-
|
587
|
-
"show_parent_category": "https://offer-
|
588
|
-
"find_offers_in_this_category": "https://offer-
|
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
589
|
}
|
590
590
|
},
|
591
591
|
{
|
@@ -595,9 +595,9 @@ http_interactions:
|
|
595
595
|
"category_parent_name": "Health & Beauty",
|
596
596
|
"category_parent_key": 53,
|
597
597
|
"links": {
|
598
|
-
"show_category": "https://offer-
|
599
|
-
"show_parent_category": "https://offer-
|
600
|
-
"find_offers_in_this_category": "https://offer-
|
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
601
|
}
|
602
602
|
},
|
603
603
|
{
|
@@ -607,9 +607,9 @@ http_interactions:
|
|
607
607
|
"category_parent_name": "Health & Beauty",
|
608
608
|
"category_parent_key": 53,
|
609
609
|
"links": {
|
610
|
-
"show_category": "https://offer-
|
611
|
-
"show_parent_category": "https://offer-
|
612
|
-
"find_offers_in_this_category": "https://offer-
|
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
613
|
}
|
614
614
|
},
|
615
615
|
{
|
@@ -619,9 +619,9 @@ http_interactions:
|
|
619
619
|
"category_parent_name": "Health & Beauty",
|
620
620
|
"category_parent_key": 53,
|
621
621
|
"links": {
|
622
|
-
"show_category": "https://offer-
|
623
|
-
"show_parent_category": "https://offer-
|
624
|
-
"find_offers_in_this_category": "https://offer-
|
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
625
|
}
|
626
626
|
},
|
627
627
|
{
|
@@ -631,9 +631,9 @@ http_interactions:
|
|
631
631
|
"category_parent_name": "Health & Beauty",
|
632
632
|
"category_parent_key": 53,
|
633
633
|
"links": {
|
634
|
-
"show_category": "https://offer-
|
635
|
-
"show_parent_category": "https://offer-
|
636
|
-
"find_offers_in_this_category": "https://offer-
|
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
637
|
}
|
638
638
|
},
|
639
639
|
{
|
@@ -643,9 +643,9 @@ http_interactions:
|
|
643
643
|
"category_parent_name": "Health & Beauty",
|
644
644
|
"category_parent_key": 53,
|
645
645
|
"links": {
|
646
|
-
"show_category": "https://offer-
|
647
|
-
"show_parent_category": "https://offer-
|
648
|
-
"find_offers_in_this_category": "https://offer-
|
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
649
|
}
|
650
650
|
}
|
651
651
|
]
|
@@ -657,8 +657,8 @@ http_interactions:
|
|
657
657
|
"category_parent_name": null,
|
658
658
|
"category_parent_key": null,
|
659
659
|
"links": {
|
660
|
-
"show_category": "https://offer-
|
661
|
-
"find_offers_in_this_category": "https://offer-
|
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
662
|
},
|
663
663
|
"subcategories": [
|
664
664
|
{
|
@@ -668,9 +668,9 @@ http_interactions:
|
|
668
668
|
"category_parent_name": "Home & Garden",
|
669
669
|
"category_parent_key": 1039,
|
670
670
|
"links": {
|
671
|
-
"show_category": "https://offer-
|
672
|
-
"show_parent_category": "https://offer-
|
673
|
-
"find_offers_in_this_category": "https://offer-
|
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
674
|
}
|
675
675
|
},
|
676
676
|
{
|
@@ -680,9 +680,9 @@ http_interactions:
|
|
680
680
|
"category_parent_name": "Home & Garden",
|
681
681
|
"category_parent_key": 1039,
|
682
682
|
"links": {
|
683
|
-
"show_category": "https://offer-
|
684
|
-
"show_parent_category": "https://offer-
|
685
|
-
"find_offers_in_this_category": "https://offer-
|
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
686
|
}
|
687
687
|
},
|
688
688
|
{
|
@@ -692,9 +692,9 @@ http_interactions:
|
|
692
692
|
"category_parent_name": "Home & Garden",
|
693
693
|
"category_parent_key": 1039,
|
694
694
|
"links": {
|
695
|
-
"show_category": "https://offer-
|
696
|
-
"show_parent_category": "https://offer-
|
697
|
-
"find_offers_in_this_category": "https://offer-
|
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
698
|
}
|
699
699
|
},
|
700
700
|
{
|
@@ -704,9 +704,9 @@ http_interactions:
|
|
704
704
|
"category_parent_name": "Home & Garden",
|
705
705
|
"category_parent_key": 1039,
|
706
706
|
"links": {
|
707
|
-
"show_category": "https://offer-
|
708
|
-
"show_parent_category": "https://offer-
|
709
|
-
"find_offers_in_this_category": "https://offer-
|
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
710
|
}
|
711
711
|
},
|
712
712
|
{
|
@@ -716,9 +716,9 @@ http_interactions:
|
|
716
716
|
"category_parent_name": "Home & Garden",
|
717
717
|
"category_parent_key": 1039,
|
718
718
|
"links": {
|
719
|
-
"show_category": "https://offer-
|
720
|
-
"show_parent_category": "https://offer-
|
721
|
-
"find_offers_in_this_category": "https://offer-
|
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
722
|
}
|
723
723
|
},
|
724
724
|
{
|
@@ -728,9 +728,9 @@ http_interactions:
|
|
728
728
|
"category_parent_name": "Home & Garden",
|
729
729
|
"category_parent_key": 1039,
|
730
730
|
"links": {
|
731
|
-
"show_category": "https://offer-
|
732
|
-
"show_parent_category": "https://offer-
|
733
|
-
"find_offers_in_this_category": "https://offer-
|
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
734
|
}
|
735
735
|
},
|
736
736
|
{
|
@@ -740,9 +740,9 @@ http_interactions:
|
|
740
740
|
"category_parent_name": "Home & Garden",
|
741
741
|
"category_parent_key": 1039,
|
742
742
|
"links": {
|
743
|
-
"show_category": "https://offer-
|
744
|
-
"show_parent_category": "https://offer-
|
745
|
-
"find_offers_in_this_category": "https://offer-
|
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
746
|
}
|
747
747
|
},
|
748
748
|
{
|
@@ -752,9 +752,9 @@ http_interactions:
|
|
752
752
|
"category_parent_name": "Home & Garden",
|
753
753
|
"category_parent_key": 1039,
|
754
754
|
"links": {
|
755
|
-
"show_category": "https://offer-
|
756
|
-
"show_parent_category": "https://offer-
|
757
|
-
"find_offers_in_this_category": "https://offer-
|
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
758
|
}
|
759
759
|
},
|
760
760
|
{
|
@@ -764,9 +764,9 @@ http_interactions:
|
|
764
764
|
"category_parent_name": "Home & Garden",
|
765
765
|
"category_parent_key": 1039,
|
766
766
|
"links": {
|
767
|
-
"show_category": "https://offer-
|
768
|
-
"show_parent_category": "https://offer-
|
769
|
-
"find_offers_in_this_category": "https://offer-
|
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
770
|
}
|
771
771
|
},
|
772
772
|
{
|
@@ -776,9 +776,9 @@ http_interactions:
|
|
776
776
|
"category_parent_name": "Home & Garden",
|
777
777
|
"category_parent_key": 1039,
|
778
778
|
"links": {
|
779
|
-
"show_category": "https://offer-
|
780
|
-
"show_parent_category": "https://offer-
|
781
|
-
"find_offers_in_this_category": "https://offer-
|
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
782
|
}
|
783
783
|
},
|
784
784
|
{
|
@@ -788,9 +788,9 @@ http_interactions:
|
|
788
788
|
"category_parent_name": "Home & Garden",
|
789
789
|
"category_parent_key": 1039,
|
790
790
|
"links": {
|
791
|
-
"show_category": "https://offer-
|
792
|
-
"show_parent_category": "https://offer-
|
793
|
-
"find_offers_in_this_category": "https://offer-
|
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
794
|
}
|
795
795
|
}
|
796
796
|
]
|
@@ -802,20 +802,20 @@ http_interactions:
|
|
802
802
|
"category_parent_name": null,
|
803
803
|
"category_parent_key": null,
|
804
804
|
"links": {
|
805
|
-
"show_category": "https://offer-
|
806
|
-
"find_offers_in_this_category": "https://offer-
|
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
807
|
},
|
808
808
|
"subcategories": [
|
809
809
|
{
|
810
|
-
"category_name": "
|
811
|
-
"category_key":
|
810
|
+
"category_name": "Hotel",
|
811
|
+
"category_key": 1052,
|
812
812
|
"category_type": "subcategory",
|
813
813
|
"category_parent_name": "Hotel",
|
814
814
|
"category_parent_key": 44,
|
815
815
|
"links": {
|
816
|
-
"show_category": "https://offer-
|
817
|
-
"show_parent_category": "https://offer-
|
818
|
-
"find_offers_in_this_category": "https://offer-
|
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
819
|
}
|
820
820
|
},
|
821
821
|
{
|
@@ -825,9 +825,9 @@ http_interactions:
|
|
825
825
|
"category_parent_name": "Hotel",
|
826
826
|
"category_parent_key": 44,
|
827
827
|
"links": {
|
828
|
-
"show_category": "https://offer-
|
829
|
-
"show_parent_category": "https://offer-
|
830
|
-
"find_offers_in_this_category": "https://offer-
|
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
831
|
}
|
832
832
|
}
|
833
833
|
]
|
@@ -839,8 +839,8 @@ http_interactions:
|
|
839
839
|
"category_parent_name": null,
|
840
840
|
"category_parent_key": null,
|
841
841
|
"links": {
|
842
|
-
"show_category": "https://offer-
|
843
|
-
"find_offers_in_this_category": "https://offer-
|
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
844
|
},
|
845
845
|
"subcategories": [
|
846
846
|
{
|
@@ -850,9 +850,9 @@ http_interactions:
|
|
850
850
|
"category_parent_name": "Movies",
|
851
851
|
"category_parent_key": 56,
|
852
852
|
"links": {
|
853
|
-
"show_category": "https://offer-
|
854
|
-
"show_parent_category": "https://offer-
|
855
|
-
"find_offers_in_this_category": "https://offer-
|
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
856
|
}
|
857
857
|
},
|
858
858
|
{
|
@@ -862,9 +862,9 @@ http_interactions:
|
|
862
862
|
"category_parent_name": "Movies",
|
863
863
|
"category_parent_key": 56,
|
864
864
|
"links": {
|
865
|
-
"show_category": "https://offer-
|
866
|
-
"show_parent_category": "https://offer-
|
867
|
-
"find_offers_in_this_category": "https://offer-
|
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
868
|
}
|
869
869
|
}
|
870
870
|
]
|
@@ -876,8 +876,8 @@ http_interactions:
|
|
876
876
|
"category_parent_name": null,
|
877
877
|
"category_parent_key": null,
|
878
878
|
"links": {
|
879
|
-
"show_category": "https://offer-
|
880
|
-
"find_offers_in_this_category": "https://offer-
|
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
881
|
},
|
882
882
|
"subcategories": [
|
883
883
|
{
|
@@ -887,9 +887,9 @@ http_interactions:
|
|
887
887
|
"category_parent_name": "Services",
|
888
888
|
"category_parent_key": 50,
|
889
889
|
"links": {
|
890
|
-
"show_category": "https://offer-
|
891
|
-
"show_parent_category": "https://offer-
|
892
|
-
"find_offers_in_this_category": "https://offer-
|
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
893
|
}
|
894
894
|
},
|
895
895
|
{
|
@@ -899,9 +899,9 @@ http_interactions:
|
|
899
899
|
"category_parent_name": "Services",
|
900
900
|
"category_parent_key": 50,
|
901
901
|
"links": {
|
902
|
-
"show_category": "https://offer-
|
903
|
-
"show_parent_category": "https://offer-
|
904
|
-
"find_offers_in_this_category": "https://offer-
|
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
905
|
}
|
906
906
|
},
|
907
907
|
{
|
@@ -911,9 +911,9 @@ http_interactions:
|
|
911
911
|
"category_parent_name": "Services",
|
912
912
|
"category_parent_key": 50,
|
913
913
|
"links": {
|
914
|
-
"show_category": "https://offer-
|
915
|
-
"show_parent_category": "https://offer-
|
916
|
-
"find_offers_in_this_category": "https://offer-
|
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
917
|
}
|
918
918
|
},
|
919
919
|
{
|
@@ -923,9 +923,9 @@ http_interactions:
|
|
923
923
|
"category_parent_name": "Services",
|
924
924
|
"category_parent_key": 50,
|
925
925
|
"links": {
|
926
|
-
"show_category": "https://offer-
|
927
|
-
"show_parent_category": "https://offer-
|
928
|
-
"find_offers_in_this_category": "https://offer-
|
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
929
|
}
|
930
930
|
},
|
931
931
|
{
|
@@ -935,33 +935,21 @@ http_interactions:
|
|
935
935
|
"category_parent_name": "Services",
|
936
936
|
"category_parent_key": 50,
|
937
937
|
"links": {
|
938
|
-
"show_category": "https://offer-
|
939
|
-
"show_parent_category": "https://offer-
|
940
|
-
"find_offers_in_this_category": "https://offer-
|
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
941
|
}
|
942
942
|
},
|
943
943
|
{
|
944
|
-
"category_name": "Dry
|
944
|
+
"category_name": "Dry Cleaning",
|
945
945
|
"category_key": 1060,
|
946
946
|
"category_type": "subcategory",
|
947
947
|
"category_parent_name": "Services",
|
948
948
|
"category_parent_key": 50,
|
949
949
|
"links": {
|
950
|
-
"show_category": "https://offer-
|
951
|
-
"show_parent_category": "https://offer-
|
952
|
-
"find_offers_in_this_category": "https://offer-
|
953
|
-
}
|
954
|
-
},
|
955
|
-
{
|
956
|
-
"category_name": "Educational",
|
957
|
-
"category_key": 1061,
|
958
|
-
"category_type": "subcategory",
|
959
|
-
"category_parent_name": "Services",
|
960
|
-
"category_parent_key": 50,
|
961
|
-
"links": {
|
962
|
-
"show_category": "https://offer-demo.adcrws.com/v1/categories/1061",
|
963
|
-
"show_parent_category": "https://offer-demo.adcrws.com/v1/categories/50",
|
964
|
-
"find_offers_in_this_category": "https://offer-demo.adcrws.com/v1/offers?category_key=1061"
|
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"
|
965
953
|
}
|
966
954
|
},
|
967
955
|
{
|
@@ -971,21 +959,9 @@ http_interactions:
|
|
971
959
|
"category_parent_name": "Services",
|
972
960
|
"category_parent_key": 50,
|
973
961
|
"links": {
|
974
|
-
"show_category": "https://offer-
|
975
|
-
"show_parent_category": "https://offer-
|
976
|
-
"find_offers_in_this_category": "https://offer-
|
977
|
-
}
|
978
|
-
},
|
979
|
-
{
|
980
|
-
"category_name": "Film Developing",
|
981
|
-
"category_key": 1062,
|
982
|
-
"category_type": "subcategory",
|
983
|
-
"category_parent_name": "Services",
|
984
|
-
"category_parent_key": 50,
|
985
|
-
"links": {
|
986
|
-
"show_category": "https://offer-demo.adcrws.com/v1/categories/1062",
|
987
|
-
"show_parent_category": "https://offer-demo.adcrws.com/v1/categories/50",
|
988
|
-
"find_offers_in_this_category": "https://offer-demo.adcrws.com/v1/offers?category_key=1062"
|
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"
|
989
965
|
}
|
990
966
|
},
|
991
967
|
{
|
@@ -995,9 +971,9 @@ http_interactions:
|
|
995
971
|
"category_parent_name": "Services",
|
996
972
|
"category_parent_key": 50,
|
997
973
|
"links": {
|
998
|
-
"show_category": "https://offer-
|
999
|
-
"show_parent_category": "https://offer-
|
1000
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1001
977
|
}
|
1002
978
|
},
|
1003
979
|
{
|
@@ -1007,9 +983,9 @@ http_interactions:
|
|
1007
983
|
"category_parent_name": "Services",
|
1008
984
|
"category_parent_key": 50,
|
1009
985
|
"links": {
|
1010
|
-
"show_category": "https://offer-
|
1011
|
-
"show_parent_category": "https://offer-
|
1012
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1013
989
|
}
|
1014
990
|
},
|
1015
991
|
{
|
@@ -1019,9 +995,9 @@ http_interactions:
|
|
1019
995
|
"category_parent_name": "Services",
|
1020
996
|
"category_parent_key": 50,
|
1021
997
|
"links": {
|
1022
|
-
"show_category": "https://offer-
|
1023
|
-
"show_parent_category": "https://offer-
|
1024
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1025
1001
|
}
|
1026
1002
|
},
|
1027
1003
|
{
|
@@ -1031,9 +1007,9 @@ http_interactions:
|
|
1031
1007
|
"category_parent_name": "Services",
|
1032
1008
|
"category_parent_key": 50,
|
1033
1009
|
"links": {
|
1034
|
-
"show_category": "https://offer-
|
1035
|
-
"show_parent_category": "https://offer-
|
1036
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1037
1013
|
}
|
1038
1014
|
},
|
1039
1015
|
{
|
@@ -1043,9 +1019,9 @@ http_interactions:
|
|
1043
1019
|
"category_parent_name": "Services",
|
1044
1020
|
"category_parent_key": 50,
|
1045
1021
|
"links": {
|
1046
|
-
"show_category": "https://offer-
|
1047
|
-
"show_parent_category": "https://offer-
|
1048
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1049
1025
|
}
|
1050
1026
|
},
|
1051
1027
|
{
|
@@ -1055,9 +1031,9 @@ http_interactions:
|
|
1055
1031
|
"category_parent_name": "Services",
|
1056
1032
|
"category_parent_key": 50,
|
1057
1033
|
"links": {
|
1058
|
-
"show_category": "https://offer-
|
1059
|
-
"show_parent_category": "https://offer-
|
1060
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1061
1037
|
}
|
1062
1038
|
},
|
1063
1039
|
{
|
@@ -1067,9 +1043,9 @@ http_interactions:
|
|
1067
1043
|
"category_parent_name": "Services",
|
1068
1044
|
"category_parent_key": 50,
|
1069
1045
|
"links": {
|
1070
|
-
"show_category": "https://offer-
|
1071
|
-
"show_parent_category": "https://offer-
|
1072
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1073
1049
|
}
|
1074
1050
|
},
|
1075
1051
|
{
|
@@ -1079,9 +1055,9 @@ http_interactions:
|
|
1079
1055
|
"category_parent_name": "Services",
|
1080
1056
|
"category_parent_key": 50,
|
1081
1057
|
"links": {
|
1082
|
-
"show_category": "https://offer-
|
1083
|
-
"show_parent_category": "https://offer-
|
1084
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1085
1061
|
}
|
1086
1062
|
},
|
1087
1063
|
{
|
@@ -1091,9 +1067,9 @@ http_interactions:
|
|
1091
1067
|
"category_parent_name": "Services",
|
1092
1068
|
"category_parent_key": 50,
|
1093
1069
|
"links": {
|
1094
|
-
"show_category": "https://offer-
|
1095
|
-
"show_parent_category": "https://offer-
|
1096
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1097
1073
|
}
|
1098
1074
|
},
|
1099
1075
|
{
|
@@ -1103,9 +1079,9 @@ http_interactions:
|
|
1103
1079
|
"category_parent_name": "Services",
|
1104
1080
|
"category_parent_key": 50,
|
1105
1081
|
"links": {
|
1106
|
-
"show_category": "https://offer-
|
1107
|
-
"show_parent_category": "https://offer-
|
1108
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1109
1085
|
}
|
1110
1086
|
},
|
1111
1087
|
{
|
@@ -1115,9 +1091,9 @@ http_interactions:
|
|
1115
1091
|
"category_parent_name": "Services",
|
1116
1092
|
"category_parent_key": 50,
|
1117
1093
|
"links": {
|
1118
|
-
"show_category": "https://offer-
|
1119
|
-
"show_parent_category": "https://offer-
|
1120
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1121
1097
|
}
|
1122
1098
|
},
|
1123
1099
|
{
|
@@ -1127,9 +1103,9 @@ http_interactions:
|
|
1127
1103
|
"category_parent_name": "Services",
|
1128
1104
|
"category_parent_key": 50,
|
1129
1105
|
"links": {
|
1130
|
-
"show_category": "https://offer-
|
1131
|
-
"show_parent_category": "https://offer-
|
1132
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1133
1109
|
}
|
1134
1110
|
}
|
1135
1111
|
]
|
@@ -1141,8 +1117,8 @@ http_interactions:
|
|
1141
1117
|
"category_parent_name": null,
|
1142
1118
|
"category_parent_key": null,
|
1143
1119
|
"links": {
|
1144
|
-
"show_category": "https://offer-
|
1145
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1146
1122
|
},
|
1147
1123
|
"subcategories": [
|
1148
1124
|
{
|
@@ -1152,9 +1128,9 @@ http_interactions:
|
|
1152
1128
|
"category_parent_name": "Shopping",
|
1153
1129
|
"category_parent_key": 45,
|
1154
1130
|
"links": {
|
1155
|
-
"show_category": "https://offer-
|
1156
|
-
"show_parent_category": "https://offer-
|
1157
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1158
1134
|
}
|
1159
1135
|
},
|
1160
1136
|
{
|
@@ -1164,9 +1140,9 @@ http_interactions:
|
|
1164
1140
|
"category_parent_name": "Shopping",
|
1165
1141
|
"category_parent_key": 45,
|
1166
1142
|
"links": {
|
1167
|
-
"show_category": "https://offer-
|
1168
|
-
"show_parent_category": "https://offer-
|
1169
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1170
1146
|
}
|
1171
1147
|
},
|
1172
1148
|
{
|
@@ -1176,9 +1152,9 @@ http_interactions:
|
|
1176
1152
|
"category_parent_name": "Shopping",
|
1177
1153
|
"category_parent_key": 45,
|
1178
1154
|
"links": {
|
1179
|
-
"show_category": "https://offer-
|
1180
|
-
"show_parent_category": "https://offer-
|
1181
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1182
1158
|
}
|
1183
1159
|
},
|
1184
1160
|
{
|
@@ -1188,9 +1164,9 @@ http_interactions:
|
|
1188
1164
|
"category_parent_name": "Shopping",
|
1189
1165
|
"category_parent_key": 45,
|
1190
1166
|
"links": {
|
1191
|
-
"show_category": "https://offer-
|
1192
|
-
"show_parent_category": "https://offer-
|
1193
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1194
1170
|
}
|
1195
1171
|
},
|
1196
1172
|
{
|
@@ -1200,9 +1176,9 @@ http_interactions:
|
|
1200
1176
|
"category_parent_name": "Shopping",
|
1201
1177
|
"category_parent_key": 45,
|
1202
1178
|
"links": {
|
1203
|
-
"show_category": "https://offer-
|
1204
|
-
"show_parent_category": "https://offer-
|
1205
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1206
1182
|
}
|
1207
1183
|
},
|
1208
1184
|
{
|
@@ -1212,9 +1188,9 @@ http_interactions:
|
|
1212
1188
|
"category_parent_name": "Shopping",
|
1213
1189
|
"category_parent_key": 45,
|
1214
1190
|
"links": {
|
1215
|
-
"show_category": "https://offer-
|
1216
|
-
"show_parent_category": "https://offer-
|
1217
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1218
1194
|
}
|
1219
1195
|
},
|
1220
1196
|
{
|
@@ -1224,9 +1200,9 @@ http_interactions:
|
|
1224
1200
|
"category_parent_name": "Shopping",
|
1225
1201
|
"category_parent_key": 45,
|
1226
1202
|
"links": {
|
1227
|
-
"show_category": "https://offer-
|
1228
|
-
"show_parent_category": "https://offer-
|
1229
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1230
1206
|
}
|
1231
1207
|
},
|
1232
1208
|
{
|
@@ -1236,9 +1212,9 @@ http_interactions:
|
|
1236
1212
|
"category_parent_name": "Shopping",
|
1237
1213
|
"category_parent_key": 45,
|
1238
1214
|
"links": {
|
1239
|
-
"show_category": "https://offer-
|
1240
|
-
"show_parent_category": "https://offer-
|
1241
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1242
1218
|
}
|
1243
1219
|
},
|
1244
1220
|
{
|
@@ -1248,9 +1224,9 @@ http_interactions:
|
|
1248
1224
|
"category_parent_name": "Shopping",
|
1249
1225
|
"category_parent_key": 45,
|
1250
1226
|
"links": {
|
1251
|
-
"show_category": "https://offer-
|
1252
|
-
"show_parent_category": "https://offer-
|
1253
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1254
1230
|
}
|
1255
1231
|
},
|
1256
1232
|
{
|
@@ -1260,9 +1236,9 @@ http_interactions:
|
|
1260
1236
|
"category_parent_name": "Shopping",
|
1261
1237
|
"category_parent_key": 45,
|
1262
1238
|
"links": {
|
1263
|
-
"show_category": "https://offer-
|
1264
|
-
"show_parent_category": "https://offer-
|
1265
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1266
1242
|
}
|
1267
1243
|
},
|
1268
1244
|
{
|
@@ -1272,9 +1248,9 @@ http_interactions:
|
|
1272
1248
|
"category_parent_name": "Shopping",
|
1273
1249
|
"category_parent_key": 45,
|
1274
1250
|
"links": {
|
1275
|
-
"show_category": "https://offer-
|
1276
|
-
"show_parent_category": "https://offer-
|
1277
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1278
1254
|
}
|
1279
1255
|
},
|
1280
1256
|
{
|
@@ -1284,9 +1260,9 @@ http_interactions:
|
|
1284
1260
|
"category_parent_name": "Shopping",
|
1285
1261
|
"category_parent_key": 45,
|
1286
1262
|
"links": {
|
1287
|
-
"show_category": "https://offer-
|
1288
|
-
"show_parent_category": "https://offer-
|
1289
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1290
1266
|
}
|
1291
1267
|
},
|
1292
1268
|
{
|
@@ -1296,9 +1272,9 @@ http_interactions:
|
|
1296
1272
|
"category_parent_name": "Shopping",
|
1297
1273
|
"category_parent_key": 45,
|
1298
1274
|
"links": {
|
1299
|
-
"show_category": "https://offer-
|
1300
|
-
"show_parent_category": "https://offer-
|
1301
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1302
1278
|
}
|
1303
1279
|
},
|
1304
1280
|
{
|
@@ -1308,9 +1284,9 @@ http_interactions:
|
|
1308
1284
|
"category_parent_name": "Shopping",
|
1309
1285
|
"category_parent_key": 45,
|
1310
1286
|
"links": {
|
1311
|
-
"show_category": "https://offer-
|
1312
|
-
"show_parent_category": "https://offer-
|
1313
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1314
1290
|
}
|
1315
1291
|
},
|
1316
1292
|
{
|
@@ -1320,9 +1296,9 @@ http_interactions:
|
|
1320
1296
|
"category_parent_name": "Shopping",
|
1321
1297
|
"category_parent_key": 45,
|
1322
1298
|
"links": {
|
1323
|
-
"show_category": "https://offer-
|
1324
|
-
"show_parent_category": "https://offer-
|
1325
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1326
1302
|
}
|
1327
1303
|
},
|
1328
1304
|
{
|
@@ -1332,9 +1308,9 @@ http_interactions:
|
|
1332
1308
|
"category_parent_name": "Shopping",
|
1333
1309
|
"category_parent_key": 45,
|
1334
1310
|
"links": {
|
1335
|
-
"show_category": "https://offer-
|
1336
|
-
"show_parent_category": "https://offer-
|
1337
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1338
1314
|
}
|
1339
1315
|
},
|
1340
1316
|
{
|
@@ -1344,9 +1320,9 @@ http_interactions:
|
|
1344
1320
|
"category_parent_name": "Shopping",
|
1345
1321
|
"category_parent_key": 45,
|
1346
1322
|
"links": {
|
1347
|
-
"show_category": "https://offer-
|
1348
|
-
"show_parent_category": "https://offer-
|
1349
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1350
1326
|
}
|
1351
1327
|
},
|
1352
1328
|
{
|
@@ -1356,9 +1332,9 @@ http_interactions:
|
|
1356
1332
|
"category_parent_name": "Shopping",
|
1357
1333
|
"category_parent_key": 45,
|
1358
1334
|
"links": {
|
1359
|
-
"show_category": "https://offer-
|
1360
|
-
"show_parent_category": "https://offer-
|
1361
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1362
1338
|
}
|
1363
1339
|
},
|
1364
1340
|
{
|
@@ -1368,9 +1344,9 @@ http_interactions:
|
|
1368
1344
|
"category_parent_name": "Shopping",
|
1369
1345
|
"category_parent_key": 45,
|
1370
1346
|
"links": {
|
1371
|
-
"show_category": "https://offer-
|
1372
|
-
"show_parent_category": "https://offer-
|
1373
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1374
1350
|
}
|
1375
1351
|
},
|
1376
1352
|
{
|
@@ -1380,9 +1356,9 @@ http_interactions:
|
|
1380
1356
|
"category_parent_name": "Shopping",
|
1381
1357
|
"category_parent_key": 45,
|
1382
1358
|
"links": {
|
1383
|
-
"show_category": "https://offer-
|
1384
|
-
"show_parent_category": "https://offer-
|
1385
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1386
1362
|
}
|
1387
1363
|
},
|
1388
1364
|
{
|
@@ -1392,9 +1368,9 @@ http_interactions:
|
|
1392
1368
|
"category_parent_name": "Shopping",
|
1393
1369
|
"category_parent_key": 45,
|
1394
1370
|
"links": {
|
1395
|
-
"show_category": "https://offer-
|
1396
|
-
"show_parent_category": "https://offer-
|
1397
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1398
1374
|
}
|
1399
1375
|
},
|
1400
1376
|
{
|
@@ -1404,9 +1380,9 @@ http_interactions:
|
|
1404
1380
|
"category_parent_name": "Shopping",
|
1405
1381
|
"category_parent_key": 45,
|
1406
1382
|
"links": {
|
1407
|
-
"show_category": "https://offer-
|
1408
|
-
"show_parent_category": "https://offer-
|
1409
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1410
1386
|
}
|
1411
1387
|
},
|
1412
1388
|
{
|
@@ -1416,9 +1392,9 @@ http_interactions:
|
|
1416
1392
|
"category_parent_name": "Shopping",
|
1417
1393
|
"category_parent_key": 45,
|
1418
1394
|
"links": {
|
1419
|
-
"show_category": "https://offer-
|
1420
|
-
"show_parent_category": "https://offer-
|
1421
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1422
1398
|
}
|
1423
1399
|
},
|
1424
1400
|
{
|
@@ -1428,9 +1404,9 @@ http_interactions:
|
|
1428
1404
|
"category_parent_name": "Shopping",
|
1429
1405
|
"category_parent_key": 45,
|
1430
1406
|
"links": {
|
1431
|
-
"show_category": "https://offer-
|
1432
|
-
"show_parent_category": "https://offer-
|
1433
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1434
1410
|
}
|
1435
1411
|
},
|
1436
1412
|
{
|
@@ -1440,9 +1416,9 @@ http_interactions:
|
|
1440
1416
|
"category_parent_name": "Shopping",
|
1441
1417
|
"category_parent_key": 45,
|
1442
1418
|
"links": {
|
1443
|
-
"show_category": "https://offer-
|
1444
|
-
"show_parent_category": "https://offer-
|
1445
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1446
1422
|
}
|
1447
1423
|
},
|
1448
1424
|
{
|
@@ -1452,9 +1428,9 @@ http_interactions:
|
|
1452
1428
|
"category_parent_name": "Shopping",
|
1453
1429
|
"category_parent_key": 45,
|
1454
1430
|
"links": {
|
1455
|
-
"show_category": "https://offer-
|
1456
|
-
"show_parent_category": "https://offer-
|
1457
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1458
1434
|
}
|
1459
1435
|
}
|
1460
1436
|
]
|
@@ -1466,8 +1442,8 @@ http_interactions:
|
|
1466
1442
|
"category_parent_name": null,
|
1467
1443
|
"category_parent_key": null,
|
1468
1444
|
"links": {
|
1469
|
-
"show_category": "https://offer-
|
1470
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1471
1447
|
},
|
1472
1448
|
"subcategories": [
|
1473
1449
|
{
|
@@ -1477,9 +1453,9 @@ http_interactions:
|
|
1477
1453
|
"category_parent_name": "Ski & Snowboard",
|
1478
1454
|
"category_parent_key": 55,
|
1479
1455
|
"links": {
|
1480
|
-
"show_category": "https://offer-
|
1481
|
-
"show_parent_category": "https://offer-
|
1482
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1483
1459
|
}
|
1484
1460
|
},
|
1485
1461
|
{
|
@@ -1489,9 +1465,9 @@ http_interactions:
|
|
1489
1465
|
"category_parent_name": "Ski & Snowboard",
|
1490
1466
|
"category_parent_key": 55,
|
1491
1467
|
"links": {
|
1492
|
-
"show_category": "https://offer-
|
1493
|
-
"show_parent_category": "https://offer-
|
1494
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1495
1471
|
}
|
1496
1472
|
},
|
1497
1473
|
{
|
@@ -1501,9 +1477,9 @@ http_interactions:
|
|
1501
1477
|
"category_parent_name": "Ski & Snowboard",
|
1502
1478
|
"category_parent_key": 55,
|
1503
1479
|
"links": {
|
1504
|
-
"show_category": "https://offer-
|
1505
|
-
"show_parent_category": "https://offer-
|
1506
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1507
1483
|
}
|
1508
1484
|
},
|
1509
1485
|
{
|
@@ -1513,9 +1489,9 @@ http_interactions:
|
|
1513
1489
|
"category_parent_name": "Ski & Snowboard",
|
1514
1490
|
"category_parent_key": 55,
|
1515
1491
|
"links": {
|
1516
|
-
"show_category": "https://offer-
|
1517
|
-
"show_parent_category": "https://offer-
|
1518
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1519
1495
|
}
|
1520
1496
|
},
|
1521
1497
|
{
|
@@ -1525,9 +1501,9 @@ http_interactions:
|
|
1525
1501
|
"category_parent_name": "Ski & Snowboard",
|
1526
1502
|
"category_parent_key": 55,
|
1527
1503
|
"links": {
|
1528
|
-
"show_category": "https://offer-
|
1529
|
-
"show_parent_category": "https://offer-
|
1530
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1531
1507
|
}
|
1532
1508
|
},
|
1533
1509
|
{
|
@@ -1537,9 +1513,9 @@ http_interactions:
|
|
1537
1513
|
"category_parent_name": "Ski & Snowboard",
|
1538
1514
|
"category_parent_key": 55,
|
1539
1515
|
"links": {
|
1540
|
-
"show_category": "https://offer-
|
1541
|
-
"show_parent_category": "https://offer-
|
1542
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1543
1519
|
}
|
1544
1520
|
}
|
1545
1521
|
]
|
@@ -1551,8 +1527,8 @@ http_interactions:
|
|
1551
1527
|
"category_parent_name": null,
|
1552
1528
|
"category_parent_key": null,
|
1553
1529
|
"links": {
|
1554
|
-
"show_category": "https://offer-
|
1555
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1556
1532
|
},
|
1557
1533
|
"subcategories": [
|
1558
1534
|
{
|
@@ -1562,9 +1538,9 @@ http_interactions:
|
|
1562
1538
|
"category_parent_name": "Travel",
|
1563
1539
|
"category_parent_key": 38,
|
1564
1540
|
"links": {
|
1565
|
-
"show_category": "https://offer-
|
1566
|
-
"show_parent_category": "https://offer-
|
1567
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1568
1544
|
}
|
1569
1545
|
},
|
1570
1546
|
{
|
@@ -1574,9 +1550,9 @@ http_interactions:
|
|
1574
1550
|
"category_parent_name": "Travel",
|
1575
1551
|
"category_parent_key": 38,
|
1576
1552
|
"links": {
|
1577
|
-
"show_category": "https://offer-
|
1578
|
-
"show_parent_category": "https://offer-
|
1579
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1580
1556
|
}
|
1581
1557
|
},
|
1582
1558
|
{
|
@@ -1586,9 +1562,9 @@ http_interactions:
|
|
1586
1562
|
"category_parent_name": "Travel",
|
1587
1563
|
"category_parent_key": 38,
|
1588
1564
|
"links": {
|
1589
|
-
"show_category": "https://offer-
|
1590
|
-
"show_parent_category": "https://offer-
|
1591
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1592
1568
|
}
|
1593
1569
|
},
|
1594
1570
|
{
|
@@ -1598,9 +1574,9 @@ http_interactions:
|
|
1598
1574
|
"category_parent_name": "Travel",
|
1599
1575
|
"category_parent_key": 38,
|
1600
1576
|
"links": {
|
1601
|
-
"show_category": "https://offer-
|
1602
|
-
"show_parent_category": "https://offer-
|
1603
|
-
"find_offers_in_this_category": "https://offer-
|
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"
|
1604
1580
|
}
|
1605
1581
|
}
|
1606
1582
|
]
|
@@ -1608,10 +1584,10 @@ http_interactions:
|
|
1608
1584
|
]
|
1609
1585
|
}
|
1610
1586
|
http_version:
|
1611
|
-
recorded_at:
|
1587
|
+
recorded_at: Mon, 22 Feb 2016 20:17:07 GMT
|
1612
1588
|
- request:
|
1613
1589
|
method: get
|
1614
|
-
uri: https://offer-
|
1590
|
+
uri: https://offer-stage.adcrws.com/v1/categories?member_key=API_RUBY_GEM_TEST
|
1615
1591
|
body:
|
1616
1592
|
encoding: US-ASCII
|
1617
1593
|
string: ''
|
@@ -1630,7 +1606,7 @@ http_interactions:
|
|
1630
1606
|
Server:
|
1631
1607
|
- nginx/1.8.0
|
1632
1608
|
Date:
|
1633
|
-
-
|
1609
|
+
- Mon, 22 Feb 2016 20:17:04 GMT
|
1634
1610
|
Content-Type:
|
1635
1611
|
- application/json
|
1636
1612
|
Transfer-Encoding:
|
@@ -1652,13 +1628,13 @@ http_interactions:
|
|
1652
1628
|
Access-Control-Max-Age:
|
1653
1629
|
- '1728000'
|
1654
1630
|
Etag:
|
1655
|
-
- '"
|
1631
|
+
- '"8bbd902aa8faedc9431caae7a3917687"'
|
1656
1632
|
Cache-Control:
|
1657
1633
|
- max-age=0, private, must-revalidate
|
1658
1634
|
X-Request-Id:
|
1659
|
-
-
|
1635
|
+
- 05c0d97d-6222-4523-bb46-752091ccce46
|
1660
1636
|
X-Runtime:
|
1661
|
-
- '0.
|
1637
|
+
- '0.132688'
|
1662
1638
|
body:
|
1663
1639
|
encoding: UTF-8
|
1664
1640
|
string: |-
|
@@ -1677,8 +1653,8 @@ http_interactions:
|
|
1677
1653
|
"category_parent_name": null,
|
1678
1654
|
"category_parent_key": null,
|
1679
1655
|
"links": {
|
1680
|
-
"show_category": "https://offer-
|
1681
|
-
"find_offers_in_this_category": "https://offer-
|
1656
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
1657
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=51"
|
1682
1658
|
},
|
1683
1659
|
"subcategories": [
|
1684
1660
|
{
|
@@ -1688,9 +1664,9 @@ http_interactions:
|
|
1688
1664
|
"category_parent_name": "Automotive",
|
1689
1665
|
"category_parent_key": 51,
|
1690
1666
|
"links": {
|
1691
|
-
"show_category": "https://offer-
|
1692
|
-
"show_parent_category": "https://offer-
|
1693
|
-
"find_offers_in_this_category": "https://offer-
|
1667
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1000",
|
1668
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
1669
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1000"
|
1694
1670
|
}
|
1695
1671
|
},
|
1696
1672
|
{
|
@@ -1700,9 +1676,9 @@ http_interactions:
|
|
1700
1676
|
"category_parent_name": "Automotive",
|
1701
1677
|
"category_parent_key": 51,
|
1702
1678
|
"links": {
|
1703
|
-
"show_category": "https://offer-
|
1704
|
-
"show_parent_category": "https://offer-
|
1705
|
-
"find_offers_in_this_category": "https://offer-
|
1679
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1001",
|
1680
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
1681
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1001"
|
1706
1682
|
}
|
1707
1683
|
},
|
1708
1684
|
{
|
@@ -1712,9 +1688,9 @@ http_interactions:
|
|
1712
1688
|
"category_parent_name": "Automotive",
|
1713
1689
|
"category_parent_key": 51,
|
1714
1690
|
"links": {
|
1715
|
-
"show_category": "https://offer-
|
1716
|
-
"show_parent_category": "https://offer-
|
1717
|
-
"find_offers_in_this_category": "https://offer-
|
1691
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1006",
|
1692
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
1693
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1006"
|
1718
1694
|
}
|
1719
1695
|
},
|
1720
1696
|
{
|
@@ -1724,9 +1700,9 @@ http_interactions:
|
|
1724
1700
|
"category_parent_name": "Automotive",
|
1725
1701
|
"category_parent_key": 51,
|
1726
1702
|
"links": {
|
1727
|
-
"show_category": "https://offer-
|
1728
|
-
"show_parent_category": "https://offer-
|
1729
|
-
"find_offers_in_this_category": "https://offer-
|
1703
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1002",
|
1704
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
1705
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1002"
|
1730
1706
|
}
|
1731
1707
|
},
|
1732
1708
|
{
|
@@ -1736,9 +1712,9 @@ http_interactions:
|
|
1736
1712
|
"category_parent_name": "Automotive",
|
1737
1713
|
"category_parent_key": 51,
|
1738
1714
|
"links": {
|
1739
|
-
"show_category": "https://offer-
|
1740
|
-
"show_parent_category": "https://offer-
|
1741
|
-
"find_offers_in_this_category": "https://offer-
|
1715
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1003",
|
1716
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
1717
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1003"
|
1742
1718
|
}
|
1743
1719
|
},
|
1744
1720
|
{
|
@@ -1748,9 +1724,9 @@ http_interactions:
|
|
1748
1724
|
"category_parent_name": "Automotive",
|
1749
1725
|
"category_parent_key": 51,
|
1750
1726
|
"links": {
|
1751
|
-
"show_category": "https://offer-
|
1752
|
-
"show_parent_category": "https://offer-
|
1753
|
-
"find_offers_in_this_category": "https://offer-
|
1727
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1004",
|
1728
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
1729
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1004"
|
1754
1730
|
}
|
1755
1731
|
},
|
1756
1732
|
{
|
@@ -1760,9 +1736,9 @@ http_interactions:
|
|
1760
1736
|
"category_parent_name": "Automotive",
|
1761
1737
|
"category_parent_key": 51,
|
1762
1738
|
"links": {
|
1763
|
-
"show_category": "https://offer-
|
1764
|
-
"show_parent_category": "https://offer-
|
1765
|
-
"find_offers_in_this_category": "https://offer-
|
1739
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1005",
|
1740
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/51",
|
1741
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1005"
|
1766
1742
|
}
|
1767
1743
|
}
|
1768
1744
|
]
|
@@ -1774,8 +1750,8 @@ http_interactions:
|
|
1774
1750
|
"category_parent_name": null,
|
1775
1751
|
"category_parent_key": null,
|
1776
1752
|
"links": {
|
1777
|
-
"show_category": "https://offer-
|
1778
|
-
"find_offers_in_this_category": "https://offer-
|
1753
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/58",
|
1754
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=58"
|
1779
1755
|
},
|
1780
1756
|
"subcategories": [
|
1781
1757
|
|
@@ -1788,8 +1764,8 @@ http_interactions:
|
|
1788
1764
|
"category_parent_name": null,
|
1789
1765
|
"category_parent_key": null,
|
1790
1766
|
"links": {
|
1791
|
-
"show_category": "https://offer-
|
1792
|
-
"find_offers_in_this_category": "https://offer-
|
1767
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/54",
|
1768
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=54"
|
1793
1769
|
},
|
1794
1770
|
"subcategories": [
|
1795
1771
|
|
@@ -1802,8 +1778,8 @@ http_interactions:
|
|
1802
1778
|
"category_parent_name": null,
|
1803
1779
|
"category_parent_key": null,
|
1804
1780
|
"links": {
|
1805
|
-
"show_category": "https://offer-
|
1806
|
-
"find_offers_in_this_category": "https://offer-
|
1781
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/60",
|
1782
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=60"
|
1807
1783
|
},
|
1808
1784
|
"subcategories": [
|
1809
1785
|
|
@@ -1816,8 +1792,8 @@ http_interactions:
|
|
1816
1792
|
"category_parent_name": null,
|
1817
1793
|
"category_parent_key": null,
|
1818
1794
|
"links": {
|
1819
|
-
"show_category": "https://offer-
|
1820
|
-
"find_offers_in_this_category": "https://offer-
|
1795
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
1796
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=39"
|
1821
1797
|
},
|
1822
1798
|
"subcategories": [
|
1823
1799
|
{
|
@@ -1827,9 +1803,9 @@ http_interactions:
|
|
1827
1803
|
"category_parent_name": "Dining & Food",
|
1828
1804
|
"category_parent_key": 39,
|
1829
1805
|
"links": {
|
1830
|
-
"show_category": "https://offer-
|
1831
|
-
"show_parent_category": "https://offer-
|
1832
|
-
"find_offers_in_this_category": "https://offer-
|
1806
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1009",
|
1807
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
1808
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1009"
|
1833
1809
|
}
|
1834
1810
|
},
|
1835
1811
|
{
|
@@ -1839,9 +1815,9 @@ http_interactions:
|
|
1839
1815
|
"category_parent_name": "Dining & Food",
|
1840
1816
|
"category_parent_key": 39,
|
1841
1817
|
"links": {
|
1842
|
-
"show_category": "https://offer-
|
1843
|
-
"show_parent_category": "https://offer-
|
1844
|
-
"find_offers_in_this_category": "https://offer-
|
1818
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1011",
|
1819
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
1820
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1011"
|
1845
1821
|
}
|
1846
1822
|
},
|
1847
1823
|
{
|
@@ -1851,9 +1827,9 @@ http_interactions:
|
|
1851
1827
|
"category_parent_name": "Dining & Food",
|
1852
1828
|
"category_parent_key": 39,
|
1853
1829
|
"links": {
|
1854
|
-
"show_category": "https://offer-
|
1855
|
-
"show_parent_category": "https://offer-
|
1856
|
-
"find_offers_in_this_category": "https://offer-
|
1830
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1012",
|
1831
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
1832
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1012"
|
1857
1833
|
}
|
1858
1834
|
},
|
1859
1835
|
{
|
@@ -1863,9 +1839,9 @@ http_interactions:
|
|
1863
1839
|
"category_parent_name": "Dining & Food",
|
1864
1840
|
"category_parent_key": 39,
|
1865
1841
|
"links": {
|
1866
|
-
"show_category": "https://offer-
|
1867
|
-
"show_parent_category": "https://offer-
|
1868
|
-
"find_offers_in_this_category": "https://offer-
|
1842
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1007",
|
1843
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
1844
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1007"
|
1869
1845
|
}
|
1870
1846
|
},
|
1871
1847
|
{
|
@@ -1875,9 +1851,9 @@ http_interactions:
|
|
1875
1851
|
"category_parent_name": "Dining & Food",
|
1876
1852
|
"category_parent_key": 39,
|
1877
1853
|
"links": {
|
1878
|
-
"show_category": "https://offer-
|
1879
|
-
"show_parent_category": "https://offer-
|
1880
|
-
"find_offers_in_this_category": "https://offer-
|
1854
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1008",
|
1855
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
1856
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1008"
|
1881
1857
|
}
|
1882
1858
|
},
|
1883
1859
|
{
|
@@ -1887,22 +1863,22 @@ http_interactions:
|
|
1887
1863
|
"category_parent_name": "Dining & Food",
|
1888
1864
|
"category_parent_key": 39,
|
1889
1865
|
"links": {
|
1890
|
-
"show_category": "https://offer-
|
1891
|
-
"show_parent_category": "https://offer-
|
1892
|
-
"find_offers_in_this_category": "https://offer-
|
1866
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1010",
|
1867
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/39",
|
1868
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1010"
|
1893
1869
|
}
|
1894
1870
|
}
|
1895
1871
|
]
|
1896
1872
|
},
|
1897
1873
|
{
|
1898
|
-
"category_name": "
|
1874
|
+
"category_name": "Educators Only",
|
1899
1875
|
"category_key": 1113,
|
1900
1876
|
"category_type": "category",
|
1901
1877
|
"category_parent_name": null,
|
1902
1878
|
"category_parent_key": null,
|
1903
1879
|
"links": {
|
1904
|
-
"show_category": "https://offer-
|
1905
|
-
"find_offers_in_this_category": "https://offer-
|
1880
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1113",
|
1881
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1113"
|
1906
1882
|
},
|
1907
1883
|
"subcategories": [
|
1908
1884
|
|
@@ -1915,8 +1891,8 @@ http_interactions:
|
|
1915
1891
|
"category_parent_name": null,
|
1916
1892
|
"category_parent_key": null,
|
1917
1893
|
"links": {
|
1918
|
-
"show_category": "https://offer-
|
1919
|
-
"find_offers_in_this_category": "https://offer-
|
1894
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
1895
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=59"
|
1920
1896
|
},
|
1921
1897
|
"subcategories": [
|
1922
1898
|
{
|
@@ -1926,9 +1902,9 @@ http_interactions:
|
|
1926
1902
|
"category_parent_name": "Entertainment & Recreation",
|
1927
1903
|
"category_parent_key": 59,
|
1928
1904
|
"links": {
|
1929
|
-
"show_category": "https://offer-
|
1930
|
-
"show_parent_category": "https://offer-
|
1931
|
-
"find_offers_in_this_category": "https://offer-
|
1905
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1018",
|
1906
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
1907
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1018"
|
1932
1908
|
}
|
1933
1909
|
},
|
1934
1910
|
{
|
@@ -1938,9 +1914,9 @@ http_interactions:
|
|
1938
1914
|
"category_parent_name": "Entertainment & Recreation",
|
1939
1915
|
"category_parent_key": 59,
|
1940
1916
|
"links": {
|
1941
|
-
"show_category": "https://offer-
|
1942
|
-
"show_parent_category": "https://offer-
|
1943
|
-
"find_offers_in_this_category": "https://offer-
|
1917
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1019",
|
1918
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
1919
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1019"
|
1944
1920
|
}
|
1945
1921
|
},
|
1946
1922
|
{
|
@@ -1950,9 +1926,9 @@ http_interactions:
|
|
1950
1926
|
"category_parent_name": "Entertainment & Recreation",
|
1951
1927
|
"category_parent_key": 59,
|
1952
1928
|
"links": {
|
1953
|
-
"show_category": "https://offer-
|
1954
|
-
"show_parent_category": "https://offer-
|
1955
|
-
"find_offers_in_this_category": "https://offer-
|
1929
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1014",
|
1930
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
1931
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1014"
|
1956
1932
|
}
|
1957
1933
|
},
|
1958
1934
|
{
|
@@ -1962,9 +1938,9 @@ http_interactions:
|
|
1962
1938
|
"category_parent_name": "Entertainment & Recreation",
|
1963
1939
|
"category_parent_key": 59,
|
1964
1940
|
"links": {
|
1965
|
-
"show_category": "https://offer-
|
1966
|
-
"show_parent_category": "https://offer-
|
1967
|
-
"find_offers_in_this_category": "https://offer-
|
1941
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1013",
|
1942
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
1943
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1013"
|
1968
1944
|
}
|
1969
1945
|
},
|
1970
1946
|
{
|
@@ -1974,9 +1950,9 @@ http_interactions:
|
|
1974
1950
|
"category_parent_name": "Entertainment & Recreation",
|
1975
1951
|
"category_parent_key": 59,
|
1976
1952
|
"links": {
|
1977
|
-
"show_category": "https://offer-
|
1978
|
-
"show_parent_category": "https://offer-
|
1979
|
-
"find_offers_in_this_category": "https://offer-
|
1953
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1015",
|
1954
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
1955
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1015"
|
1980
1956
|
}
|
1981
1957
|
},
|
1982
1958
|
{
|
@@ -1986,9 +1962,9 @@ http_interactions:
|
|
1986
1962
|
"category_parent_name": "Entertainment & Recreation",
|
1987
1963
|
"category_parent_key": 59,
|
1988
1964
|
"links": {
|
1989
|
-
"show_category": "https://offer-
|
1990
|
-
"show_parent_category": "https://offer-
|
1991
|
-
"find_offers_in_this_category": "https://offer-
|
1965
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1016",
|
1966
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
1967
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1016"
|
1992
1968
|
}
|
1993
1969
|
},
|
1994
1970
|
{
|
@@ -1998,9 +1974,9 @@ http_interactions:
|
|
1998
1974
|
"category_parent_name": "Entertainment & Recreation",
|
1999
1975
|
"category_parent_key": 59,
|
2000
1976
|
"links": {
|
2001
|
-
"show_category": "https://offer-
|
2002
|
-
"show_parent_category": "https://offer-
|
2003
|
-
"find_offers_in_this_category": "https://offer-
|
1977
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1017",
|
1978
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/59",
|
1979
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1017"
|
2004
1980
|
}
|
2005
1981
|
}
|
2006
1982
|
]
|
@@ -2012,8 +1988,8 @@ http_interactions:
|
|
2012
1988
|
"category_parent_name": null,
|
2013
1989
|
"category_parent_key": null,
|
2014
1990
|
"links": {
|
2015
|
-
"show_category": "https://offer-
|
2016
|
-
"find_offers_in_this_category": "https://offer-
|
1991
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
1992
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=48"
|
2017
1993
|
},
|
2018
1994
|
"subcategories": [
|
2019
1995
|
{
|
@@ -2023,9 +1999,9 @@ http_interactions:
|
|
2023
1999
|
"category_parent_name": "Golf",
|
2024
2000
|
"category_parent_key": 48,
|
2025
2001
|
"links": {
|
2026
|
-
"show_category": "https://offer-
|
2027
|
-
"show_parent_category": "https://offer-
|
2028
|
-
"find_offers_in_this_category": "https://offer-
|
2002
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1021",
|
2003
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
2004
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1021"
|
2029
2005
|
}
|
2030
2006
|
},
|
2031
2007
|
{
|
@@ -2035,9 +2011,9 @@ http_interactions:
|
|
2035
2011
|
"category_parent_name": "Golf",
|
2036
2012
|
"category_parent_key": 48,
|
2037
2013
|
"links": {
|
2038
|
-
"show_category": "https://offer-
|
2039
|
-
"show_parent_category": "https://offer-
|
2040
|
-
"find_offers_in_this_category": "https://offer-
|
2014
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1020",
|
2015
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
2016
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1020"
|
2041
2017
|
}
|
2042
2018
|
},
|
2043
2019
|
{
|
@@ -2047,9 +2023,9 @@ http_interactions:
|
|
2047
2023
|
"category_parent_name": "Golf",
|
2048
2024
|
"category_parent_key": 48,
|
2049
2025
|
"links": {
|
2050
|
-
"show_category": "https://offer-
|
2051
|
-
"show_parent_category": "https://offer-
|
2052
|
-
"find_offers_in_this_category": "https://offer-
|
2026
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1022",
|
2027
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
2028
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1022"
|
2053
2029
|
}
|
2054
2030
|
},
|
2055
2031
|
{
|
@@ -2059,9 +2035,9 @@ http_interactions:
|
|
2059
2035
|
"category_parent_name": "Golf",
|
2060
2036
|
"category_parent_key": 48,
|
2061
2037
|
"links": {
|
2062
|
-
"show_category": "https://offer-
|
2063
|
-
"show_parent_category": "https://offer-
|
2064
|
-
"find_offers_in_this_category": "https://offer-
|
2038
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1023",
|
2039
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
2040
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1023"
|
2065
2041
|
}
|
2066
2042
|
},
|
2067
2043
|
{
|
@@ -2071,9 +2047,9 @@ http_interactions:
|
|
2071
2047
|
"category_parent_name": "Golf",
|
2072
2048
|
"category_parent_key": 48,
|
2073
2049
|
"links": {
|
2074
|
-
"show_category": "https://offer-
|
2075
|
-
"show_parent_category": "https://offer-
|
2076
|
-
"find_offers_in_this_category": "https://offer-
|
2050
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1024",
|
2051
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/48",
|
2052
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1024"
|
2077
2053
|
}
|
2078
2054
|
}
|
2079
2055
|
]
|
@@ -2085,8 +2061,8 @@ http_interactions:
|
|
2085
2061
|
"category_parent_name": null,
|
2086
2062
|
"category_parent_key": null,
|
2087
2063
|
"links": {
|
2088
|
-
"show_category": "https://offer-
|
2089
|
-
"find_offers_in_this_category": "https://offer-
|
2064
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2065
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=53"
|
2090
2066
|
},
|
2091
2067
|
"subcategories": [
|
2092
2068
|
{
|
@@ -2096,9 +2072,9 @@ http_interactions:
|
|
2096
2072
|
"category_parent_name": "Health & Beauty",
|
2097
2073
|
"category_parent_key": 53,
|
2098
2074
|
"links": {
|
2099
|
-
"show_category": "https://offer-
|
2100
|
-
"show_parent_category": "https://offer-
|
2101
|
-
"find_offers_in_this_category": "https://offer-
|
2075
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1025",
|
2076
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2077
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1025"
|
2102
2078
|
}
|
2103
2079
|
},
|
2104
2080
|
{
|
@@ -2108,9 +2084,9 @@ http_interactions:
|
|
2108
2084
|
"category_parent_name": "Health & Beauty",
|
2109
2085
|
"category_parent_key": 53,
|
2110
2086
|
"links": {
|
2111
|
-
"show_category": "https://offer-
|
2112
|
-
"show_parent_category": "https://offer-
|
2113
|
-
"find_offers_in_this_category": "https://offer-
|
2087
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1035",
|
2088
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2089
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1035"
|
2114
2090
|
}
|
2115
2091
|
},
|
2116
2092
|
{
|
@@ -2120,9 +2096,9 @@ http_interactions:
|
|
2120
2096
|
"category_parent_name": "Health & Beauty",
|
2121
2097
|
"category_parent_key": 53,
|
2122
2098
|
"links": {
|
2123
|
-
"show_category": "https://offer-
|
2124
|
-
"show_parent_category": "https://offer-
|
2125
|
-
"find_offers_in_this_category": "https://offer-
|
2099
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1026",
|
2100
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2101
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1026"
|
2126
2102
|
}
|
2127
2103
|
},
|
2128
2104
|
{
|
@@ -2132,9 +2108,9 @@ http_interactions:
|
|
2132
2108
|
"category_parent_name": "Health & Beauty",
|
2133
2109
|
"category_parent_key": 53,
|
2134
2110
|
"links": {
|
2135
|
-
"show_category": "https://offer-
|
2136
|
-
"show_parent_category": "https://offer-
|
2137
|
-
"find_offers_in_this_category": "https://offer-
|
2111
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1027",
|
2112
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2113
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1027"
|
2138
2114
|
}
|
2139
2115
|
},
|
2140
2116
|
{
|
@@ -2144,9 +2120,9 @@ http_interactions:
|
|
2144
2120
|
"category_parent_name": "Health & Beauty",
|
2145
2121
|
"category_parent_key": 53,
|
2146
2122
|
"links": {
|
2147
|
-
"show_category": "https://offer-
|
2148
|
-
"show_parent_category": "https://offer-
|
2149
|
-
"find_offers_in_this_category": "https://offer-
|
2123
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1031",
|
2124
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2125
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1031"
|
2150
2126
|
}
|
2151
2127
|
},
|
2152
2128
|
{
|
@@ -2156,9 +2132,9 @@ http_interactions:
|
|
2156
2132
|
"category_parent_name": "Health & Beauty",
|
2157
2133
|
"category_parent_key": 53,
|
2158
2134
|
"links": {
|
2159
|
-
"show_category": "https://offer-
|
2160
|
-
"show_parent_category": "https://offer-
|
2161
|
-
"find_offers_in_this_category": "https://offer-
|
2135
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1028",
|
2136
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2137
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1028"
|
2162
2138
|
}
|
2163
2139
|
},
|
2164
2140
|
{
|
@@ -2168,9 +2144,9 @@ http_interactions:
|
|
2168
2144
|
"category_parent_name": "Health & Beauty",
|
2169
2145
|
"category_parent_key": 53,
|
2170
2146
|
"links": {
|
2171
|
-
"show_category": "https://offer-
|
2172
|
-
"show_parent_category": "https://offer-
|
2173
|
-
"find_offers_in_this_category": "https://offer-
|
2147
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1029",
|
2148
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2149
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1029"
|
2174
2150
|
}
|
2175
2151
|
},
|
2176
2152
|
{
|
@@ -2180,9 +2156,9 @@ http_interactions:
|
|
2180
2156
|
"category_parent_name": "Health & Beauty",
|
2181
2157
|
"category_parent_key": 53,
|
2182
2158
|
"links": {
|
2183
|
-
"show_category": "https://offer-
|
2184
|
-
"show_parent_category": "https://offer-
|
2185
|
-
"find_offers_in_this_category": "https://offer-
|
2159
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1030",
|
2160
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2161
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1030"
|
2186
2162
|
}
|
2187
2163
|
},
|
2188
2164
|
{
|
@@ -2192,9 +2168,9 @@ http_interactions:
|
|
2192
2168
|
"category_parent_name": "Health & Beauty",
|
2193
2169
|
"category_parent_key": 53,
|
2194
2170
|
"links": {
|
2195
|
-
"show_category": "https://offer-
|
2196
|
-
"show_parent_category": "https://offer-
|
2197
|
-
"find_offers_in_this_category": "https://offer-
|
2171
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1032",
|
2172
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2173
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1032"
|
2198
2174
|
}
|
2199
2175
|
},
|
2200
2176
|
{
|
@@ -2204,9 +2180,9 @@ http_interactions:
|
|
2204
2180
|
"category_parent_name": "Health & Beauty",
|
2205
2181
|
"category_parent_key": 53,
|
2206
2182
|
"links": {
|
2207
|
-
"show_category": "https://offer-
|
2208
|
-
"show_parent_category": "https://offer-
|
2209
|
-
"find_offers_in_this_category": "https://offer-
|
2183
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1033",
|
2184
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2185
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1033"
|
2210
2186
|
}
|
2211
2187
|
},
|
2212
2188
|
{
|
@@ -2216,9 +2192,9 @@ http_interactions:
|
|
2216
2192
|
"category_parent_name": "Health & Beauty",
|
2217
2193
|
"category_parent_key": 53,
|
2218
2194
|
"links": {
|
2219
|
-
"show_category": "https://offer-
|
2220
|
-
"show_parent_category": "https://offer-
|
2221
|
-
"find_offers_in_this_category": "https://offer-
|
2195
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1036",
|
2196
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2197
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1036"
|
2222
2198
|
}
|
2223
2199
|
},
|
2224
2200
|
{
|
@@ -2228,9 +2204,9 @@ http_interactions:
|
|
2228
2204
|
"category_parent_name": "Health & Beauty",
|
2229
2205
|
"category_parent_key": 53,
|
2230
2206
|
"links": {
|
2231
|
-
"show_category": "https://offer-
|
2232
|
-
"show_parent_category": "https://offer-
|
2233
|
-
"find_offers_in_this_category": "https://offer-
|
2207
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1034",
|
2208
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2209
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1034"
|
2234
2210
|
}
|
2235
2211
|
},
|
2236
2212
|
{
|
@@ -2240,9 +2216,9 @@ http_interactions:
|
|
2240
2216
|
"category_parent_name": "Health & Beauty",
|
2241
2217
|
"category_parent_key": 53,
|
2242
2218
|
"links": {
|
2243
|
-
"show_category": "https://offer-
|
2244
|
-
"show_parent_category": "https://offer-
|
2245
|
-
"find_offers_in_this_category": "https://offer-
|
2219
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1037",
|
2220
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2221
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1037"
|
2246
2222
|
}
|
2247
2223
|
},
|
2248
2224
|
{
|
@@ -2252,9 +2228,9 @@ http_interactions:
|
|
2252
2228
|
"category_parent_name": "Health & Beauty",
|
2253
2229
|
"category_parent_key": 53,
|
2254
2230
|
"links": {
|
2255
|
-
"show_category": "https://offer-
|
2256
|
-
"show_parent_category": "https://offer-
|
2257
|
-
"find_offers_in_this_category": "https://offer-
|
2231
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1038",
|
2232
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/53",
|
2233
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1038"
|
2258
2234
|
}
|
2259
2235
|
}
|
2260
2236
|
]
|
@@ -2266,8 +2242,8 @@ http_interactions:
|
|
2266
2242
|
"category_parent_name": null,
|
2267
2243
|
"category_parent_key": null,
|
2268
2244
|
"links": {
|
2269
|
-
"show_category": "https://offer-
|
2270
|
-
"find_offers_in_this_category": "https://offer-
|
2245
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2246
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1039"
|
2271
2247
|
},
|
2272
2248
|
"subcategories": [
|
2273
2249
|
{
|
@@ -2277,9 +2253,9 @@ http_interactions:
|
|
2277
2253
|
"category_parent_name": "Home & Garden",
|
2278
2254
|
"category_parent_key": 1039,
|
2279
2255
|
"links": {
|
2280
|
-
"show_category": "https://offer-
|
2281
|
-
"show_parent_category": "https://offer-
|
2282
|
-
"find_offers_in_this_category": "https://offer-
|
2256
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1042",
|
2257
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2258
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1042"
|
2283
2259
|
}
|
2284
2260
|
},
|
2285
2261
|
{
|
@@ -2289,9 +2265,9 @@ http_interactions:
|
|
2289
2265
|
"category_parent_name": "Home & Garden",
|
2290
2266
|
"category_parent_key": 1039,
|
2291
2267
|
"links": {
|
2292
|
-
"show_category": "https://offer-
|
2293
|
-
"show_parent_category": "https://offer-
|
2294
|
-
"find_offers_in_this_category": "https://offer-
|
2268
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1045",
|
2269
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2270
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1045"
|
2295
2271
|
}
|
2296
2272
|
},
|
2297
2273
|
{
|
@@ -2301,9 +2277,9 @@ http_interactions:
|
|
2301
2277
|
"category_parent_name": "Home & Garden",
|
2302
2278
|
"category_parent_key": 1039,
|
2303
2279
|
"links": {
|
2304
|
-
"show_category": "https://offer-
|
2305
|
-
"show_parent_category": "https://offer-
|
2306
|
-
"find_offers_in_this_category": "https://offer-
|
2280
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1043",
|
2281
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2282
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1043"
|
2307
2283
|
}
|
2308
2284
|
},
|
2309
2285
|
{
|
@@ -2313,9 +2289,9 @@ http_interactions:
|
|
2313
2289
|
"category_parent_name": "Home & Garden",
|
2314
2290
|
"category_parent_key": 1039,
|
2315
2291
|
"links": {
|
2316
|
-
"show_category": "https://offer-
|
2317
|
-
"show_parent_category": "https://offer-
|
2318
|
-
"find_offers_in_this_category": "https://offer-
|
2292
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1050",
|
2293
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2294
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1050"
|
2319
2295
|
}
|
2320
2296
|
},
|
2321
2297
|
{
|
@@ -2325,9 +2301,9 @@ http_interactions:
|
|
2325
2301
|
"category_parent_name": "Home & Garden",
|
2326
2302
|
"category_parent_key": 1039,
|
2327
2303
|
"links": {
|
2328
|
-
"show_category": "https://offer-
|
2329
|
-
"show_parent_category": "https://offer-
|
2330
|
-
"find_offers_in_this_category": "https://offer-
|
2304
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1049",
|
2305
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2306
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1049"
|
2331
2307
|
}
|
2332
2308
|
},
|
2333
2309
|
{
|
@@ -2337,9 +2313,9 @@ http_interactions:
|
|
2337
2313
|
"category_parent_name": "Home & Garden",
|
2338
2314
|
"category_parent_key": 1039,
|
2339
2315
|
"links": {
|
2340
|
-
"show_category": "https://offer-
|
2341
|
-
"show_parent_category": "https://offer-
|
2342
|
-
"find_offers_in_this_category": "https://offer-
|
2316
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1044",
|
2317
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2318
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1044"
|
2343
2319
|
}
|
2344
2320
|
},
|
2345
2321
|
{
|
@@ -2349,9 +2325,9 @@ http_interactions:
|
|
2349
2325
|
"category_parent_name": "Home & Garden",
|
2350
2326
|
"category_parent_key": 1039,
|
2351
2327
|
"links": {
|
2352
|
-
"show_category": "https://offer-
|
2353
|
-
"show_parent_category": "https://offer-
|
2354
|
-
"find_offers_in_this_category": "https://offer-
|
2328
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1048",
|
2329
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2330
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1048"
|
2355
2331
|
}
|
2356
2332
|
},
|
2357
2333
|
{
|
@@ -2361,9 +2337,9 @@ http_interactions:
|
|
2361
2337
|
"category_parent_name": "Home & Garden",
|
2362
2338
|
"category_parent_key": 1039,
|
2363
2339
|
"links": {
|
2364
|
-
"show_category": "https://offer-
|
2365
|
-
"show_parent_category": "https://offer-
|
2366
|
-
"find_offers_in_this_category": "https://offer-
|
2340
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1047",
|
2341
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2342
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1047"
|
2367
2343
|
}
|
2368
2344
|
},
|
2369
2345
|
{
|
@@ -2373,9 +2349,9 @@ http_interactions:
|
|
2373
2349
|
"category_parent_name": "Home & Garden",
|
2374
2350
|
"category_parent_key": 1039,
|
2375
2351
|
"links": {
|
2376
|
-
"show_category": "https://offer-
|
2377
|
-
"show_parent_category": "https://offer-
|
2378
|
-
"find_offers_in_this_category": "https://offer-
|
2352
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1041",
|
2353
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2354
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1041"
|
2379
2355
|
}
|
2380
2356
|
},
|
2381
2357
|
{
|
@@ -2385,9 +2361,9 @@ http_interactions:
|
|
2385
2361
|
"category_parent_name": "Home & Garden",
|
2386
2362
|
"category_parent_key": 1039,
|
2387
2363
|
"links": {
|
2388
|
-
"show_category": "https://offer-
|
2389
|
-
"show_parent_category": "https://offer-
|
2390
|
-
"find_offers_in_this_category": "https://offer-
|
2364
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1046",
|
2365
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2366
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1046"
|
2391
2367
|
}
|
2392
2368
|
},
|
2393
2369
|
{
|
@@ -2397,9 +2373,9 @@ http_interactions:
|
|
2397
2373
|
"category_parent_name": "Home & Garden",
|
2398
2374
|
"category_parent_key": 1039,
|
2399
2375
|
"links": {
|
2400
|
-
"show_category": "https://offer-
|
2401
|
-
"show_parent_category": "https://offer-
|
2402
|
-
"find_offers_in_this_category": "https://offer-
|
2376
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1040",
|
2377
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/1039",
|
2378
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1040"
|
2403
2379
|
}
|
2404
2380
|
}
|
2405
2381
|
]
|
@@ -2411,20 +2387,20 @@ http_interactions:
|
|
2411
2387
|
"category_parent_name": null,
|
2412
2388
|
"category_parent_key": null,
|
2413
2389
|
"links": {
|
2414
|
-
"show_category": "https://offer-
|
2415
|
-
"find_offers_in_this_category": "https://offer-
|
2390
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/44",
|
2391
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=44"
|
2416
2392
|
},
|
2417
2393
|
"subcategories": [
|
2418
2394
|
{
|
2419
|
-
"category_name": "
|
2420
|
-
"category_key":
|
2395
|
+
"category_name": "Hotel",
|
2396
|
+
"category_key": 1052,
|
2421
2397
|
"category_type": "subcategory",
|
2422
2398
|
"category_parent_name": "Hotel",
|
2423
2399
|
"category_parent_key": 44,
|
2424
2400
|
"links": {
|
2425
|
-
"show_category": "https://offer-
|
2426
|
-
"show_parent_category": "https://offer-
|
2427
|
-
"find_offers_in_this_category": "https://offer-
|
2401
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1052",
|
2402
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/44",
|
2403
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1052"
|
2428
2404
|
}
|
2429
2405
|
},
|
2430
2406
|
{
|
@@ -2434,9 +2410,9 @@ http_interactions:
|
|
2434
2410
|
"category_parent_name": "Hotel",
|
2435
2411
|
"category_parent_key": 44,
|
2436
2412
|
"links": {
|
2437
|
-
"show_category": "https://offer-
|
2438
|
-
"show_parent_category": "https://offer-
|
2439
|
-
"find_offers_in_this_category": "https://offer-
|
2413
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1053",
|
2414
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/44",
|
2415
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1053"
|
2440
2416
|
}
|
2441
2417
|
}
|
2442
2418
|
]
|
@@ -2448,8 +2424,8 @@ http_interactions:
|
|
2448
2424
|
"category_parent_name": null,
|
2449
2425
|
"category_parent_key": null,
|
2450
2426
|
"links": {
|
2451
|
-
"show_category": "https://offer-
|
2452
|
-
"find_offers_in_this_category": "https://offer-
|
2427
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/56",
|
2428
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=56"
|
2453
2429
|
},
|
2454
2430
|
"subcategories": [
|
2455
2431
|
{
|
@@ -2459,9 +2435,9 @@ http_interactions:
|
|
2459
2435
|
"category_parent_name": "Movies",
|
2460
2436
|
"category_parent_key": 56,
|
2461
2437
|
"links": {
|
2462
|
-
"show_category": "https://offer-
|
2463
|
-
"show_parent_category": "https://offer-
|
2464
|
-
"find_offers_in_this_category": "https://offer-
|
2438
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1054",
|
2439
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/56",
|
2440
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1054"
|
2465
2441
|
}
|
2466
2442
|
},
|
2467
2443
|
{
|
@@ -2471,9 +2447,9 @@ http_interactions:
|
|
2471
2447
|
"category_parent_name": "Movies",
|
2472
2448
|
"category_parent_key": 56,
|
2473
2449
|
"links": {
|
2474
|
-
"show_category": "https://offer-
|
2475
|
-
"show_parent_category": "https://offer-
|
2476
|
-
"find_offers_in_this_category": "https://offer-
|
2450
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1055",
|
2451
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/56",
|
2452
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1055"
|
2477
2453
|
}
|
2478
2454
|
}
|
2479
2455
|
]
|
@@ -2485,8 +2461,8 @@ http_interactions:
|
|
2485
2461
|
"category_parent_name": null,
|
2486
2462
|
"category_parent_key": null,
|
2487
2463
|
"links": {
|
2488
|
-
"show_category": "https://offer-
|
2489
|
-
"find_offers_in_this_category": "https://offer-
|
2464
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2465
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=50"
|
2490
2466
|
},
|
2491
2467
|
"subcategories": [
|
2492
2468
|
{
|
@@ -2496,9 +2472,9 @@ http_interactions:
|
|
2496
2472
|
"category_parent_name": "Services",
|
2497
2473
|
"category_parent_key": 50,
|
2498
2474
|
"links": {
|
2499
|
-
"show_category": "https://offer-
|
2500
|
-
"show_parent_category": "https://offer-
|
2501
|
-
"find_offers_in_this_category": "https://offer-
|
2475
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1056",
|
2476
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2477
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1056"
|
2502
2478
|
}
|
2503
2479
|
},
|
2504
2480
|
{
|
@@ -2508,9 +2484,9 @@ http_interactions:
|
|
2508
2484
|
"category_parent_name": "Services",
|
2509
2485
|
"category_parent_key": 50,
|
2510
2486
|
"links": {
|
2511
|
-
"show_category": "https://offer-
|
2512
|
-
"show_parent_category": "https://offer-
|
2513
|
-
"find_offers_in_this_category": "https://offer-
|
2487
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1075",
|
2488
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2489
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1075"
|
2514
2490
|
}
|
2515
2491
|
},
|
2516
2492
|
{
|
@@ -2520,9 +2496,9 @@ http_interactions:
|
|
2520
2496
|
"category_parent_name": "Services",
|
2521
2497
|
"category_parent_key": 50,
|
2522
2498
|
"links": {
|
2523
|
-
"show_category": "https://offer-
|
2524
|
-
"show_parent_category": "https://offer-
|
2525
|
-
"find_offers_in_this_category": "https://offer-
|
2499
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1057",
|
2500
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2501
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1057"
|
2526
2502
|
}
|
2527
2503
|
},
|
2528
2504
|
{
|
@@ -2532,9 +2508,9 @@ http_interactions:
|
|
2532
2508
|
"category_parent_name": "Services",
|
2533
2509
|
"category_parent_key": 50,
|
2534
2510
|
"links": {
|
2535
|
-
"show_category": "https://offer-
|
2536
|
-
"show_parent_category": "https://offer-
|
2537
|
-
"find_offers_in_this_category": "https://offer-
|
2511
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1058",
|
2512
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2513
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1058"
|
2538
2514
|
}
|
2539
2515
|
},
|
2540
2516
|
{
|
@@ -2544,33 +2520,21 @@ http_interactions:
|
|
2544
2520
|
"category_parent_name": "Services",
|
2545
2521
|
"category_parent_key": 50,
|
2546
2522
|
"links": {
|
2547
|
-
"show_category": "https://offer-
|
2548
|
-
"show_parent_category": "https://offer-
|
2549
|
-
"find_offers_in_this_category": "https://offer-
|
2523
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1059",
|
2524
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2525
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1059"
|
2550
2526
|
}
|
2551
2527
|
},
|
2552
2528
|
{
|
2553
|
-
"category_name": "Dry
|
2529
|
+
"category_name": "Dry Cleaning",
|
2554
2530
|
"category_key": 1060,
|
2555
2531
|
"category_type": "subcategory",
|
2556
2532
|
"category_parent_name": "Services",
|
2557
2533
|
"category_parent_key": 50,
|
2558
2534
|
"links": {
|
2559
|
-
"show_category": "https://offer-
|
2560
|
-
"show_parent_category": "https://offer-
|
2561
|
-
"find_offers_in_this_category": "https://offer-
|
2562
|
-
}
|
2563
|
-
},
|
2564
|
-
{
|
2565
|
-
"category_name": "Educational",
|
2566
|
-
"category_key": 1061,
|
2567
|
-
"category_type": "subcategory",
|
2568
|
-
"category_parent_name": "Services",
|
2569
|
-
"category_parent_key": 50,
|
2570
|
-
"links": {
|
2571
|
-
"show_category": "https://offer-demo.adcrws.com/v1/categories/1061",
|
2572
|
-
"show_parent_category": "https://offer-demo.adcrws.com/v1/categories/50",
|
2573
|
-
"find_offers_in_this_category": "https://offer-demo.adcrws.com/v1/offers?category_key=1061"
|
2535
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1060",
|
2536
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2537
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1060"
|
2574
2538
|
}
|
2575
2539
|
},
|
2576
2540
|
{
|
@@ -2580,21 +2544,9 @@ http_interactions:
|
|
2580
2544
|
"category_parent_name": "Services",
|
2581
2545
|
"category_parent_key": 50,
|
2582
2546
|
"links": {
|
2583
|
-
"show_category": "https://offer-
|
2584
|
-
"show_parent_category": "https://offer-
|
2585
|
-
"find_offers_in_this_category": "https://offer-
|
2586
|
-
}
|
2587
|
-
},
|
2588
|
-
{
|
2589
|
-
"category_name": "Film Developing",
|
2590
|
-
"category_key": 1062,
|
2591
|
-
"category_type": "subcategory",
|
2592
|
-
"category_parent_name": "Services",
|
2593
|
-
"category_parent_key": 50,
|
2594
|
-
"links": {
|
2595
|
-
"show_category": "https://offer-demo.adcrws.com/v1/categories/1062",
|
2596
|
-
"show_parent_category": "https://offer-demo.adcrws.com/v1/categories/50",
|
2597
|
-
"find_offers_in_this_category": "https://offer-demo.adcrws.com/v1/offers?category_key=1062"
|
2547
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1067",
|
2548
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2549
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1067"
|
2598
2550
|
}
|
2599
2551
|
},
|
2600
2552
|
{
|
@@ -2604,9 +2556,9 @@ http_interactions:
|
|
2604
2556
|
"category_parent_name": "Services",
|
2605
2557
|
"category_parent_key": 50,
|
2606
2558
|
"links": {
|
2607
|
-
"show_category": "https://offer-
|
2608
|
-
"show_parent_category": "https://offer-
|
2609
|
-
"find_offers_in_this_category": "https://offer-
|
2559
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1063",
|
2560
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2561
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1063"
|
2610
2562
|
}
|
2611
2563
|
},
|
2612
2564
|
{
|
@@ -2616,9 +2568,9 @@ http_interactions:
|
|
2616
2568
|
"category_parent_name": "Services",
|
2617
2569
|
"category_parent_key": 50,
|
2618
2570
|
"links": {
|
2619
|
-
"show_category": "https://offer-
|
2620
|
-
"show_parent_category": "https://offer-
|
2621
|
-
"find_offers_in_this_category": "https://offer-
|
2571
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1064",
|
2572
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2573
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1064"
|
2622
2574
|
}
|
2623
2575
|
},
|
2624
2576
|
{
|
@@ -2628,9 +2580,9 @@ http_interactions:
|
|
2628
2580
|
"category_parent_name": "Services",
|
2629
2581
|
"category_parent_key": 50,
|
2630
2582
|
"links": {
|
2631
|
-
"show_category": "https://offer-
|
2632
|
-
"show_parent_category": "https://offer-
|
2633
|
-
"find_offers_in_this_category": "https://offer-
|
2583
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1065",
|
2584
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2585
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1065"
|
2634
2586
|
}
|
2635
2587
|
},
|
2636
2588
|
{
|
@@ -2640,9 +2592,9 @@ http_interactions:
|
|
2640
2592
|
"category_parent_name": "Services",
|
2641
2593
|
"category_parent_key": 50,
|
2642
2594
|
"links": {
|
2643
|
-
"show_category": "https://offer-
|
2644
|
-
"show_parent_category": "https://offer-
|
2645
|
-
"find_offers_in_this_category": "https://offer-
|
2595
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1066",
|
2596
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2597
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1066"
|
2646
2598
|
}
|
2647
2599
|
},
|
2648
2600
|
{
|
@@ -2652,9 +2604,9 @@ http_interactions:
|
|
2652
2604
|
"category_parent_name": "Services",
|
2653
2605
|
"category_parent_key": 50,
|
2654
2606
|
"links": {
|
2655
|
-
"show_category": "https://offer-
|
2656
|
-
"show_parent_category": "https://offer-
|
2657
|
-
"find_offers_in_this_category": "https://offer-
|
2607
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1068",
|
2608
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2609
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1068"
|
2658
2610
|
}
|
2659
2611
|
},
|
2660
2612
|
{
|
@@ -2664,9 +2616,9 @@ http_interactions:
|
|
2664
2616
|
"category_parent_name": "Services",
|
2665
2617
|
"category_parent_key": 50,
|
2666
2618
|
"links": {
|
2667
|
-
"show_category": "https://offer-
|
2668
|
-
"show_parent_category": "https://offer-
|
2669
|
-
"find_offers_in_this_category": "https://offer-
|
2619
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1069",
|
2620
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2621
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1069"
|
2670
2622
|
}
|
2671
2623
|
},
|
2672
2624
|
{
|
@@ -2676,9 +2628,9 @@ http_interactions:
|
|
2676
2628
|
"category_parent_name": "Services",
|
2677
2629
|
"category_parent_key": 50,
|
2678
2630
|
"links": {
|
2679
|
-
"show_category": "https://offer-
|
2680
|
-
"show_parent_category": "https://offer-
|
2681
|
-
"find_offers_in_this_category": "https://offer-
|
2631
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1076",
|
2632
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2633
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1076"
|
2682
2634
|
}
|
2683
2635
|
},
|
2684
2636
|
{
|
@@ -2688,9 +2640,9 @@ http_interactions:
|
|
2688
2640
|
"category_parent_name": "Services",
|
2689
2641
|
"category_parent_key": 50,
|
2690
2642
|
"links": {
|
2691
|
-
"show_category": "https://offer-
|
2692
|
-
"show_parent_category": "https://offer-
|
2693
|
-
"find_offers_in_this_category": "https://offer-
|
2643
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1070",
|
2644
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2645
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1070"
|
2694
2646
|
}
|
2695
2647
|
},
|
2696
2648
|
{
|
@@ -2700,9 +2652,9 @@ http_interactions:
|
|
2700
2652
|
"category_parent_name": "Services",
|
2701
2653
|
"category_parent_key": 50,
|
2702
2654
|
"links": {
|
2703
|
-
"show_category": "https://offer-
|
2704
|
-
"show_parent_category": "https://offer-
|
2705
|
-
"find_offers_in_this_category": "https://offer-
|
2655
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1071",
|
2656
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2657
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1071"
|
2706
2658
|
}
|
2707
2659
|
},
|
2708
2660
|
{
|
@@ -2712,9 +2664,9 @@ http_interactions:
|
|
2712
2664
|
"category_parent_name": "Services",
|
2713
2665
|
"category_parent_key": 50,
|
2714
2666
|
"links": {
|
2715
|
-
"show_category": "https://offer-
|
2716
|
-
"show_parent_category": "https://offer-
|
2717
|
-
"find_offers_in_this_category": "https://offer-
|
2667
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1072",
|
2668
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2669
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1072"
|
2718
2670
|
}
|
2719
2671
|
},
|
2720
2672
|
{
|
@@ -2724,9 +2676,9 @@ http_interactions:
|
|
2724
2676
|
"category_parent_name": "Services",
|
2725
2677
|
"category_parent_key": 50,
|
2726
2678
|
"links": {
|
2727
|
-
"show_category": "https://offer-
|
2728
|
-
"show_parent_category": "https://offer-
|
2729
|
-
"find_offers_in_this_category": "https://offer-
|
2679
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1073",
|
2680
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2681
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1073"
|
2730
2682
|
}
|
2731
2683
|
},
|
2732
2684
|
{
|
@@ -2736,9 +2688,9 @@ http_interactions:
|
|
2736
2688
|
"category_parent_name": "Services",
|
2737
2689
|
"category_parent_key": 50,
|
2738
2690
|
"links": {
|
2739
|
-
"show_category": "https://offer-
|
2740
|
-
"show_parent_category": "https://offer-
|
2741
|
-
"find_offers_in_this_category": "https://offer-
|
2691
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1074",
|
2692
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/50",
|
2693
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1074"
|
2742
2694
|
}
|
2743
2695
|
}
|
2744
2696
|
]
|
@@ -2750,8 +2702,8 @@ http_interactions:
|
|
2750
2702
|
"category_parent_name": null,
|
2751
2703
|
"category_parent_key": null,
|
2752
2704
|
"links": {
|
2753
|
-
"show_category": "https://offer-
|
2754
|
-
"find_offers_in_this_category": "https://offer-
|
2705
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2706
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=45"
|
2755
2707
|
},
|
2756
2708
|
"subcategories": [
|
2757
2709
|
{
|
@@ -2761,9 +2713,9 @@ http_interactions:
|
|
2761
2713
|
"category_parent_name": "Shopping",
|
2762
2714
|
"category_parent_key": 45,
|
2763
2715
|
"links": {
|
2764
|
-
"show_category": "https://offer-
|
2765
|
-
"show_parent_category": "https://offer-
|
2766
|
-
"find_offers_in_this_category": "https://offer-
|
2716
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1077",
|
2717
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2718
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1077"
|
2767
2719
|
}
|
2768
2720
|
},
|
2769
2721
|
{
|
@@ -2773,9 +2725,9 @@ http_interactions:
|
|
2773
2725
|
"category_parent_name": "Shopping",
|
2774
2726
|
"category_parent_key": 45,
|
2775
2727
|
"links": {
|
2776
|
-
"show_category": "https://offer-
|
2777
|
-
"show_parent_category": "https://offer-
|
2778
|
-
"find_offers_in_this_category": "https://offer-
|
2728
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1078",
|
2729
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2730
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1078"
|
2779
2731
|
}
|
2780
2732
|
},
|
2781
2733
|
{
|
@@ -2785,9 +2737,9 @@ http_interactions:
|
|
2785
2737
|
"category_parent_name": "Shopping",
|
2786
2738
|
"category_parent_key": 45,
|
2787
2739
|
"links": {
|
2788
|
-
"show_category": "https://offer-
|
2789
|
-
"show_parent_category": "https://offer-
|
2790
|
-
"find_offers_in_this_category": "https://offer-
|
2740
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1079",
|
2741
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2742
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1079"
|
2791
2743
|
}
|
2792
2744
|
},
|
2793
2745
|
{
|
@@ -2797,9 +2749,9 @@ http_interactions:
|
|
2797
2749
|
"category_parent_name": "Shopping",
|
2798
2750
|
"category_parent_key": 45,
|
2799
2751
|
"links": {
|
2800
|
-
"show_category": "https://offer-
|
2801
|
-
"show_parent_category": "https://offer-
|
2802
|
-
"find_offers_in_this_category": "https://offer-
|
2752
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1080",
|
2753
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2754
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1080"
|
2803
2755
|
}
|
2804
2756
|
},
|
2805
2757
|
{
|
@@ -2809,9 +2761,9 @@ http_interactions:
|
|
2809
2761
|
"category_parent_name": "Shopping",
|
2810
2762
|
"category_parent_key": 45,
|
2811
2763
|
"links": {
|
2812
|
-
"show_category": "https://offer-
|
2813
|
-
"show_parent_category": "https://offer-
|
2814
|
-
"find_offers_in_this_category": "https://offer-
|
2764
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1081",
|
2765
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2766
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1081"
|
2815
2767
|
}
|
2816
2768
|
},
|
2817
2769
|
{
|
@@ -2821,9 +2773,9 @@ http_interactions:
|
|
2821
2773
|
"category_parent_name": "Shopping",
|
2822
2774
|
"category_parent_key": 45,
|
2823
2775
|
"links": {
|
2824
|
-
"show_category": "https://offer-
|
2825
|
-
"show_parent_category": "https://offer-
|
2826
|
-
"find_offers_in_this_category": "https://offer-
|
2776
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1082",
|
2777
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2778
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1082"
|
2827
2779
|
}
|
2828
2780
|
},
|
2829
2781
|
{
|
@@ -2833,9 +2785,9 @@ http_interactions:
|
|
2833
2785
|
"category_parent_name": "Shopping",
|
2834
2786
|
"category_parent_key": 45,
|
2835
2787
|
"links": {
|
2836
|
-
"show_category": "https://offer-
|
2837
|
-
"show_parent_category": "https://offer-
|
2838
|
-
"find_offers_in_this_category": "https://offer-
|
2788
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1083",
|
2789
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2790
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1083"
|
2839
2791
|
}
|
2840
2792
|
},
|
2841
2793
|
{
|
@@ -2845,9 +2797,9 @@ http_interactions:
|
|
2845
2797
|
"category_parent_name": "Shopping",
|
2846
2798
|
"category_parent_key": 45,
|
2847
2799
|
"links": {
|
2848
|
-
"show_category": "https://offer-
|
2849
|
-
"show_parent_category": "https://offer-
|
2850
|
-
"find_offers_in_this_category": "https://offer-
|
2800
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1084",
|
2801
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2802
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1084"
|
2851
2803
|
}
|
2852
2804
|
},
|
2853
2805
|
{
|
@@ -2857,9 +2809,9 @@ http_interactions:
|
|
2857
2809
|
"category_parent_name": "Shopping",
|
2858
2810
|
"category_parent_key": 45,
|
2859
2811
|
"links": {
|
2860
|
-
"show_category": "https://offer-
|
2861
|
-
"show_parent_category": "https://offer-
|
2862
|
-
"find_offers_in_this_category": "https://offer-
|
2812
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1085",
|
2813
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2814
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1085"
|
2863
2815
|
}
|
2864
2816
|
},
|
2865
2817
|
{
|
@@ -2869,9 +2821,9 @@ http_interactions:
|
|
2869
2821
|
"category_parent_name": "Shopping",
|
2870
2822
|
"category_parent_key": 45,
|
2871
2823
|
"links": {
|
2872
|
-
"show_category": "https://offer-
|
2873
|
-
"show_parent_category": "https://offer-
|
2874
|
-
"find_offers_in_this_category": "https://offer-
|
2824
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1086",
|
2825
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2826
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1086"
|
2875
2827
|
}
|
2876
2828
|
},
|
2877
2829
|
{
|
@@ -2881,9 +2833,9 @@ http_interactions:
|
|
2881
2833
|
"category_parent_name": "Shopping",
|
2882
2834
|
"category_parent_key": 45,
|
2883
2835
|
"links": {
|
2884
|
-
"show_category": "https://offer-
|
2885
|
-
"show_parent_category": "https://offer-
|
2886
|
-
"find_offers_in_this_category": "https://offer-
|
2836
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1087",
|
2837
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2838
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1087"
|
2887
2839
|
}
|
2888
2840
|
},
|
2889
2841
|
{
|
@@ -2893,9 +2845,9 @@ http_interactions:
|
|
2893
2845
|
"category_parent_name": "Shopping",
|
2894
2846
|
"category_parent_key": 45,
|
2895
2847
|
"links": {
|
2896
|
-
"show_category": "https://offer-
|
2897
|
-
"show_parent_category": "https://offer-
|
2898
|
-
"find_offers_in_this_category": "https://offer-
|
2848
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1088",
|
2849
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2850
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1088"
|
2899
2851
|
}
|
2900
2852
|
},
|
2901
2853
|
{
|
@@ -2905,9 +2857,9 @@ http_interactions:
|
|
2905
2857
|
"category_parent_name": "Shopping",
|
2906
2858
|
"category_parent_key": 45,
|
2907
2859
|
"links": {
|
2908
|
-
"show_category": "https://offer-
|
2909
|
-
"show_parent_category": "https://offer-
|
2910
|
-
"find_offers_in_this_category": "https://offer-
|
2860
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1089",
|
2861
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2862
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1089"
|
2911
2863
|
}
|
2912
2864
|
},
|
2913
2865
|
{
|
@@ -2917,9 +2869,9 @@ http_interactions:
|
|
2917
2869
|
"category_parent_name": "Shopping",
|
2918
2870
|
"category_parent_key": 45,
|
2919
2871
|
"links": {
|
2920
|
-
"show_category": "https://offer-
|
2921
|
-
"show_parent_category": "https://offer-
|
2922
|
-
"find_offers_in_this_category": "https://offer-
|
2872
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1090",
|
2873
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2874
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1090"
|
2923
2875
|
}
|
2924
2876
|
},
|
2925
2877
|
{
|
@@ -2929,9 +2881,9 @@ http_interactions:
|
|
2929
2881
|
"category_parent_name": "Shopping",
|
2930
2882
|
"category_parent_key": 45,
|
2931
2883
|
"links": {
|
2932
|
-
"show_category": "https://offer-
|
2933
|
-
"show_parent_category": "https://offer-
|
2934
|
-
"find_offers_in_this_category": "https://offer-
|
2884
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1091",
|
2885
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2886
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1091"
|
2935
2887
|
}
|
2936
2888
|
},
|
2937
2889
|
{
|
@@ -2941,9 +2893,9 @@ http_interactions:
|
|
2941
2893
|
"category_parent_name": "Shopping",
|
2942
2894
|
"category_parent_key": 45,
|
2943
2895
|
"links": {
|
2944
|
-
"show_category": "https://offer-
|
2945
|
-
"show_parent_category": "https://offer-
|
2946
|
-
"find_offers_in_this_category": "https://offer-
|
2896
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1092",
|
2897
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2898
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1092"
|
2947
2899
|
}
|
2948
2900
|
},
|
2949
2901
|
{
|
@@ -2953,9 +2905,9 @@ http_interactions:
|
|
2953
2905
|
"category_parent_name": "Shopping",
|
2954
2906
|
"category_parent_key": 45,
|
2955
2907
|
"links": {
|
2956
|
-
"show_category": "https://offer-
|
2957
|
-
"show_parent_category": "https://offer-
|
2958
|
-
"find_offers_in_this_category": "https://offer-
|
2908
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1093",
|
2909
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2910
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1093"
|
2959
2911
|
}
|
2960
2912
|
},
|
2961
2913
|
{
|
@@ -2965,9 +2917,9 @@ http_interactions:
|
|
2965
2917
|
"category_parent_name": "Shopping",
|
2966
2918
|
"category_parent_key": 45,
|
2967
2919
|
"links": {
|
2968
|
-
"show_category": "https://offer-
|
2969
|
-
"show_parent_category": "https://offer-
|
2970
|
-
"find_offers_in_this_category": "https://offer-
|
2920
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1094",
|
2921
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2922
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1094"
|
2971
2923
|
}
|
2972
2924
|
},
|
2973
2925
|
{
|
@@ -2977,9 +2929,9 @@ http_interactions:
|
|
2977
2929
|
"category_parent_name": "Shopping",
|
2978
2930
|
"category_parent_key": 45,
|
2979
2931
|
"links": {
|
2980
|
-
"show_category": "https://offer-
|
2981
|
-
"show_parent_category": "https://offer-
|
2982
|
-
"find_offers_in_this_category": "https://offer-
|
2932
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1095",
|
2933
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2934
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1095"
|
2983
2935
|
}
|
2984
2936
|
},
|
2985
2937
|
{
|
@@ -2989,9 +2941,9 @@ http_interactions:
|
|
2989
2941
|
"category_parent_name": "Shopping",
|
2990
2942
|
"category_parent_key": 45,
|
2991
2943
|
"links": {
|
2992
|
-
"show_category": "https://offer-
|
2993
|
-
"show_parent_category": "https://offer-
|
2994
|
-
"find_offers_in_this_category": "https://offer-
|
2944
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1102",
|
2945
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2946
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1102"
|
2995
2947
|
}
|
2996
2948
|
},
|
2997
2949
|
{
|
@@ -3001,9 +2953,9 @@ http_interactions:
|
|
3001
2953
|
"category_parent_name": "Shopping",
|
3002
2954
|
"category_parent_key": 45,
|
3003
2955
|
"links": {
|
3004
|
-
"show_category": "https://offer-
|
3005
|
-
"show_parent_category": "https://offer-
|
3006
|
-
"find_offers_in_this_category": "https://offer-
|
2956
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1096",
|
2957
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2958
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1096"
|
3007
2959
|
}
|
3008
2960
|
},
|
3009
2961
|
{
|
@@ -3013,9 +2965,9 @@ http_interactions:
|
|
3013
2965
|
"category_parent_name": "Shopping",
|
3014
2966
|
"category_parent_key": 45,
|
3015
2967
|
"links": {
|
3016
|
-
"show_category": "https://offer-
|
3017
|
-
"show_parent_category": "https://offer-
|
3018
|
-
"find_offers_in_this_category": "https://offer-
|
2968
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1097",
|
2969
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2970
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1097"
|
3019
2971
|
}
|
3020
2972
|
},
|
3021
2973
|
{
|
@@ -3025,9 +2977,9 @@ http_interactions:
|
|
3025
2977
|
"category_parent_name": "Shopping",
|
3026
2978
|
"category_parent_key": 45,
|
3027
2979
|
"links": {
|
3028
|
-
"show_category": "https://offer-
|
3029
|
-
"show_parent_category": "https://offer-
|
3030
|
-
"find_offers_in_this_category": "https://offer-
|
2980
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1098",
|
2981
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2982
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1098"
|
3031
2983
|
}
|
3032
2984
|
},
|
3033
2985
|
{
|
@@ -3037,9 +2989,9 @@ http_interactions:
|
|
3037
2989
|
"category_parent_name": "Shopping",
|
3038
2990
|
"category_parent_key": 45,
|
3039
2991
|
"links": {
|
3040
|
-
"show_category": "https://offer-
|
3041
|
-
"show_parent_category": "https://offer-
|
3042
|
-
"find_offers_in_this_category": "https://offer-
|
2992
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1099",
|
2993
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
2994
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1099"
|
3043
2995
|
}
|
3044
2996
|
},
|
3045
2997
|
{
|
@@ -3049,9 +3001,9 @@ http_interactions:
|
|
3049
3001
|
"category_parent_name": "Shopping",
|
3050
3002
|
"category_parent_key": 45,
|
3051
3003
|
"links": {
|
3052
|
-
"show_category": "https://offer-
|
3053
|
-
"show_parent_category": "https://offer-
|
3054
|
-
"find_offers_in_this_category": "https://offer-
|
3004
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1100",
|
3005
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
3006
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1100"
|
3055
3007
|
}
|
3056
3008
|
},
|
3057
3009
|
{
|
@@ -3061,9 +3013,9 @@ http_interactions:
|
|
3061
3013
|
"category_parent_name": "Shopping",
|
3062
3014
|
"category_parent_key": 45,
|
3063
3015
|
"links": {
|
3064
|
-
"show_category": "https://offer-
|
3065
|
-
"show_parent_category": "https://offer-
|
3066
|
-
"find_offers_in_this_category": "https://offer-
|
3016
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1101",
|
3017
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/45",
|
3018
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1101"
|
3067
3019
|
}
|
3068
3020
|
}
|
3069
3021
|
]
|
@@ -3075,8 +3027,8 @@ http_interactions:
|
|
3075
3027
|
"category_parent_name": null,
|
3076
3028
|
"category_parent_key": null,
|
3077
3029
|
"links": {
|
3078
|
-
"show_category": "https://offer-
|
3079
|
-
"find_offers_in_this_category": "https://offer-
|
3030
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
3031
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=55"
|
3080
3032
|
},
|
3081
3033
|
"subcategories": [
|
3082
3034
|
{
|
@@ -3086,9 +3038,9 @@ http_interactions:
|
|
3086
3038
|
"category_parent_name": "Ski & Snowboard",
|
3087
3039
|
"category_parent_key": 55,
|
3088
3040
|
"links": {
|
3089
|
-
"show_category": "https://offer-
|
3090
|
-
"show_parent_category": "https://offer-
|
3091
|
-
"find_offers_in_this_category": "https://offer-
|
3041
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1106",
|
3042
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
3043
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1106"
|
3092
3044
|
}
|
3093
3045
|
},
|
3094
3046
|
{
|
@@ -3098,9 +3050,9 @@ http_interactions:
|
|
3098
3050
|
"category_parent_name": "Ski & Snowboard",
|
3099
3051
|
"category_parent_key": 55,
|
3100
3052
|
"links": {
|
3101
|
-
"show_category": "https://offer-
|
3102
|
-
"show_parent_category": "https://offer-
|
3103
|
-
"find_offers_in_this_category": "https://offer-
|
3053
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1103",
|
3054
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
3055
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1103"
|
3104
3056
|
}
|
3105
3057
|
},
|
3106
3058
|
{
|
@@ -3110,9 +3062,9 @@ http_interactions:
|
|
3110
3062
|
"category_parent_name": "Ski & Snowboard",
|
3111
3063
|
"category_parent_key": 55,
|
3112
3064
|
"links": {
|
3113
|
-
"show_category": "https://offer-
|
3114
|
-
"show_parent_category": "https://offer-
|
3115
|
-
"find_offers_in_this_category": "https://offer-
|
3065
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1105",
|
3066
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
3067
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1105"
|
3116
3068
|
}
|
3117
3069
|
},
|
3118
3070
|
{
|
@@ -3122,9 +3074,9 @@ http_interactions:
|
|
3122
3074
|
"category_parent_name": "Ski & Snowboard",
|
3123
3075
|
"category_parent_key": 55,
|
3124
3076
|
"links": {
|
3125
|
-
"show_category": "https://offer-
|
3126
|
-
"show_parent_category": "https://offer-
|
3127
|
-
"find_offers_in_this_category": "https://offer-
|
3077
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1108",
|
3078
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
3079
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1108"
|
3128
3080
|
}
|
3129
3081
|
},
|
3130
3082
|
{
|
@@ -3134,9 +3086,9 @@ http_interactions:
|
|
3134
3086
|
"category_parent_name": "Ski & Snowboard",
|
3135
3087
|
"category_parent_key": 55,
|
3136
3088
|
"links": {
|
3137
|
-
"show_category": "https://offer-
|
3138
|
-
"show_parent_category": "https://offer-
|
3139
|
-
"find_offers_in_this_category": "https://offer-
|
3089
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1107",
|
3090
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
3091
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1107"
|
3140
3092
|
}
|
3141
3093
|
},
|
3142
3094
|
{
|
@@ -3146,9 +3098,9 @@ http_interactions:
|
|
3146
3098
|
"category_parent_name": "Ski & Snowboard",
|
3147
3099
|
"category_parent_key": 55,
|
3148
3100
|
"links": {
|
3149
|
-
"show_category": "https://offer-
|
3150
|
-
"show_parent_category": "https://offer-
|
3151
|
-
"find_offers_in_this_category": "https://offer-
|
3101
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1104",
|
3102
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/55",
|
3103
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1104"
|
3152
3104
|
}
|
3153
3105
|
}
|
3154
3106
|
]
|
@@ -3160,8 +3112,8 @@ http_interactions:
|
|
3160
3112
|
"category_parent_name": null,
|
3161
3113
|
"category_parent_key": null,
|
3162
3114
|
"links": {
|
3163
|
-
"show_category": "https://offer-
|
3164
|
-
"find_offers_in_this_category": "https://offer-
|
3115
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
3116
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=38"
|
3165
3117
|
},
|
3166
3118
|
"subcategories": [
|
3167
3119
|
{
|
@@ -3171,9 +3123,9 @@ http_interactions:
|
|
3171
3123
|
"category_parent_name": "Travel",
|
3172
3124
|
"category_parent_key": 38,
|
3173
3125
|
"links": {
|
3174
|
-
"show_category": "https://offer-
|
3175
|
-
"show_parent_category": "https://offer-
|
3176
|
-
"find_offers_in_this_category": "https://offer-
|
3126
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1109",
|
3127
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
3128
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1109"
|
3177
3129
|
}
|
3178
3130
|
},
|
3179
3131
|
{
|
@@ -3183,9 +3135,9 @@ http_interactions:
|
|
3183
3135
|
"category_parent_name": "Travel",
|
3184
3136
|
"category_parent_key": 38,
|
3185
3137
|
"links": {
|
3186
|
-
"show_category": "https://offer-
|
3187
|
-
"show_parent_category": "https://offer-
|
3188
|
-
"find_offers_in_this_category": "https://offer-
|
3138
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1110",
|
3139
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
3140
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1110"
|
3189
3141
|
}
|
3190
3142
|
},
|
3191
3143
|
{
|
@@ -3195,9 +3147,9 @@ http_interactions:
|
|
3195
3147
|
"category_parent_name": "Travel",
|
3196
3148
|
"category_parent_key": 38,
|
3197
3149
|
"links": {
|
3198
|
-
"show_category": "https://offer-
|
3199
|
-
"show_parent_category": "https://offer-
|
3200
|
-
"find_offers_in_this_category": "https://offer-
|
3150
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1111",
|
3151
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
3152
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1111"
|
3201
3153
|
}
|
3202
3154
|
},
|
3203
3155
|
{
|
@@ -3207,9 +3159,9 @@ http_interactions:
|
|
3207
3159
|
"category_parent_name": "Travel",
|
3208
3160
|
"category_parent_key": 38,
|
3209
3161
|
"links": {
|
3210
|
-
"show_category": "https://offer-
|
3211
|
-
"show_parent_category": "https://offer-
|
3212
|
-
"find_offers_in_this_category": "https://offer-
|
3162
|
+
"show_category": "https://offer-stage.adcrws.com/v1/categories/1112",
|
3163
|
+
"show_parent_category": "https://offer-stage.adcrws.com/v1/categories/38",
|
3164
|
+
"find_offers_in_this_category": "https://offer-stage.adcrws.com/v1/offers?category_key=1112"
|
3213
3165
|
}
|
3214
3166
|
}
|
3215
3167
|
]
|
@@ -3217,5 +3169,5 @@ http_interactions:
|
|
3217
3169
|
]
|
3218
3170
|
}
|
3219
3171
|
http_version:
|
3220
|
-
recorded_at:
|
3221
|
-
recorded_with: VCR 3.0.
|
3172
|
+
recorded_at: Mon, 22 Feb 2016 20:17:07 GMT
|
3173
|
+
recorded_with: VCR 3.0.1
|