ecwid_api 0.0.2 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +8 -0
  3. data/Gemfile +2 -0
  4. data/README.md +228 -144
  5. data/ecwid_api.gemspec +1 -0
  6. data/lib/ecwid_api/api/base.rb +17 -0
  7. data/lib/ecwid_api/api/categories.rb +57 -0
  8. data/lib/ecwid_api/api/orders.rb +36 -0
  9. data/lib/ecwid_api/api/product_combinations.rb +51 -0
  10. data/lib/ecwid_api/api/products.rb +64 -0
  11. data/lib/ecwid_api/api.rb +31 -0
  12. data/lib/ecwid_api/category.rb +59 -4
  13. data/lib/ecwid_api/client.rb +65 -94
  14. data/lib/ecwid_api/entity.rb +138 -26
  15. data/lib/ecwid_api/error.rb +12 -2
  16. data/lib/ecwid_api/o_auth.rb +106 -0
  17. data/lib/ecwid_api/order.rb +82 -0
  18. data/lib/ecwid_api/order_item.rb +17 -0
  19. data/lib/ecwid_api/paged_ecwid_response.rb +55 -0
  20. data/lib/ecwid_api/paged_enumerator.rb +66 -0
  21. data/lib/ecwid_api/person.rb +7 -0
  22. data/lib/ecwid_api/product.rb +77 -0
  23. data/lib/ecwid_api/product_combination.rb +34 -0
  24. data/lib/ecwid_api/version.rb +1 -1
  25. data/lib/ecwid_api.rb +25 -39
  26. data/lib/ext/string.rb +12 -4
  27. data/spec/api/categories_spec.rb +31 -0
  28. data/spec/api/orders_spec.rb +30 -0
  29. data/spec/api/products_spec.rb +20 -0
  30. data/spec/category_spec.rb +33 -38
  31. data/spec/client_spec.rb +20 -48
  32. data/spec/entity_spec.rb +90 -5
  33. data/spec/fixtures/categories.json +28 -22
  34. data/spec/fixtures/order.json +162 -0
  35. data/spec/fixtures/orders.json +302 -0
  36. data/spec/fixtures/products.json +141 -0
  37. data/spec/helpers/client.rb +32 -0
  38. data/spec/oauth_spec.rb +40 -0
  39. data/spec/order_item_spec.rb +12 -0
  40. data/spec/order_spec.rb +71 -0
  41. data/spec/paged_enumerator_spec.rb +38 -0
  42. data/spec/spec_helper.rb +24 -23
  43. metadata +53 -9
  44. data/lib/ecwid_api/category_api.rb +0 -62
  45. data/spec/category_api_spec.rb +0 -36
  46. data/spec/ecwid_api_spec.rb +0 -15
  47. data/spec/helpers/faraday.rb +0 -30
