solidus_easypost 1.0.5 → 2.0.0
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 +5 -5
- data/.circleci/config.yml +35 -0
- data/.gem_release.yml +5 -0
- data/.github/stale.yml +17 -0
- data/.gitignore +20 -0
- data/.rspec +2 -0
- data/.rubocop.yml +4 -0
- data/.rubocop_todo.yml +71 -0
- data/Gemfile +33 -0
- data/LICENSE +26 -0
- data/README.md +104 -0
- data/Rakefile +6 -0
- data/app/decorators/models/solidus_easypost/spree/address_decorator.rb +30 -0
- data/app/decorators/models/solidus_easypost/spree/shipment_decorator.rb +52 -0
- data/app/decorators/models/solidus_easypost/spree/shipping_rate_decorator.rb +13 -0
- data/app/decorators/models/solidus_easypost/spree/stock/estimator_decorator.rb +15 -0
- data/app/decorators/models/solidus_easypost/spree/stock/package_decorator.rb +27 -0
- data/app/decorators/models/solidus_easypost/spree/stock_location_decorator.rb +26 -0
- data/app/models/solidus_easypost/estimator.rb +51 -0
- data/app/models/solidus_easypost/return_authorization.rb +38 -0
- data/bin/console +17 -0
- data/bin/rails +8 -0
- data/bin/rails-engine +15 -0
- data/bin/rails-sandbox +17 -0
- data/bin/rake +7 -0
- data/bin/sandbox +84 -0
- data/bin/setup +8 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +5 -0
- data/db/migrate/20140515024440_add_easy_post_fields_to_shipping_rate.rb +9 -0
- data/lib/generators/solidus_easypost/install/install_generator.rb +22 -0
- data/lib/solidus_easypost.rb +21 -0
- data/lib/solidus_easypost/configuration.rb +11 -0
- data/lib/solidus_easypost/engine.rb +19 -0
- data/lib/solidus_easypost/factories.rb +24 -0
- data/lib/solidus_easypost/version.rb +5 -0
- data/solidus_easypost.gemspec +38 -0
- data/spec/cassettes/SolidusEasypost_ReturnAuthorization/_easypost_shipment/is_an_EasyPost_Shipment_object.yml +271 -0
- data/spec/cassettes/SolidusEasypost_ReturnAuthorization/_return_label/has_the_correct_fields.yml +336 -0
- data/spec/cassettes/SolidusEasypost_ReturnAuthorization/_return_label/is_an_EasyPost_PackageLabel_object.yml +336 -0
- data/spec/cassettes/Spree_Address/_easypost_address/has_the_correct_attributes.yml +69 -0
- data/spec/cassettes/Spree_Address/_easypost_address/is_an_EasyPost_Address_object.yml +69 -0
- data/spec/cassettes/Spree_Order/_refresh_shipment_rates/can_get_rates_from_easy_post.yml +271 -0
- data/spec/cassettes/Spree_Order/_refresh_shipment_rates/create_shipping_methods_for_the_rates.yml +269 -0
- data/spec/cassettes/Spree_Shipment/_buys_a_shipping_rate_after_transitioning_to_ship.yml +403 -0
- data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_a_new_shipment/behaves_like_an_easypost_shipment/is_an_EasyPost_Shipment_object.yml +271 -0
- data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_a_new_shipment/calls_the_api.yml +200 -0
- data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_an_existing_shipment/behaves_like_an_easypost_shipment/is_an_EasyPost_Shipment_object.yml +334 -0
- data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_an_existing_shipment/loads_the_existing_shipment.yml +271 -0
- data/spec/cassettes/Spree_StockLocation/_easypost_address/has_the_correct_attributes.yml +69 -0
- data/spec/cassettes/Spree_StockLocation/_easypost_address/is_an_EasyPost_Address_object.yml +69 -0
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_dont_exist/creates_new_shipping_methods.yml +269 -0
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_dont_exist/is_empty.yml +269 -0
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_exist/create_no_new_shipping_methods.yml +269 -0
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_exist/when_shipping_methods_are_front_end_visible/has_the_correct_costs.yml +269 -0
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_exist/when_shipping_methods_are_front_end_visible/has_the_correct_names.yml +269 -0
- data/spec/cassettes/Spree_Stock_Estimator/_shipping_rates/when_rates_are_found/when_shipping_methods_exist/when_shipping_methods_are_not_front_end_visible/is_empty.yml +269 -0
- data/spec/cassettes/Spree_Stock_Package/_easypost_parcel/has_the_correct_attributes.yml +68 -0
- data/spec/cassettes/Spree_Stock_Package/_easypost_parcel/is_an_EasyPost_Parcel_object.yml +68 -0
- data/spec/cassettes/Spree_Stock_Package/_easypost_shipment/calls_the_api.yml +200 -0
- data/spec/cassettes/Spree_Stock_Package/_easypost_shipment/is_an_EasyPost_Shipment_object.yml +269 -0
- data/spec/factories/spree_modification.rb +25 -0
- data/spec/models/solidus_easypost/return_authorization_spec.rb +50 -0
- data/spec/models/spree/address_spec.rb +31 -0
- data/spec/models/spree/order_spec.rb +31 -0
- data/spec/models/spree/shipment_spec.rb +80 -0
- data/spec/models/spree/shipping_rate_spec.rb +16 -0
- data/spec/models/spree/stock/estimator_spec.rb +80 -0
- data/spec/models/spree/stock/package_spec.rb +35 -0
- data/spec/models/spree/stock_location_spec.rb +31 -0
- data/spec/solidus_easypost_spec.rb +19 -0
- data/spec/spec_helper.rb +27 -0
- data/spec/support/easypost.rb +3 -0
- data/spec/support/factory_bot.rb +3 -0
- data/spec/support/shipping_method_helpers.rb +43 -0
- data/spec/support/vcr.rb +11 -0
- metadata +145 -170
data/spec/cassettes/Spree_Shipment/_easypost_shipment/when_it_is_a_new_shipment/calls_the_api.yml
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://api.easypost.com/v2/addresses
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: address[street1]=A%20Different%20Road&address[street2]=Northwest&address[city]=Manville&address[zip]=08835&address[phone]=555-555-0199&address[company]=Company&address[name]=John%20Doe&address[state]=NJ&address[country]=US
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- "*/*"
|
|
12
|
+
User-Agent:
|
|
13
|
+
- EasyPost/v2 RubyClient/3.0.1
|
|
14
|
+
Authorization:
|
|
15
|
+
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
|
16
|
+
Content-Type:
|
|
17
|
+
- application/x-www-form-urlencoded
|
|
18
|
+
Content-Length:
|
|
19
|
+
- '222'
|
|
20
|
+
Accept-Encoding:
|
|
21
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
22
|
+
Host:
|
|
23
|
+
- api.easypost.com
|
|
24
|
+
response:
|
|
25
|
+
status:
|
|
26
|
+
code: 201
|
|
27
|
+
message: Created
|
|
28
|
+
headers:
|
|
29
|
+
X-Frame-Options:
|
|
30
|
+
- SAMEORIGIN
|
|
31
|
+
X-Xss-Protection:
|
|
32
|
+
- 1; mode=block
|
|
33
|
+
X-Content-Type-Options:
|
|
34
|
+
- nosniff
|
|
35
|
+
X-Ep-Request-Uuid:
|
|
36
|
+
- 43c6543d5dca6f09ee72826c00010d16
|
|
37
|
+
Cache-Control:
|
|
38
|
+
- no-cache, no-store, must-revalidate, private
|
|
39
|
+
Pragma:
|
|
40
|
+
- no-cache
|
|
41
|
+
Expires:
|
|
42
|
+
- '0'
|
|
43
|
+
Location:
|
|
44
|
+
- "/api/v2/addresses/adr_35ee741b769c4fe089e15f26a5355de8"
|
|
45
|
+
Content-Type:
|
|
46
|
+
- application/json; charset=utf-8
|
|
47
|
+
X-Runtime:
|
|
48
|
+
- '0.029900'
|
|
49
|
+
Transfer-Encoding:
|
|
50
|
+
- chunked
|
|
51
|
+
X-Node:
|
|
52
|
+
- bigweb2sj
|
|
53
|
+
X-Version-Label:
|
|
54
|
+
- easypost-201911120131-f5c72b1880-master
|
|
55
|
+
X-Backend:
|
|
56
|
+
- easypost
|
|
57
|
+
X-Proxied:
|
|
58
|
+
- extlb2wdc 2744487620
|
|
59
|
+
- intlb1wdc ff5a2958df
|
|
60
|
+
- intlb2sj ff5a2958df
|
|
61
|
+
Strict-Transport-Security:
|
|
62
|
+
- max-age=15768000; includeSubDomains; preload
|
|
63
|
+
body:
|
|
64
|
+
encoding: ASCII-8BIT
|
|
65
|
+
string: '{"id":"adr_35ee741b769c4fe089e15f26a5355de8","object":"Address","created_at":"2019-11-12T08:36:25Z","updated_at":"2019-11-12T08:36:25Z","name":"John
|
|
66
|
+
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}}'
|
|
67
|
+
http_version:
|
|
68
|
+
recorded_at: Tue, 12 Nov 2019 08:36:25 GMT
|
|
69
|
+
- request:
|
|
70
|
+
method: post
|
|
71
|
+
uri: https://api.easypost.com/v2/addresses
|
|
72
|
+
body:
|
|
73
|
+
encoding: UTF-8
|
|
74
|
+
string: address[street1]=131%20S%208th%20Ave&address[city]=Manville&address[zip]=08835&address[phone]=(202)%20456-1111&address[name]=NY%20Warehouse&address[company]=NY%20Warehouse&address[state]=NJ&address[country]=US
|
|
75
|
+
headers:
|
|
76
|
+
Accept:
|
|
77
|
+
- "*/*"
|
|
78
|
+
User-Agent:
|
|
79
|
+
- EasyPost/v2 RubyClient/3.0.1
|
|
80
|
+
Authorization:
|
|
81
|
+
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
|
82
|
+
Content-Type:
|
|
83
|
+
- application/x-www-form-urlencoded
|
|
84
|
+
Content-Length:
|
|
85
|
+
- '209'
|
|
86
|
+
Accept-Encoding:
|
|
87
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
88
|
+
Host:
|
|
89
|
+
- api.easypost.com
|
|
90
|
+
response:
|
|
91
|
+
status:
|
|
92
|
+
code: 201
|
|
93
|
+
message: Created
|
|
94
|
+
headers:
|
|
95
|
+
X-Frame-Options:
|
|
96
|
+
- SAMEORIGIN
|
|
97
|
+
X-Xss-Protection:
|
|
98
|
+
- 1; mode=block
|
|
99
|
+
X-Content-Type-Options:
|
|
100
|
+
- nosniff
|
|
101
|
+
X-Ep-Request-Uuid:
|
|
102
|
+
- 43c6543d5dca6f0aee6164ec00010d21
|
|
103
|
+
Cache-Control:
|
|
104
|
+
- no-cache, no-store, must-revalidate, private
|
|
105
|
+
Pragma:
|
|
106
|
+
- no-cache
|
|
107
|
+
Expires:
|
|
108
|
+
- '0'
|
|
109
|
+
Location:
|
|
110
|
+
- "/api/v2/addresses/adr_5cd6a12b354842dc9ae8e48eb09d1f08"
|
|
111
|
+
Content-Type:
|
|
112
|
+
- application/json; charset=utf-8
|
|
113
|
+
X-Runtime:
|
|
114
|
+
- '0.029010'
|
|
115
|
+
Transfer-Encoding:
|
|
116
|
+
- chunked
|
|
117
|
+
X-Node:
|
|
118
|
+
- bigweb11sj
|
|
119
|
+
X-Version-Label:
|
|
120
|
+
- easypost-201911120131-f5c72b1880-master
|
|
121
|
+
X-Backend:
|
|
122
|
+
- easypost
|
|
123
|
+
X-Proxied:
|
|
124
|
+
- extlb2wdc 2744487620
|
|
125
|
+
- intlb1sj ff5a2958df
|
|
126
|
+
- intlb2wdc ff5a2958df
|
|
127
|
+
Strict-Transport-Security:
|
|
128
|
+
- max-age=15768000; includeSubDomains; preload
|
|
129
|
+
body:
|
|
130
|
+
encoding: ASCII-8BIT
|
|
131
|
+
string: '{"id":"adr_5cd6a12b354842dc9ae8e48eb09d1f08","object":"Address","created_at":"2019-11-12T08:36:26Z","updated_at":"2019-11-12T08:36:26Z","name":"NY
|
|
132
|
+
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}}'
|
|
133
|
+
http_version:
|
|
134
|
+
recorded_at: Tue, 12 Nov 2019 08:36:26 GMT
|
|
135
|
+
- request:
|
|
136
|
+
method: post
|
|
137
|
+
uri: https://api.easypost.com/v2/parcels
|
|
138
|
+
body:
|
|
139
|
+
encoding: UTF-8
|
|
140
|
+
string: parcel[weight]=10.0
|
|
141
|
+
headers:
|
|
142
|
+
Accept:
|
|
143
|
+
- "*/*"
|
|
144
|
+
User-Agent:
|
|
145
|
+
- EasyPost/v2 RubyClient/3.0.1
|
|
146
|
+
Authorization:
|
|
147
|
+
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
|
148
|
+
Content-Type:
|
|
149
|
+
- application/x-www-form-urlencoded
|
|
150
|
+
Content-Length:
|
|
151
|
+
- '19'
|
|
152
|
+
Accept-Encoding:
|
|
153
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
154
|
+
Host:
|
|
155
|
+
- api.easypost.com
|
|
156
|
+
response:
|
|
157
|
+
status:
|
|
158
|
+
code: 201
|
|
159
|
+
message: Created
|
|
160
|
+
headers:
|
|
161
|
+
X-Frame-Options:
|
|
162
|
+
- SAMEORIGIN
|
|
163
|
+
X-Xss-Protection:
|
|
164
|
+
- 1; mode=block
|
|
165
|
+
X-Content-Type-Options:
|
|
166
|
+
- nosniff
|
|
167
|
+
X-Ep-Request-Uuid:
|
|
168
|
+
- 43c6543d5dca6f0aee71449000010d30
|
|
169
|
+
Cache-Control:
|
|
170
|
+
- no-cache, no-store, must-revalidate, private
|
|
171
|
+
Pragma:
|
|
172
|
+
- no-cache
|
|
173
|
+
Expires:
|
|
174
|
+
- '0'
|
|
175
|
+
Location:
|
|
176
|
+
- "/api/v2/parcels/prcl_0e8567955b454974970612f6d0745cd1"
|
|
177
|
+
Content-Type:
|
|
178
|
+
- application/json; charset=utf-8
|
|
179
|
+
X-Runtime:
|
|
180
|
+
- '0.026836'
|
|
181
|
+
Transfer-Encoding:
|
|
182
|
+
- chunked
|
|
183
|
+
X-Node:
|
|
184
|
+
- bigweb11sj
|
|
185
|
+
X-Version-Label:
|
|
186
|
+
- easypost-201911120131-f5c72b1880-master
|
|
187
|
+
X-Backend:
|
|
188
|
+
- easypost
|
|
189
|
+
X-Proxied:
|
|
190
|
+
- extlb2wdc 2744487620
|
|
191
|
+
- intlb2sj ff5a2958df
|
|
192
|
+
- intlb2wdc ff5a2958df
|
|
193
|
+
Strict-Transport-Security:
|
|
194
|
+
- max-age=15768000; includeSubDomains; preload
|
|
195
|
+
body:
|
|
196
|
+
encoding: ASCII-8BIT
|
|
197
|
+
string: '{"id":"prcl_0e8567955b454974970612f6d0745cd1","object":"Parcel","created_at":"2019-11-12T08:36:26Z","updated_at":"2019-11-12T08:36:26Z","length":null,"width":null,"height":null,"predefined_package":null,"weight":10.0,"mode":"test"}'
|
|
198
|
+
http_version:
|
|
199
|
+
recorded_at: Tue, 12 Nov 2019 08:36:27 GMT
|
|
200
|
+
recorded_with: VCR 5.0.0
|
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://api.easypost.com/v2/addresses
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: address[street1]=A%20Different%20Road&address[street2]=Northwest&address[city]=Manville&address[zip]=08835&address[phone]=555-555-0199&address[company]=Company&address[name]=John%20Doe&address[state]=NJ&address[country]=US
|
|
9
|
+
headers:
|
|
10
|
+
Accept:
|
|
11
|
+
- "*/*"
|
|
12
|
+
User-Agent:
|
|
13
|
+
- EasyPost/v2 RubyClient/3.0.1
|
|
14
|
+
Authorization:
|
|
15
|
+
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
|
16
|
+
Content-Type:
|
|
17
|
+
- application/x-www-form-urlencoded
|
|
18
|
+
Content-Length:
|
|
19
|
+
- '222'
|
|
20
|
+
Accept-Encoding:
|
|
21
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
22
|
+
Host:
|
|
23
|
+
- api.easypost.com
|
|
24
|
+
response:
|
|
25
|
+
status:
|
|
26
|
+
code: 201
|
|
27
|
+
message: Created
|
|
28
|
+
headers:
|
|
29
|
+
X-Frame-Options:
|
|
30
|
+
- SAMEORIGIN
|
|
31
|
+
X-Xss-Protection:
|
|
32
|
+
- 1; mode=block
|
|
33
|
+
X-Content-Type-Options:
|
|
34
|
+
- nosniff
|
|
35
|
+
X-Ep-Request-Uuid:
|
|
36
|
+
- 43c6543d5dca6f12ee71656f00010dc3
|
|
37
|
+
Cache-Control:
|
|
38
|
+
- no-cache, no-store, must-revalidate, private
|
|
39
|
+
Pragma:
|
|
40
|
+
- no-cache
|
|
41
|
+
Expires:
|
|
42
|
+
- '0'
|
|
43
|
+
Location:
|
|
44
|
+
- "/api/v2/addresses/adr_dda7b7a38fac43d4a20aa58457b0d77b"
|
|
45
|
+
Content-Type:
|
|
46
|
+
- application/json; charset=utf-8
|
|
47
|
+
X-Runtime:
|
|
48
|
+
- '0.032039'
|
|
49
|
+
Transfer-Encoding:
|
|
50
|
+
- chunked
|
|
51
|
+
X-Node:
|
|
52
|
+
- bigweb4sj
|
|
53
|
+
X-Version-Label:
|
|
54
|
+
- easypost-201911120131-f5c72b1880-master
|
|
55
|
+
X-Backend:
|
|
56
|
+
- easypost
|
|
57
|
+
X-Proxied:
|
|
58
|
+
- extlb2wdc 2744487620
|
|
59
|
+
- intlb1wdc ff5a2958df
|
|
60
|
+
- intlb2sj ff5a2958df
|
|
61
|
+
Strict-Transport-Security:
|
|
62
|
+
- max-age=15768000; includeSubDomains; preload
|
|
63
|
+
body:
|
|
64
|
+
encoding: ASCII-8BIT
|
|
65
|
+
string: '{"id":"adr_dda7b7a38fac43d4a20aa58457b0d77b","object":"Address","created_at":"2019-11-12T08:36:34Z","updated_at":"2019-11-12T08:36:34Z","name":"John
|
|
66
|
+
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}}'
|
|
67
|
+
http_version:
|
|
68
|
+
recorded_at: Tue, 12 Nov 2019 08:36:34 GMT
|
|
69
|
+
- request:
|
|
70
|
+
method: post
|
|
71
|
+
uri: https://api.easypost.com/v2/addresses
|
|
72
|
+
body:
|
|
73
|
+
encoding: UTF-8
|
|
74
|
+
string: address[street1]=131%20S%208th%20Ave&address[city]=Manville&address[zip]=08835&address[phone]=(202)%20456-1111&address[name]=NY%20Warehouse&address[company]=NY%20Warehouse&address[state]=NJ&address[country]=US
|
|
75
|
+
headers:
|
|
76
|
+
Accept:
|
|
77
|
+
- "*/*"
|
|
78
|
+
User-Agent:
|
|
79
|
+
- EasyPost/v2 RubyClient/3.0.1
|
|
80
|
+
Authorization:
|
|
81
|
+
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
|
82
|
+
Content-Type:
|
|
83
|
+
- application/x-www-form-urlencoded
|
|
84
|
+
Content-Length:
|
|
85
|
+
- '209'
|
|
86
|
+
Accept-Encoding:
|
|
87
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
88
|
+
Host:
|
|
89
|
+
- api.easypost.com
|
|
90
|
+
response:
|
|
91
|
+
status:
|
|
92
|
+
code: 201
|
|
93
|
+
message: Created
|
|
94
|
+
headers:
|
|
95
|
+
X-Frame-Options:
|
|
96
|
+
- SAMEORIGIN
|
|
97
|
+
X-Xss-Protection:
|
|
98
|
+
- 1; mode=block
|
|
99
|
+
X-Content-Type-Options:
|
|
100
|
+
- nosniff
|
|
101
|
+
X-Ep-Request-Uuid:
|
|
102
|
+
- 43c6543d5dca6f13ee71e9ca00010dce
|
|
103
|
+
Cache-Control:
|
|
104
|
+
- no-cache, no-store, must-revalidate, private
|
|
105
|
+
Pragma:
|
|
106
|
+
- no-cache
|
|
107
|
+
Expires:
|
|
108
|
+
- '0'
|
|
109
|
+
Location:
|
|
110
|
+
- "/api/v2/addresses/adr_c44fdaf31c4e4d8fb1d7f825eccc0444"
|
|
111
|
+
Content-Type:
|
|
112
|
+
- application/json; charset=utf-8
|
|
113
|
+
X-Runtime:
|
|
114
|
+
- '0.030008'
|
|
115
|
+
Transfer-Encoding:
|
|
116
|
+
- chunked
|
|
117
|
+
X-Node:
|
|
118
|
+
- bigweb10sj
|
|
119
|
+
X-Version-Label:
|
|
120
|
+
- easypost-201911120131-f5c72b1880-master
|
|
121
|
+
X-Backend:
|
|
122
|
+
- easypost
|
|
123
|
+
X-Proxied:
|
|
124
|
+
- extlb2wdc 2744487620
|
|
125
|
+
- intlb1wdc ff5a2958df
|
|
126
|
+
- intlb2sj ff5a2958df
|
|
127
|
+
Strict-Transport-Security:
|
|
128
|
+
- max-age=15768000; includeSubDomains; preload
|
|
129
|
+
body:
|
|
130
|
+
encoding: ASCII-8BIT
|
|
131
|
+
string: '{"id":"adr_c44fdaf31c4e4d8fb1d7f825eccc0444","object":"Address","created_at":"2019-11-12T08:36:35Z","updated_at":"2019-11-12T08:36:35Z","name":"NY
|
|
132
|
+
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}}'
|
|
133
|
+
http_version:
|
|
134
|
+
recorded_at: Tue, 12 Nov 2019 08:36:35 GMT
|
|
135
|
+
- request:
|
|
136
|
+
method: post
|
|
137
|
+
uri: https://api.easypost.com/v2/parcels
|
|
138
|
+
body:
|
|
139
|
+
encoding: UTF-8
|
|
140
|
+
string: parcel[weight]=10.0
|
|
141
|
+
headers:
|
|
142
|
+
Accept:
|
|
143
|
+
- "*/*"
|
|
144
|
+
User-Agent:
|
|
145
|
+
- EasyPost/v2 RubyClient/3.0.1
|
|
146
|
+
Authorization:
|
|
147
|
+
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
|
148
|
+
Content-Type:
|
|
149
|
+
- application/x-www-form-urlencoded
|
|
150
|
+
Content-Length:
|
|
151
|
+
- '19'
|
|
152
|
+
Accept-Encoding:
|
|
153
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
154
|
+
Host:
|
|
155
|
+
- api.easypost.com
|
|
156
|
+
response:
|
|
157
|
+
status:
|
|
158
|
+
code: 201
|
|
159
|
+
message: Created
|
|
160
|
+
headers:
|
|
161
|
+
X-Frame-Options:
|
|
162
|
+
- SAMEORIGIN
|
|
163
|
+
X-Xss-Protection:
|
|
164
|
+
- 1; mode=block
|
|
165
|
+
X-Content-Type-Options:
|
|
166
|
+
- nosniff
|
|
167
|
+
X-Ep-Request-Uuid:
|
|
168
|
+
- 43c6543d5dca6f13ee82f69400010ddd
|
|
169
|
+
Cache-Control:
|
|
170
|
+
- no-cache, no-store, must-revalidate, private
|
|
171
|
+
Pragma:
|
|
172
|
+
- no-cache
|
|
173
|
+
Expires:
|
|
174
|
+
- '0'
|
|
175
|
+
Location:
|
|
176
|
+
- "/api/v2/parcels/prcl_41cdbb1830b046a4bab555626b0fdcb8"
|
|
177
|
+
Content-Type:
|
|
178
|
+
- application/json; charset=utf-8
|
|
179
|
+
X-Runtime:
|
|
180
|
+
- '0.071587'
|
|
181
|
+
Transfer-Encoding:
|
|
182
|
+
- chunked
|
|
183
|
+
X-Node:
|
|
184
|
+
- bigweb3sj
|
|
185
|
+
X-Version-Label:
|
|
186
|
+
- easypost-201911120131-f5c72b1880-master
|
|
187
|
+
X-Backend:
|
|
188
|
+
- easypost
|
|
189
|
+
X-Proxied:
|
|
190
|
+
- extlb2wdc 2744487620
|
|
191
|
+
- intlb1sj ff5a2958df
|
|
192
|
+
- intlb2wdc ff5a2958df
|
|
193
|
+
Strict-Transport-Security:
|
|
194
|
+
- max-age=15768000; includeSubDomains; preload
|
|
195
|
+
body:
|
|
196
|
+
encoding: ASCII-8BIT
|
|
197
|
+
string: '{"id":"prcl_41cdbb1830b046a4bab555626b0fdcb8","object":"Parcel","created_at":"2019-11-12T08:36:35Z","updated_at":"2019-11-12T08:36:35Z","length":null,"width":null,"height":null,"predefined_package":null,"weight":10.0,"mode":"test"}'
|
|
198
|
+
http_version:
|
|
199
|
+
recorded_at: Tue, 12 Nov 2019 08:36:36 GMT
|
|
200
|
+
- request:
|
|
201
|
+
method: post
|
|
202
|
+
uri: https://api.easypost.com/v2/shipments
|
|
203
|
+
body:
|
|
204
|
+
encoding: UTF-8
|
|
205
|
+
string: shipment[to_address][id]=adr_dda7b7a38fac43d4a20aa58457b0d77b&shipment[from_address][id]=adr_c44fdaf31c4e4d8fb1d7f825eccc0444&shipment[parcel][id]=prcl_41cdbb1830b046a4bab555626b0fdcb8
|
|
206
|
+
headers:
|
|
207
|
+
Accept:
|
|
208
|
+
- "*/*"
|
|
209
|
+
User-Agent:
|
|
210
|
+
- EasyPost/v2 RubyClient/3.0.1
|
|
211
|
+
Authorization:
|
|
212
|
+
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
|
213
|
+
Content-Type:
|
|
214
|
+
- application/x-www-form-urlencoded
|
|
215
|
+
Content-Length:
|
|
216
|
+
- '184'
|
|
217
|
+
Accept-Encoding:
|
|
218
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
219
|
+
Host:
|
|
220
|
+
- api.easypost.com
|
|
221
|
+
response:
|
|
222
|
+
status:
|
|
223
|
+
code: 201
|
|
224
|
+
message: Created
|
|
225
|
+
headers:
|
|
226
|
+
X-Frame-Options:
|
|
227
|
+
- SAMEORIGIN
|
|
228
|
+
X-Xss-Protection:
|
|
229
|
+
- 1; mode=block
|
|
230
|
+
X-Content-Type-Options:
|
|
231
|
+
- nosniff
|
|
232
|
+
X-Ep-Request-Uuid:
|
|
233
|
+
- 43c6543d5dca6f14ee82f21200010de8
|
|
234
|
+
Cache-Control:
|
|
235
|
+
- no-cache, no-store, must-revalidate, private
|
|
236
|
+
Pragma:
|
|
237
|
+
- no-cache
|
|
238
|
+
Expires:
|
|
239
|
+
- '0'
|
|
240
|
+
Location:
|
|
241
|
+
- "/api/v2/shipments/shp_971b5dc387434c99a1e0ccf29fd3060a"
|
|
242
|
+
Content-Type:
|
|
243
|
+
- application/json; charset=utf-8
|
|
244
|
+
X-Runtime:
|
|
245
|
+
- '0.189761'
|
|
246
|
+
Transfer-Encoding:
|
|
247
|
+
- chunked
|
|
248
|
+
X-Node:
|
|
249
|
+
- bigweb9sj
|
|
250
|
+
X-Version-Label:
|
|
251
|
+
- easypost-201911120131-f5c72b1880-master
|
|
252
|
+
X-Backend:
|
|
253
|
+
- easypost
|
|
254
|
+
X-Proxied:
|
|
255
|
+
- extlb2wdc 2744487620
|
|
256
|
+
- intlb1sj ff5a2958df
|
|
257
|
+
- intlb2wdc ff5a2958df
|
|
258
|
+
Strict-Transport-Security:
|
|
259
|
+
- max-age=15768000; includeSubDomains; preload
|
|
260
|
+
body:
|
|
261
|
+
encoding: ASCII-8BIT
|
|
262
|
+
string: '{"created_at":"2019-11-12T08:36:36Z","is_return":false,"messages":[],"mode":"test","options":{"currency":"USD","payment":{"type":"SENDER"},"label_date":null,"date_advance":0},"reference":null,"status":"unknown","tracking_code":null,"updated_at":"2019-11-12T08:36:36Z","batch_id":null,"batch_status":null,"batch_message":null,"customs_info":null,"from_address":{"id":"adr_c44fdaf31c4e4d8fb1d7f825eccc0444","object":"Address","created_at":"2019-11-12T08:36:35Z","updated_at":"2019-11-12T08:36:35Z","name":"NY
|
|
263
|
+
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"insurance":null,"order_id":null,"parcel":{"id":"prcl_41cdbb1830b046a4bab555626b0fdcb8","object":"Parcel","created_at":"2019-11-12T08:36:35Z","updated_at":"2019-11-12T08:36:35Z","length":null,"width":null,"height":null,"predefined_package":null,"weight":10.0,"mode":"test"},"postage_label":null,"rates":[{"id":"rate_22466711dd474f63968e2e8932bbf52b","object":"Rate","created_at":"2019-11-12T08:36:36Z","updated_at":"2019-11-12T08:36:36Z","mode":"test","service":"First","carrier":"USPS","rate":"3.82","currency":"USD","retail_rate":"5.19","retail_currency":"USD","list_rate":"3.82","list_currency":"USD","delivery_days":2,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":2,"shipment_id":"shp_971b5dc387434c99a1e0ccf29fd3060a","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_adfce8e5798146ce8a94da002b521f4b","object":"Rate","created_at":"2019-11-12T08:36:36Z","updated_at":"2019-11-12T08:36:36Z","mode":"test","service":"ParcelSelect","carrier":"USPS","rate":"6.85","currency":"USD","retail_rate":"6.85","retail_currency":"USD","list_rate":"6.85","list_currency":"USD","delivery_days":2,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":2,"shipment_id":"shp_971b5dc387434c99a1e0ccf29fd3060a","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_d57d2e2bca6e4b6cb30f5cbefa2c557a","object":"Rate","created_at":"2019-11-12T08:36:36Z","updated_at":"2019-11-12T08:36:36Z","mode":"test","service":"Express","carrier":"USPS","rate":"22.74","currency":"USD","retail_rate":"25.60","retail_currency":"USD","list_rate":"22.74","list_currency":"USD","delivery_days":null,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":null,"shipment_id":"shp_971b5dc387434c99a1e0ccf29fd3060a","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_cf639195145444efb7a18ae46cf23474","object":"Rate","created_at":"2019-11-12T08:36:36Z","updated_at":"2019-11-12T08:36:36Z","mode":"test","service":"Priority","carrier":"USPS","rate":"6.95","currency":"USD","retail_rate":"7.35","retail_currency":"USD","list_rate":"6.95","list_currency":"USD","delivery_days":1,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":1,"shipment_id":"shp_971b5dc387434c99a1e0ccf29fd3060a","carrier_account_id":"ca_mtb51Ve0"}],"refund_status":null,"scan_form":null,"selected_rate":null,"tracker":null,"to_address":{"id":"adr_dda7b7a38fac43d4a20aa58457b0d77b","object":"Address","created_at":"2019-11-12T08:36:34Z","updated_at":"2019-11-12T08:36:34Z","name":"John
|
|
264
|
+
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"usps_zone":1,"return_address":{"id":"adr_c44fdaf31c4e4d8fb1d7f825eccc0444","object":"Address","created_at":"2019-11-12T08:36:35Z","updated_at":"2019-11-12T08:36:35Z","name":"NY
|
|
265
|
+
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"buyer_address":{"id":"adr_dda7b7a38fac43d4a20aa58457b0d77b","object":"Address","created_at":"2019-11-12T08:36:34Z","updated_at":"2019-11-12T08:36:34Z","name":"John
|
|
266
|
+
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"forms":[],"fees":[],"id":"shp_971b5dc387434c99a1e0ccf29fd3060a","object":"Shipment"}'
|
|
267
|
+
http_version:
|
|
268
|
+
recorded_at: Tue, 12 Nov 2019 08:36:36 GMT
|
|
269
|
+
- request:
|
|
270
|
+
method: get
|
|
271
|
+
uri: https://api.easypost.com/v2/shipments/shp_971b5dc387434c99a1e0ccf29fd3060a
|
|
272
|
+
body:
|
|
273
|
+
encoding: US-ASCII
|
|
274
|
+
string: ''
|
|
275
|
+
headers:
|
|
276
|
+
Accept:
|
|
277
|
+
- "*/*"
|
|
278
|
+
User-Agent:
|
|
279
|
+
- EasyPost/v2 RubyClient/3.0.1
|
|
280
|
+
Authorization:
|
|
281
|
+
- Bearer CvzYtuda6KRI9JjG7SAHbA
|
|
282
|
+
Content-Type:
|
|
283
|
+
- application/x-www-form-urlencoded
|
|
284
|
+
Accept-Encoding:
|
|
285
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
286
|
+
Host:
|
|
287
|
+
- api.easypost.com
|
|
288
|
+
response:
|
|
289
|
+
status:
|
|
290
|
+
code: 200
|
|
291
|
+
message: OK
|
|
292
|
+
headers:
|
|
293
|
+
X-Frame-Options:
|
|
294
|
+
- SAMEORIGIN
|
|
295
|
+
X-Xss-Protection:
|
|
296
|
+
- 1; mode=block
|
|
297
|
+
X-Content-Type-Options:
|
|
298
|
+
- nosniff
|
|
299
|
+
X-Ep-Request-Uuid:
|
|
300
|
+
- 43c6543d5dca6f15ee71f20d00010dfc
|
|
301
|
+
Cache-Control:
|
|
302
|
+
- no-cache, no-store, must-revalidate, private
|
|
303
|
+
Pragma:
|
|
304
|
+
- no-cache
|
|
305
|
+
Expires:
|
|
306
|
+
- '0'
|
|
307
|
+
Content-Type:
|
|
308
|
+
- application/json; charset=utf-8
|
|
309
|
+
X-Runtime:
|
|
310
|
+
- '0.070536'
|
|
311
|
+
Transfer-Encoding:
|
|
312
|
+
- chunked
|
|
313
|
+
X-Node:
|
|
314
|
+
- bigweb10sj
|
|
315
|
+
X-Version-Label:
|
|
316
|
+
- easypost-201911120131-f5c72b1880-master
|
|
317
|
+
X-Backend:
|
|
318
|
+
- easypost
|
|
319
|
+
X-Proxied:
|
|
320
|
+
- extlb2wdc 2744487620
|
|
321
|
+
- intlb2sj ff5a2958df
|
|
322
|
+
- intlb2wdc ff5a2958df
|
|
323
|
+
Strict-Transport-Security:
|
|
324
|
+
- max-age=15768000; includeSubDomains; preload
|
|
325
|
+
body:
|
|
326
|
+
encoding: ASCII-8BIT
|
|
327
|
+
string: '{"created_at":"2019-11-12T08:36:36Z","is_return":false,"messages":[],"mode":"test","options":{"currency":"USD","payment":{"type":"SENDER"},"label_date":null,"date_advance":0},"reference":null,"status":"unknown","tracking_code":null,"updated_at":"2019-11-12T08:36:36Z","batch_id":null,"batch_status":null,"batch_message":null,"customs_info":null,"from_address":{"id":"adr_c44fdaf31c4e4d8fb1d7f825eccc0444","object":"Address","created_at":"2019-11-12T08:36:35Z","updated_at":"2019-11-12T08:36:35Z","name":"NY
|
|
328
|
+
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"insurance":null,"order_id":null,"parcel":{"id":"prcl_41cdbb1830b046a4bab555626b0fdcb8","object":"Parcel","created_at":"2019-11-12T08:36:35Z","updated_at":"2019-11-12T08:36:35Z","length":null,"width":null,"height":null,"predefined_package":null,"weight":10.0,"mode":"test"},"postage_label":null,"rates":[{"id":"rate_22466711dd474f63968e2e8932bbf52b","object":"Rate","created_at":"2019-11-12T08:36:36Z","updated_at":"2019-11-12T08:36:36Z","mode":"test","service":"First","carrier":"USPS","rate":"3.82","currency":"USD","retail_rate":"5.19","retail_currency":"USD","list_rate":"3.82","list_currency":"USD","delivery_days":2,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":2,"shipment_id":"shp_971b5dc387434c99a1e0ccf29fd3060a","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_adfce8e5798146ce8a94da002b521f4b","object":"Rate","created_at":"2019-11-12T08:36:36Z","updated_at":"2019-11-12T08:36:36Z","mode":"test","service":"ParcelSelect","carrier":"USPS","rate":"6.85","currency":"USD","retail_rate":"6.85","retail_currency":"USD","list_rate":"6.85","list_currency":"USD","delivery_days":2,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":2,"shipment_id":"shp_971b5dc387434c99a1e0ccf29fd3060a","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_d57d2e2bca6e4b6cb30f5cbefa2c557a","object":"Rate","created_at":"2019-11-12T08:36:36Z","updated_at":"2019-11-12T08:36:36Z","mode":"test","service":"Express","carrier":"USPS","rate":"22.74","currency":"USD","retail_rate":"25.60","retail_currency":"USD","list_rate":"22.74","list_currency":"USD","delivery_days":null,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":null,"shipment_id":"shp_971b5dc387434c99a1e0ccf29fd3060a","carrier_account_id":"ca_mtb51Ve0"},{"id":"rate_cf639195145444efb7a18ae46cf23474","object":"Rate","created_at":"2019-11-12T08:36:36Z","updated_at":"2019-11-12T08:36:36Z","mode":"test","service":"Priority","carrier":"USPS","rate":"6.95","currency":"USD","retail_rate":"7.35","retail_currency":"USD","list_rate":"6.95","list_currency":"USD","delivery_days":1,"delivery_date":null,"delivery_date_guaranteed":false,"est_delivery_days":1,"shipment_id":"shp_971b5dc387434c99a1e0ccf29fd3060a","carrier_account_id":"ca_mtb51Ve0"}],"refund_status":null,"scan_form":null,"selected_rate":null,"tracker":null,"to_address":{"id":"adr_dda7b7a38fac43d4a20aa58457b0d77b","object":"Address","created_at":"2019-11-12T08:36:34Z","updated_at":"2019-11-12T08:36:34Z","name":"John
|
|
329
|
+
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"usps_zone":1,"return_address":{"id":"adr_c44fdaf31c4e4d8fb1d7f825eccc0444","object":"Address","created_at":"2019-11-12T08:36:35Z","updated_at":"2019-11-12T08:36:35Z","name":"NY
|
|
330
|
+
Warehouse","company":"NY Warehouse","street1":"131 S 8th Ave","street2":null,"city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"2024561111","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"buyer_address":{"id":"adr_dda7b7a38fac43d4a20aa58457b0d77b","object":"Address","created_at":"2019-11-12T08:36:34Z","updated_at":"2019-11-12T08:36:34Z","name":"John
|
|
331
|
+
Doe","company":"Company","street1":"A Different Road","street2":"Northwest","city":"Manville","state":"NJ","zip":"08835","country":"US","phone":"5555550199","email":null,"mode":"test","carrier_facility":null,"residential":null,"federal_tax_id":null,"state_tax_id":null,"verifications":{}},"forms":[],"fees":[],"id":"shp_971b5dc387434c99a1e0ccf29fd3060a","object":"Shipment"}'
|
|
332
|
+
http_version:
|
|
333
|
+
recorded_at: Tue, 12 Nov 2019 08:36:37 GMT
|
|
334
|
+
recorded_with: VCR 5.0.0
|