@@ -1,22 +1,28 @@
1
- [
2
- {
3
- "id": 9389012,
4
- "name": "Bariatric Products",
5
- "url": "http://www.example.com#!/~/category/id=9389012",
6
- "productCount": 98
7
- },
8
- {
9
- "id": 9389013,
10
- "parentId": 9389012,
11
- "name": "Aids for Daily Living",
12
- "url": "http://www.example.com#!/~/category/id=9389013",
13
- "productCount": 72
14
- },
15
- {
16
- "id": 9389106,
17
- "parentId": 9389012,
18
- "name": "Mobility",
19
- "url": "http://www.example.com#!/~/category/id=9389106",
20
- "productCount": 12
21
- }
22
- ]
1
+ {
2
+ "total": 3,
3
+ "count": 3,
4
+ "limit": 100,
5
+ "offset": 0,
6
+ "items": [
7
+ {
8
+ "id": 9389012,
9
+ "name": "Bariatric Products",
10
+ "url": "http://www.example.com#!/~/category/id=9389012",
11
+ "productCount": 98
12
+ },
13
+ {
14
+ "id": 9389013,
15
+ "parentId": 9389012,
16
+ "name": "Aids for Daily Living",
17
+ "url": "http://www.example.com#!/~/category/id=9389013",
18
+ "productCount": 72
19
+ },
20
+ {
21
+ "id": 9389106,
22
+ "parentId": 9389012,
23
+ "name": "Mobility",
24
+ "url": "http://www.example.com#!/~/category/id=9389106",
25
+ "productCount": 12
26
+ }
27
+ ]
28
+ }
@@ -0,0 +1,162 @@
1
+ {
2
+ "vendorOrderNumber": "35",
3
+ "subtotal": 168.7,
4
+ "total": 181.35,
5
+ "email": "mbiehl@ncmedical.com",
6
+ "extTransactionId": "0",
7
+ "paymentModule": "Authorize.Net",
8
+ "paymentMethod": "Credit card",
9
+ "tax": 12.65,
10
+ "ticket": -495922403,
11
+ "ipAddress": "71.94.44.50",
12
+ "couponDiscount": 0,
13
+ "paymentStatus": "PAID",
14
+ "paymentMessage": "(TESTMODE) This transaction has been approved.",
15
+ "fulfillmentStatus": "AWAITING_PROCESSING",
16
+ "orderNumber": 35,
17
+ "refererUrl": "http://ecwid-tools.rubyex.ncmedical.com/",
18
+ "volumeDiscount": 0,
19
+ "customerId": 16497404,
20
+ "membershipBasedDiscount": 0,
21
+ "totalAndMembershipBasedDiscount": 0,
22
+ "discount": 0,
23
+ "usdTotal": 181.35,
24
+ "globalReferer": "http://ecwid-tools.rubyex.ncmedical.com/",
25
+ "createDate": "2014-11-05 12:53:30 -0800",
26
+ "updateDate": "2014-11-05 12:55:41 -0800",
27
+ "items": [
28
+ {
29
+ "id": 43440342,
30
+ "productId": 41269881,
31
+ "categoryId": 11025041,
32
+ "price": 22.95,
33
+ "productPrice": 22.95,
34
+ "sku": "NC50102",
35
+ "quantity": 2,
36
+ "shortDescription": "Economical burst-resistant balls provide versatile workouts for rehabilitation and exercise. Norco™ Exercise Balls are ...",
37
+ "tax": 3.44,
38
+ "shipping": 0,
39
+ "quantityInStock": 0,
40
+ "name": "Norco™ Exercise Balls",
41
+ "isShippingRequired": true,
42
+ "weight": 3.8335,
43
+ "trackQuantity": false,
44
+ "fixedShippingRateOnly": false,
45
+ "imageId": 250167929,
46
+ "fixedShippingRate": 0,
47
+ "digital": false,
48
+ "productAvailable": true,
49
+ "couponApplied": false,
50
+ "selectedOptions": [
51
+ {
52
+ "name": "Diameter",
53
+ "value": "65cm (25-1/2\") [Teal]",
54
+ "type": "CHOICE"
55
+ }
56
+ ],
57
+ "taxes": [
58
+ {
59
+ "name": "California Sales Tax",
60
+ "value": 7.5,
61
+ "total": 3.44
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "id": 43440343,
67
+ "productId": 41316480,
68
+ "categoryId": 11025041,
69
+ "price": 10.95,
70
+ "productPrice": 10.95,
71
+ "sku": "NC52080",
72
+ "quantity": 3,
73
+ "shortDescription": "Economical shoulder pulley that's great for home programs. The Norco™ Economy Shoulder Pulley is used to increase shou...",
74
+ "tax": 2.46,
75
+ "shipping": 0,
76
+ "quantityInStock": 0,
77
+ "name": "Norco™ Economy Shoulder Pulley",
78
+ "isShippingRequired": true,
79
+ "weight": 0.338,
80
+ "trackQuantity": false,
81
+ "fixedShippingRateOnly": false,
82
+ "imageId": 250188675,
83
+ "fixedShippingRate": 0,
84
+ "digital": false,
85
+ "productAvailable": true,
86
+ "couponApplied": false,
87
+ "taxes": [
88
+ {
89
+ "name": "California Sales Tax",
90
+ "value": 7.5,
91
+ "total": 2.46
92
+ }
93
+ ]
94
+ },
95
+ {
96
+ "id": 43440344,
97
+ "productId": 41316623,
98
+ "categoryId": 11043406,
99
+ "price": 89.95,
100
+ "productPrice": 89.95,
101
+ "sku": "NC68700",
102
+ "quantity": 1,
103
+ "shortDescription": "Double swivel board promotes dynamic balance, core strength and proprioceptive awareness.  The Infinity™ 8-Board® har...",
104
+ "tax": 6.75,
105
+ "shipping": 0,
106
+ "quantityInStock": 0,
107
+ "name": "Infinity™ 8-Board®",
108
+ "isShippingRequired": true,
109
+ "weight": 3.5,
110
+ "trackQuantity": false,
111
+ "fixedShippingRateOnly": false,
112
+ "imageId": 250167423,
113
+ "fixedShippingRate": 0,
114
+ "digital": false,
115
+ "productAvailable": true,
116
+ "couponApplied": false,
117
+ "taxes": [
118
+ {
119
+ "name": "California Sales Tax",
120
+ "value": 7.5,
121
+ "total": 6.75
122
+ }
123
+ ]
124
+ }
125
+ ],
126
+ "billingPerson": {
127
+ "name": "Mark Consumer",
128
+ "companyName": "",
129
+ "street": "15305 Sycamore Drive",
130
+ "city": "Gilroy",
131
+ "countryCode": "US",
132
+ "countryName": "United States",
133
+ "postalCode": "95037",
134
+ "stateOrProvinceCode": "CA",
135
+ "stateOrProvinceName": "California",
136
+ "phone": "831-566-2310"
137
+ },
138
+ "shippingPerson": {
139
+ "name": "Mark Consumer",
140
+ "companyName": "",
141
+ "street": "15305 Sycamore Drive",
142
+ "city": "Gilroy",
143
+ "countryCode": "US",
144
+ "countryName": "United States",
145
+ "postalCode": "95037",
146
+ "stateOrProvinceCode": "CA",
147
+ "stateOrProvinceName": "California",
148
+ "phone": "831-566-2310"
149
+ },
150
+ "shippingOption": {
151
+ "shippingMethodName": "UPS Ground",
152
+ "shippingRate": 0,
153
+ "estimatedTransitTime": "1-3"
154
+ },
155
+ "additionalInfo": {
156
+ "Authorize.Net reason code": "1"
157
+ },
158
+ "paymentParams": {},
159
+ "creditCardStatus": {
160
+ "avsMessage": "AVS not applicable for this transaction"
161
+ }
162
+ }
@@ -0,0 +1,302 @@
1
+ {
2
+ "total": 2,
3
+ "count": 2,
4
+ "offset": 0,
5
+ "limit": 100,
6
+ "items": [
7
+ {
8
+ "vendorOrderNumber": "35",
9
+ "subtotal": 168.7,
10
+ "total": 181.35,
11
+ "email": "mbiehl@ncmedical.com",
12
+ "extTransactionId": "0",
13
+ "paymentModule": "Authorize.Net",
14
+ "paymentMethod": "Credit card",
15
+ "tax": 12.65,
16
+ "ticket": -495922403,
17
+ "ipAddress": "71.94.44.50",
18
+ "couponDiscount": 0,
19
+ "paymentStatus": "PAID",
20
+ "paymentMessage": "(TESTMODE) This transaction has been approved.",
21
+ "fulfillmentStatus": "AWAITING_PROCESSING",
22
+ "orderNumber": 35,
23
+ "refererUrl": "http://ecwid-tools.rubyex.ncmedical.com/",
24
+ "volumeDiscount": 0,
25
+ "customerId": 16497404,
26
+ "membershipBasedDiscount": 0,
27
+ "totalAndMembershipBasedDiscount": 0,
28
+ "discount": 0,
29
+ "usdTotal": 181.35,
30
+ "globalReferer": "http://ecwid-tools.rubyex.ncmedical.com/",
31
+ "createDate": "2014-11-05 12:53:30 -0800",
32
+ "updateDate": "2014-11-05 12:55:41 -0800",
33
+ "items": [
34
+ {
35
+ "id": 43440342,
36
+ "productId": 41269881,
37
+ "categoryId": 11025041,
38
+ "price": 22.95,
39
+ "productPrice": 22.95,
40
+ "sku": "NC50102",
41
+ "quantity": 2,
42
+ "shortDescription": "Economical burst-resistant balls provide versatile workouts for rehabilitation and exercise. Norco™ Exercise Balls are ...",
43
+ "tax": 3.44,
44
+ "shipping": 0,
45
+ "quantityInStock": 0,
46
+ "name": "Norco™ Exercise Balls",
47
+ "isShippingRequired": true,
48
+ "weight": 3.8335,
49
+ "trackQuantity": false,
50
+ "fixedShippingRateOnly": false,
51
+ "imageId": 250167929,
52
+ "fixedShippingRate": 0,
53
+ "digital": false,
54
+ "productAvailable": true,
55
+ "couponApplied": false,
56
+ "selectedOptions": [
57
+ {
58
+ "name": "Diameter",
59
+ "value": "65cm (25-1/2\") [Teal]",
60
+ "type": "CHOICE"
61
+ }
62
+ ],
63
+ "taxes": [
64
+ {
65
+ "name": "California Sales Tax",
66
+ "value": 7.5,
67
+ "total": 3.44
68
+ }
69
+ ]
70
+ },
71
+ {
72
+ "id": 43440343,
73
+ "productId": 41316480,
74
+ "categoryId": 11025041,
75
+ "price": 10.95,
76
+ "productPrice": 10.95,
77
+ "sku": "NC52080",
78
+ "quantity": 3,
79
+ "shortDescription": "Economical shoulder pulley that's great for home programs. The Norco™ Economy Shoulder Pulley is used to increase shou...",
80
+ "tax": 2.46,
81
+ "shipping": 0,
82
+ "quantityInStock": 0,
83
+ "name": "Norco™ Economy Shoulder Pulley",
84
+ "isShippingRequired": true,
85
+ "weight": 0.338,
86
+ "trackQuantity": false,
87
+ "fixedShippingRateOnly": false,
88
+ "imageId": 250188675,
89
+ "fixedShippingRate": 0,
90
+ "digital": false,
91
+ "productAvailable": true,
92
+ "couponApplied": false,
93
+ "taxes": [
94
+ {
95
+ "name": "California Sales Tax",
96
+ "value": 7.5,
97
+ "total": 2.46
98
+ }
99
+ ]
100
+ },
101
+ {
102
+ "id": 43440344,
103
+ "productId": 41316623,
104
+ "categoryId": 11043406,
105
+ "price": 89.95,
106
+ "productPrice": 89.95,
107
+ "sku": "NC68700",
108
+ "quantity": 1,
109
+ "shortDescription": "Double swivel board promotes dynamic balance, core strength and proprioceptive awareness.  The Infinity™ 8-Board® har...",
110
+ "tax": 6.75,
111
+ "shipping": 0,
112
+ "quantityInStock": 0,
113
+ "name": "Infinity™ 8-Board®",
114
+ "isShippingRequired": true,
115
+ "weight": 3.5,
116
+ "trackQuantity": false,
117
+ "fixedShippingRateOnly": false,
118
+ "imageId": 250167423,
119
+ "fixedShippingRate": 0,
120
+ "digital": false,
121
+ "productAvailable": true,
122
+ "couponApplied": false,
123
+ "taxes": [
124
+ {
125
+ "name": "California Sales Tax",
126
+ "value": 7.5,
127
+ "total": 6.75
128
+ }
129
+ ]
130
+ }
131
+ ],
132
+ "billingPerson": {
133
+ "name": "Mark Consumer",
134
+ "companyName": "",
135
+ "street": "15305 Sycamore Drive",
136
+ "city": "Gilroy",
137
+ "countryCode": "US",
138
+ "countryName": "United States",
139
+ "postalCode": "95037",
140
+ "stateOrProvinceCode": "CA",
141
+ "stateOrProvinceName": "California",
142
+ "phone": "831-566-2310"
143
+ },
144
+ "shippingPerson": {
145
+ "name": "Mark Consumer",
146
+ "companyName": "",
147
+ "street": "15305 Sycamore Drive",
148
+ "city": "Gilroy",
149
+ "countryCode": "US",
150
+ "countryName": "United States",
151
+ "postalCode": "95037",
152
+ "stateOrProvinceCode": "CA",
153
+ "stateOrProvinceName": "California",
154
+ "phone": "831-566-2310"
155
+ },
156
+ "shippingOption": {
157
+ "shippingMethodName": "UPS Ground",
158
+ "shippingRate": 0,
159
+ "estimatedTransitTime": "1-3"
160
+ },
161
+ "additionalInfo": {
162
+ "Authorize.Net reason code": "1"
163
+ },
164
+ "paymentParams": {},
165
+ "creditCardStatus": {
166
+ "avsMessage": "AVS not applicable for this transaction"
167
+ }
168
+ },
169
+ {
170
+ "vendorOrderNumber": "32",
171
+ "subtotal": 78.9,
172
+ "total": 93.98,
173
+ "email": "dbiehl@ncmedical.com",
174
+ "extTransactionId": "0",
175
+ "paymentModule": "Authorize.Net",
176
+ "paymentMethod": "Credit card",
177
+ "tax": 5.92,
178
+ "ticket": 321086861,
179
+ "ipAddress": "71.94.44.233",
180
+ "couponDiscount": 0,
181
+ "paymentStatus": "PAID",
182
+ "paymentMessage": "(TESTMODE) This transaction has been approved.",
183
+ "fulfillmentStatus": "AWAITING_PROCESSING",
184
+ "orderNumber": 32,
185
+ "refererUrl": "https://app.myncmstore.com/",
186
+ "volumeDiscount": 0,
187
+ "membershipBasedDiscount": 0,
188
+ "totalAndMembershipBasedDiscount": 0,
189
+ "discount": 0,
190
+ "usdTotal": 93.98,
191
+ "globalReferer": "http://affiliate.myncmstore.com/affiliates/panel.php",
192
+ "createDate": "2014-07-31 04:30:19 -0700",
193
+ "updateDate": "2014-07-31 08:31:14 -0700",
194
+ "items": [
195
+ {
196
+ "id": 38681809,
197
+ "productId": 39200626,
198
+ "categoryId": 10247405,
199
+ "price": 72.95,
200
+ "productPrice": 72.95,
201
+ "sku": "NC60012",
202
+ "quantity": 1,
203
+ "shortDescription": "Fundamentals and whole body taping for infants through adolescents. By Kenzo Kase, DC, Founder of the Kinesio® Taping ...",
204
+ "tax": 5.47,
205
+ "shipping": 8.599069197795469,
206
+ "quantityInStock": 0,
207
+ "name": "Kinesio Taping in Pediatrics",
208
+ "isShippingRequired": true,
209
+ "weight": 1.533,
210
+ "trackQuantity": false,
211
+ "fixedShippingRateOnly": false,
212
+ "imageId": 237158278,
213
+ "fixedShippingRate": 0,
214
+ "digital": false,
215
+ "productAvailable": true,
216
+ "couponApplied": false,
217
+ "taxes": [
218
+ {
219
+ "name": "California Sales Tax",
220
+ "value": 7.5,
221
+ "total": 5.47
222
+ }
223
+ ]
224
+ },
225
+ {
226
+ "id": 38681810,
227
+ "productId": 39200696,
228
+ "categoryId": 10247406,
229
+ "price": 5.95,
230
+ "productPrice": 5.95,
231
+ "sku": "META-240",
232
+ "quantity": 1,
233
+ "shortDescription": "Accommodates large handles.\n\nThis expandable elastic Goodie-Strap™ fits almost any size hand. \nTwo loops accommodate va...",
234
+ "tax": 0.45,
235
+ "shipping": 0.5609308022045316,
236
+ "quantityInStock": 0,
237
+ "name": "Goodie-Strap™",
238
+ "isShippingRequired": true,
239
+ "weight": 0.1,
240
+ "trackQuantity": false,
241
+ "fixedShippingRateOnly": false,
242
+ "imageId": 237158572,
243
+ "fixedShippingRate": 0,
244
+ "digital": false,
245
+ "productAvailable": true,
246
+ "couponApplied": false,
247
+ "selectedOptions": [
248
+ {
249
+ "name": "Size",
250
+ "value": "Pediatric",
251
+ "type": "CHOICE"
252
+ }
253
+ ],
254
+ "taxes": [
255
+ {
256
+ "name": "California Sales Tax",
257
+ "value": 7.5,
258
+ "total": 0.45
259
+ }
260
+ ]
261
+ }
262
+ ],
263
+ "billingPerson": {
264
+ "name": "David Biehl",
265
+ "companyName": "",
266
+ "street": "8100 Camino Arroyo",
267
+ "city": "Gilroy",
268
+ "countryCode": "US",
269
+ "countryName": "United States",
270
+ "postalCode": "95020",
271
+ "stateOrProvinceCode": "CA",
272
+ "stateOrProvinceName": "California",
273
+ "phone": "8008219319"
274
+ },
275
+ "shippingPerson": {
276
+ "name": "David Biehl",
277
+ "companyName": "",
278
+ "street": "8100 Camino Arroyo",
279
+ "city": "Gilroy",
280
+ "countryCode": "US",
281
+ "countryName": "United States",
282
+ "postalCode": "95020",
283
+ "stateOrProvinceCode": "CA",
284
+ "stateOrProvinceName": "California",
285
+ "phone": "8008219319"
286
+ },
287
+ "shippingOption": {
288
+ "shippingCarrierName": "UPS",
289
+ "shippingMethodName": "UPS Ground",
290
+ "shippingRate": 9.16,
291
+ "estimatedTransitTime": "1"
292
+ },
293
+ "additionalInfo": {
294
+ "Authorize.Net reason code": "1"
295
+ },
296
+ "paymentParams": {},
297
+ "creditCardStatus": {
298
+ "avsMessage": "AVS not applicable for this transaction"
299
+ }
300
+ }
301
+ ]
302
+ }
@@ -0,0 +1,141 @@
1
+ {
2
+ "total": 5,
3
+ "count": 5,
4
+ "offset": 0,
5
+ "limit": 10,
6
+ "items": [
7
+ {
8
+ "id": 41316136,
9
+ "sku": "NC53090",
10
+ "smallThumbnailUrl": "http://images-cdn.ecwid.com/images/4881025/242429875.jpg",
11
+ "thumbnailUrl": "http://images-cdn.ecwid.com/images/4881025/242429874.jpg",
12
+ "imageUrl": "http://images-cdn.ecwid.com/images/4881025/245156912.jpg",
13
+ "originalImageUrl": "http://images-cdn.ecwid.com/images/4881025/245156911.jpg",
14
+ "unlimited": true,
15
+ "inStock": true,
16
+ "name": "<em>Book:</em> Therapeutic Hand Splints: A Rational Approach",
17
+ "price": 80.95,
18
+ "weight": 0.063,
19
+ "url": "http://preview.myncmstore.com#!/em-Book-em-Therapeutic-Hand-Splints-A-Rational-Approach/p/41316136",
20
+ "created": "2014-09-13 01:45:38 -0700",
21
+ "updated": "2014-10-15 09:01:31 -0700",
22
+ "productClassId": 0,
23
+ "enabled": false,
24
+ "description": "<p><em>Mechanical and biomechanical considerations of hand splinting. </em><br /> This book takes an in-depth look into the design, manufacture and application of splints for the upper limb and specifically the hand. The first section, <em>Mechanical Considerations</em>, includes immobilization and mobilization splinting, technical considerations, splinting materials and components. The second section, <em>Biomechanical Considerations</em>, addresses anatomical shape and positioning, volume control and pressure, and biokinematic and biokinetic systems. Includes numerous photographs and illustrations. Soft cover, 214 pages. Written by Paul Van Lede, MS, OT and Griet van Veldhoven, OT. Copyright 1998.</p>",
25
+ "descriptionTruncated": false,
26
+ "priceInProductList": 80.95,
27
+ "categoryIds": [],
28
+ "defaultCategoryId": 0,
29
+ "favorites": {
30
+ "count": 0,
31
+ "displayedCount": "0"
32
+ }
33
+ },
34
+ {
35
+ "id": 41316720,
36
+ "sku": "T631",
37
+ "smallThumbnailUrl": "http://images-cdn.ecwid.com/images/4881025/242433086.jpg",
38
+ "thumbnailUrl": "http://images-cdn.ecwid.com/images/4881025/242433085.jpg",
39
+ "imageUrl": "http://images-cdn.ecwid.com/images/4881025/245154405.jpg",
40
+ "originalImageUrl": "http://images-cdn.ecwid.com/images/4881025/245154403.jpg",
41
+ "unlimited": true,
42
+ "inStock": true,
43
+ "name": "SportsArt T631",
44
+ "price": 4315,
45
+ "weight": 595,
46
+ "url": "http://preview.myncmstore.com#!/SportsArt-T631/p/41316720",
47
+ "created": "2014-09-13 01:46:13 -0700",
48
+ "updated": "2014-10-15 08:58:41 -0700",
49
+ "productClassId": 0,
50
+ "enabled": false,
51
+ "description": "<p><em>4.0 hp ECO-POWR™ motor uses up to 32% less energy without compromising power. </em></p> <p><strong>Motor</strong> - 4 hp DC</p> <p><strong>Speed range</strong> - .1 to 12 mph (.16 to 19km/h)</p> <p><strong>Incline range</strong> - 0 to 15%</p> <p><strong>Deck Cushioning</strong> - 4-way reversible phenolic, My-Flex™</p> <p><strong>Display/Feedback</strong> - Dot Matrix and LEDs</p> <p><strong>Programs</strong> - 3 Interval (1:1, 1:2, 2:2), Random (x10,000), 2 Glute (30 min, and 45 min), 3 Hill, HRC Cardio, HRC Weight Loss, Quick Star, Manual/Track, Zone Trainer™, Fitness Tests (Bruce, Gerkin, WFI, Army, Marines)</p> <p><strong>Medical rails</strong> - Optional</p> <p><strong>Maximum user weight </strong>- 450 lbs. (181kg)</p> <p><strong>Unit dimensions</strong> - 83.5\" x 38.6\" x 56.3\" (212 x 98 x 143)</p> <p><strong>Unit weight </strong>- 297 lbs. (135kg)</p> <p><strong>Warranty</strong> - Lifetime frame, 5 years parts, Dedicated Power Supply</p> <p><strong>Power requirements</strong> - 120 VAC, 60 Hz, 12A, 1440W; Plug UL NEMA 5-15; Cord 14 AWG CSA-approved; Fuse 12A (6x30 mm), 100-120V, Fast blow</p> <p><strong>Shipping</strong> - Call for freight quote</p>",
52
+ "descriptionTruncated": false,
53
+ "priceInProductList": 4315,
54
+ "categoryIds": [],
55
+ "defaultCategoryId": 0,
56
+ "favorites": {
57
+ "count": 0,
58
+ "displayedCount": "0"
59
+ }
60
+ },
61
+ {
62
+ "id": 41316721,
63
+ "sku": "T611",
64
+ "smallThumbnailUrl": "http://images-cdn.ecwid.com/images/4881025/242433090.jpg",
65
+ "thumbnailUrl": "http://images-cdn.ecwid.com/images/4881025/242433089.jpg",
66
+ "imageUrl": "http://images-cdn.ecwid.com/images/4881025/245154466.jpg",
67
+ "originalImageUrl": "http://images-cdn.ecwid.com/images/4881025/245154465.jpg",
68
+ "unlimited": true,
69
+ "inStock": true,
70
+ "name": "SportsArt T611",
71
+ "price": 2595,
72
+ "weight": 0,
73
+ "url": "http://preview.myncmstore.com#!/SportsArt-T611/p/41316721",
74
+ "created": "2014-09-13 01:46:13 -0700",
75
+ "updated": "2014-10-15 08:58:41 -0700",
76
+ "productClassId": 0,
77
+ "enabled": false,
78
+ "description": "<p><em>Powerful 3.0 hp DC motor with a large 20\" x 58\" running surface. </em></p> <p><strong>Motor</strong>: 3 hp DC</p> <p><strong>Speed range</strong>: .1 to 12 mph (.16 to 19km/h)</p> <p><strong>Incline range</strong>: -3 to 15%</p> <p><strong>Deck Cushioning</strong>: 4-way reversible phenolic, My-Flex™</p> <p><strong>Display/Feedback</strong>: Tri-Color Dot Matrix and LEDs</p> <p><strong>Programs</strong>: Programmable Interval, Random (x10,000), 2 Glute (30 min, and 45 min), 3 Hill, HRC Cardio, HRC Weight Loss, Quick Star, Manual/Track, Zone Trainer™</p> <p><strong>Medical rails</strong>: Optional</p> <p><strong>Maximum user weight:</strong> 400 lbs. (181kg)</p> <p><strong>Unit dimensions</strong>: 77.5\" x 38\" x 53\" (197 x 97 x 35cm)</p> <p><strong>Unit weight:</strong> 229 lbs. (104kg)</p> <p><strong>Warranty</strong>: Lifetime frame, 5 years parts, Dedicated Power Supply</p> <p><strong>Power requirements</strong>: 120 VAC, 60 Hz, 12A, 1440W; Plug UL NEMA 5-15; Cord 14 AWG CSA-approved; Fuse 12A (6x30 mm), 100-120V, Fast blow</p> <p><strong>Shipping</strong>: Call for freight quote</p>",
79
+ "descriptionTruncated": false,
80
+ "priceInProductList": 2595,
81
+ "categoryIds": [],
82
+ "defaultCategoryId": 0,
83
+ "favorites": {
84
+ "count": 0,
85
+ "displayedCount": "0"
86
+ }
87
+ },
88
+ {
89
+ "id": 41316486,
90
+ "sku": "NC89048",
91
+ "smallThumbnailUrl": "http://images-cdn.ecwid.com/images/4881025/242432163.jpg",
92
+ "thumbnailUrl": "http://images-cdn.ecwid.com/images/4881025/242432162.jpg",
93
+ "imageUrl": "http://images-cdn.ecwid.com/images/4881025/245153078.jpg",
94
+ "originalImageUrl": "http://images-cdn.ecwid.com/images/4881025/245153077.jpg",
95
+ "unlimited": true,
96
+ "inStock": true,
97
+ "name": "DVD: Clinical Kinesio Taping",
98
+ "price": 41.95,
99
+ "weight": 0.192,
100
+ "url": "http://preview.myncmstore.com#!/DVD-Clinical-Kinesio-Taping/p/41316486",
101
+ "created": "2014-09-13 01:45:57 -0700",
102
+ "updated": "2014-10-15 08:56:50 -0700",
103
+ "productClassId": 0,
104
+ "enabled": false,
105
+ "description": "<p><em>Introduction, explanation and application of the Kinesio Taping Method.<br /></em><br />Certified Kinesio Taping Intstructor Jim Wallis, MS, ATC demonstrates step-by-step application of Kinesio Taping Techniques.  Copyright 2000.</p>",
106
+ "descriptionTruncated": false,
107
+ "priceInProductList": 41.95,
108
+ "categoryIds": [],
109
+ "defaultCategoryId": 0,
110
+ "favorites": {
111
+ "count": 0,
112
+ "displayedCount": "0"
113
+ }
114
+ },
115
+ {
116
+ "id": 43428452,
117
+ "sku": "META-2961",
118
+ "unlimited": true,
119
+ "inStock": true,
120
+ "name": "English Pantyhose Aid",
121
+ "price": 0,
122
+ "weight": 0,
123
+ "url": "http://preview.myncmstore.com#!/English-Pantyhose-Aid/p/43428452",
124
+ "created": "2014-10-21 14:44:31 -0700",
125
+ "updated": "2014-10-21 14:44:31 -0700",
126
+ "productClassId": 0,
127
+ "enabled": true,
128
+ "description": "<p>test</p>",
129
+ "descriptionTruncated": false,
130
+ "priceInProductList": 0,
131
+ "categoryIds": [
132
+ 11056311
133
+ ],
134
+ "defaultCategoryId": 11056311,
135
+ "favorites": {
136
+ "count": 0,
137
+ "displayedCount": "0"
138
+ }
139
+ }
140
+ ]
141
+ }