super_good-solidus_taxjar 0.18.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +48 -6
- data/CHANGELOG.md +103 -1
- data/Gemfile +26 -10
- data/PULL_REQUEST_TEMPLATE.md +0 -1
- data/README.md +299 -39
- data/Rakefile +3 -0
- data/app/controllers/spree/admin/taxjar_settings_controller.rb +86 -1
- data/app/controllers/spree/admin/taxjar_transactions_controller.rb +37 -0
- data/app/controllers/spree/admin/transaction_sync_batches_controller.rb +18 -0
- data/app/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job.rb +23 -0
- data/app/jobs/super_good/solidus_taxjar/replace_transaction_job.rb +26 -0
- data/app/jobs/super_good/solidus_taxjar/report_transaction_job.rb +22 -0
- data/app/models/super_good/solidus_taxjar/configuration.rb +27 -0
- data/app/models/super_good/solidus_taxjar/order_transaction.rb +16 -0
- data/app/models/super_good/solidus_taxjar/refund_transaction.rb +13 -0
- data/app/models/super_good/solidus_taxjar/transaction_sync_batch.rb +11 -0
- data/app/models/super_good/solidus_taxjar/transaction_sync_log.rb +8 -0
- data/app/overrides/spree/admin/orders_controller_override.rb +12 -0
- data/app/overrides/spree/admin/shared/_order_submenu/add_taxjar_sync_history_tab.html.erb.deface +6 -0
- data/app/overrides/spree/admin/shared/_order_summary/add_taxjar_reported_at.html.erb.deface +30 -0
- data/app/overrides/spree/admin/shared/_taxes_tabs/add_configuration_menu_items.html.erb.deface +5 -0
- data/app/overrides/super_good/solidus_taxjar/spree/order_override.rb +21 -0
- data/app/views/spree/admin/orders/taxjar_transactions.html.erb +4 -0
- data/app/views/spree/admin/shared/_transaction_sync_log_table.html.erb +35 -0
- data/app/views/spree/admin/taxjar_settings/_nexus_regions.html.erb +23 -0
- data/app/views/spree/admin/taxjar_settings/_tax_categories.html.erb +41 -0
- data/app/views/spree/admin/taxjar_settings/edit.html.erb +17 -0
- data/app/views/spree/admin/taxjar_settings/edit_no_api_key.html.erb +21 -0
- data/app/views/spree/admin/transaction_sync_batches/index.html.erb +50 -0
- data/app/views/spree/admin/transaction_sync_batches/show.html.erb +7 -0
- data/bin/console +2 -0
- data/bin/rails-engine +1 -1
- data/bin/sandbox +43 -36
- data/bin/setup +3 -3
- data/config/routes.rb +13 -1
- data/db/migrate/20210908205201_create_taxjar_order_transactions.rb +16 -0
- data/db/migrate/20211008175113_create_taxjar_refund_transaction.rb +15 -0
- data/db/migrate/20211008183858_add_transaction_date_to_order_transaction.rb +5 -0
- data/db/migrate/20211119143354_create_configuration.rb +8 -0
- data/db/migrate/20220405213958_create_transaction_sync_batches.rb +7 -0
- data/db/migrate/20220405215225_create_transaction_sync_logs.rb +14 -0
- data/db/migrate/20220908181655_add_dates_to_transaction_sync_batch.rb +6 -0
- data/db/migrate/20220912182210_allow_null_transaction_sync_batches_on_logs.rb +5 -0
- data/db/migrate/20230320211309_add_refund_transaction_to_sync_logs.rb +5 -0
- data/lib/generators/super_good/solidus_taxjar/install/install_generator.rb +68 -0
- data/lib/super_good/solidus_taxjar/api.rb +41 -9
- data/lib/super_good/solidus_taxjar/api_params.rb +92 -25
- data/lib/super_good/solidus_taxjar/backfill_transactions.rb +11 -0
- data/lib/super_good/solidus_taxjar/cached_api.rb +23 -0
- data/lib/super_good/solidus_taxjar/calculator_helper.rb +33 -4
- data/lib/super_good/solidus_taxjar/discount_calculator.rb +1 -1
- data/lib/super_good/solidus_taxjar/overrides/request_override.rb +15 -0
- data/lib/super_good/solidus_taxjar/reportable.rb +91 -0
- data/lib/super_good/solidus_taxjar/reporting.rb +44 -0
- data/lib/super_good/solidus_taxjar/spree/legacy_reporting_subscriber.rb +41 -0
- data/lib/super_good/solidus_taxjar/spree/reporting_subscriber.rb +40 -0
- data/lib/super_good/solidus_taxjar/tax_calculator.rb +7 -1
- data/lib/super_good/solidus_taxjar/testing_support/factories/address_factory.rb +11 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/configuration_factory.rb +11 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/order_transaction_factory.rb +22 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/refund_transaction_factory.rb +7 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_batch_factory.rb +9 -0
- data/lib/super_good/solidus_taxjar/testing_support/factories/transaction_sync_log_factory.rb +18 -0
- data/lib/super_good/solidus_taxjar/transaction_id_generator.rb +45 -0
- data/lib/super_good/solidus_taxjar/version.rb +1 -1
- data/lib/super_good/solidus_taxjar.rb +29 -2
- data/spec/features/spree/admin/backfill_transactions_spec.rb +138 -0
- data/spec/features/spree/admin/refund_spec.rb +167 -0
- data/spec/features/spree/admin/reporting_to_taxjar_spec.rb +156 -0
- data/spec/features/spree/admin/taxjar_settings_spec.rb +58 -16
- data/spec/features/spree/checkout_spec.rb +58 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/GET_sync_nexus_regions/Taxjar_API_token_is_not_set/doesn_t_make_a_request_for_the_nexus_regions.yml +57 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/GET_sync_tax_categories/Taxjar_API_token_is_not_set/doesn_t_make_a_request_for_the_tax_categories.yml +57 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_is_set/shows_the_settings_page.yml +2437 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/doesn_t_show_any_other_TaxJar_features.yml +57 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_API_token_isn_t_set/shows_a_descriptive_error_message.yml +57 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/Taxjar_reporting_is_enabled/shows_that_reporting_is_enabled.yml +2382 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/order_is_shipped/the_user_backfills_their_transactions.yml +2511 -0
- data/spec/fixtures/cassettes/Admin_TaxJar_Settings/Taxjar_settings_tab/the_user_navigates_to_the_TaxJar_Settings.yml +2382 -0
- data/spec/fixtures/cassettes/Admin_Transaction_Sync_Batches/user_has_a_shipped_order/starts_a_transaction_backfill.yml +370 -0
- data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/shipping_a_complete_and_paid_order.yml +310 -0
- data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/updating_an_order_which_was_not_reported_due_to_failure/it_reports_the_order_instead_of_trying_to_replace_it.yml +794 -0
- data/spec/fixtures/cassettes/Reporting_orders_to_TaxJar/with_an_order_with_invalid_zipcode/retry_of_a_previously_failed_transaction_sync.yml +418 -0
- data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_batch.yml +250 -0
- data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/creates_a_log_in_the_batch_with_an_order.yml +250 -0
- data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/creates_a_batch.yml +250 -0
- data/spec/fixtures/cassettes/Spree_Admin_TransactionSyncBatchesController/_create/user_supplies_a_start_date/user_supplies_start_and_end_date/creates_a_batch.yml +250 -0
- data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_CalculatorHelper/_taxable_address_/when_taxable_address_check_returns_true/with_US_address/when_the_address_is_not_within_a_nexus_region/1_3_2_2_2_1.yml +58 -0
- data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_CalculatorHelper/_taxable_address_/when_taxable_address_check_returns_true/with_US_address/when_the_address_is_within_a_nexus_region/1_3_2_2_1_1.yml +58 -0
- data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/doesn_t_create_a_new_transaction.yml +393 -0
- data/spec/fixtures/cassettes/SuperGood_SolidusTaxjar_Reporting/_refund_and_create_transaction/when_Taxjar_cannot_create_a_refund_transaction/raises_an_error.yml +393 -0
- data/spec/fixtures/cassettes/Taxjar_API_Request/logging_is_disabled/doesn_t_call_the_logger.yml +158 -0
- data/spec/fixtures/cassettes/Taxjar_API_Request/logging_is_enabled/calls_the_logger.yml +158 -0
- data/spec/fixtures/cassettes/features/spree/admin/checkout.yml +238 -0
- data/spec/fixtures/cassettes/features/spree/admin/refund.yml +1162 -0
- data/spec/jobs/super_good/solidus_taxjar/backfill_transaction_sync_batch_job_spec.rb +117 -0
- data/spec/jobs/super_good/solidus_taxjar/replace_transaction_job_spec.rb +95 -0
- data/spec/jobs/super_good/solidus_taxjar/report_transaction_job_spec.rb +76 -0
- data/spec/models/super_good/solidus_taxjar/configuration_spec.rb +79 -0
- data/spec/models/super_good/solidus_taxjar/order_transaction_spec.rb +36 -0
- data/spec/models/super_good/solidus_taxjar/transaction_sync_batch_spec.rb +48 -0
- data/spec/requests/spree/admin/order_request_spec.rb +121 -0
- data/spec/requests/spree/admin/taxjar_settings_request_spec.rb +198 -0
- data/spec/requests/spree/admin/taxjar_transactions_request_spec.rb +62 -0
- data/spec/requests/spree/admin/transaction_sync_batches_request_spec.rb +82 -0
- data/spec/spec_helper.rb +46 -3
- data/spec/subscribers/super_good/solidus_taxjar/spree/reporting_subscriber_spec.rb +278 -0
- data/spec/super_good/solidus_taxjar/addresses_spec.rb +0 -14
- data/spec/super_good/solidus_taxjar/api_params_spec.rb +261 -89
- data/spec/super_good/solidus_taxjar/api_spec.rb +152 -29
- data/spec/super_good/solidus_taxjar/backfill_transactions_spec.rb +24 -0
- data/spec/super_good/solidus_taxjar/cached_api_spec.rb +58 -0
- data/spec/super_good/solidus_taxjar/calculator_helper_spec.rb +131 -0
- data/spec/super_good/solidus_taxjar/discount_calculator_spec.rb +19 -2
- data/spec/super_good/solidus_taxjar/reportable_spec.rb +194 -0
- data/spec/super_good/solidus_taxjar/reporting_spec.rb +243 -0
- data/spec/super_good/solidus_taxjar/tax_calculator_spec.rb +19 -19
- data/spec/super_good/solidus_taxjar/tax_rate_calculator_spec.rb +8 -3
- data/spec/super_good/solidus_taxjar/transaction_id_generator_spec.rb +77 -0
- data/spec/super_good/solidus_taxjar_spec.rb +84 -0
- data/spec/support/checkoutable_store_shared_context.rb +19 -0
- data/spec/support/solidus_events_helper.rb +26 -0
- data/spec/taxjar/api/request_spec.rb +52 -0
- data/super_good-solidus_taxjar.gemspec +3 -2
- metadata +169 -17
- data/app/decorators/super_good/solidus_taxjar/spree/order_updater/fire_recalculated_event.rb +0 -18
- data/app/overrides/spree/admin/shared/_configuration_menu.rb +0 -11
- data/app/views/spree/admin/taxjar_settings/show.html.erb +0 -13
- data/spec/models/spree/order_updater_spec.rb +0 -12
@@ -0,0 +1,250 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.taxjar.com/v2/nexus/regions
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
12
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
13
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
14
|
+
Authorization:
|
15
|
+
- Bearer <BEARER_TOKEN>
|
16
|
+
X-Api-Version:
|
17
|
+
- '2020-08-07'
|
18
|
+
Plugin:
|
19
|
+
- supergoodsolidustaxjar
|
20
|
+
Connection:
|
21
|
+
- close
|
22
|
+
Host:
|
23
|
+
- api.taxjar.com
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
Content-Type:
|
30
|
+
- application/json; charset=utf-8
|
31
|
+
Content-Length:
|
32
|
+
- '277'
|
33
|
+
Connection:
|
34
|
+
- close
|
35
|
+
Date:
|
36
|
+
- Mon, 12 Dec 2022 19:28:53 GMT
|
37
|
+
X-Amzn-Requestid:
|
38
|
+
- cfc6a23e-c756-430c-b09d-5fcd7eb00117
|
39
|
+
X-Amz-Apigw-Id:
|
40
|
+
- dDEWbGnZoAMFsMg=
|
41
|
+
X-Amzn-Trace-Id:
|
42
|
+
- Root=1-639780f5-64e556e4647db702070ac394
|
43
|
+
X-Cache:
|
44
|
+
- Miss from cloudfront
|
45
|
+
Via:
|
46
|
+
- 1.1 e77661e211afe9242e85e573f12d5534.cloudfront.net (CloudFront)
|
47
|
+
X-Amz-Cf-Pop:
|
48
|
+
- SEA73-P2
|
49
|
+
X-Amz-Cf-Id:
|
50
|
+
- p3qZ15pDviCnk41TMJ0UOhOaY1mutG02m7KhYsu9MR9MNICQ8ZcIUA==
|
51
|
+
body:
|
52
|
+
encoding: UTF-8
|
53
|
+
string: '{"regions":[{"region_code":"BC","region":"British Columbia","country_code":"CA","country":"Canada"},{"region_code":"CA","region":"California","country_code":"US","country":"United
|
54
|
+
States"},{"region_code":"NY","region":"New York","country_code":"US","country":"United
|
55
|
+
States"}]}'
|
56
|
+
http_version:
|
57
|
+
recorded_at: Mon, 12 Dec 2022 19:28:53 GMT
|
58
|
+
- request:
|
59
|
+
method: post
|
60
|
+
uri: https://api.taxjar.com/v2/taxes
|
61
|
+
body:
|
62
|
+
encoding: UTF-8
|
63
|
+
string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
64
|
+
Different Road","line_items":[{"id":1,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
65
|
+
- 423646"}],"shipping":"100.0"}'
|
66
|
+
headers:
|
67
|
+
User-Agent:
|
68
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
69
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
70
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
71
|
+
Authorization:
|
72
|
+
- Bearer <BEARER_TOKEN>
|
73
|
+
X-Api-Version:
|
74
|
+
- '2020-08-07'
|
75
|
+
Plugin:
|
76
|
+
- supergoodsolidustaxjar
|
77
|
+
Connection:
|
78
|
+
- close
|
79
|
+
Content-Type:
|
80
|
+
- application/json; charset=UTF-8
|
81
|
+
Host:
|
82
|
+
- api.taxjar.com
|
83
|
+
response:
|
84
|
+
status:
|
85
|
+
code: 200
|
86
|
+
message: OK
|
87
|
+
headers:
|
88
|
+
Content-Type:
|
89
|
+
- application/json; charset=utf-8
|
90
|
+
Content-Length:
|
91
|
+
- '1487'
|
92
|
+
Connection:
|
93
|
+
- close
|
94
|
+
Date:
|
95
|
+
- Mon, 12 Dec 2022 19:28:53 GMT
|
96
|
+
X-Amzn-Requestid:
|
97
|
+
- e7abbbee-0152-404a-8c60-e7192b419cc3
|
98
|
+
Access-Control-Allow-Origin:
|
99
|
+
- https://developers.taxjar.com
|
100
|
+
X-Amz-Apigw-Id:
|
101
|
+
- dDEWdG4joAMFYnw=
|
102
|
+
X-Amzn-Trace-Id:
|
103
|
+
- Root=1-639780f5-4477b1b82f338b806662fa36
|
104
|
+
X-Cache:
|
105
|
+
- Miss from cloudfront
|
106
|
+
Via:
|
107
|
+
- 1.1 7d01bcfcfe27ce0b8979cf621dd081de.cloudfront.net (CloudFront)
|
108
|
+
X-Amz-Cf-Pop:
|
109
|
+
- SEA73-P2
|
110
|
+
X-Amz-Cf-Id:
|
111
|
+
- CNgKYe-3oIrHRpLePSHYssjT3IRQe8zx_aim5YChjvM63H0sQZJktQ==
|
112
|
+
body:
|
113
|
+
encoding: UTF-8
|
114
|
+
string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"1","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
|
115
|
+
YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
|
116
|
+
http_version:
|
117
|
+
recorded_at: Mon, 12 Dec 2022 19:28:53 GMT
|
118
|
+
- request:
|
119
|
+
method: post
|
120
|
+
uri: https://api.taxjar.com/v2/taxes
|
121
|
+
body:
|
122
|
+
encoding: UTF-8
|
123
|
+
string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
124
|
+
Different Road","line_items":[{"id":1,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
125
|
+
- 423646"}],"shipping":"100.0"}'
|
126
|
+
headers:
|
127
|
+
User-Agent:
|
128
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
129
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
130
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
131
|
+
Authorization:
|
132
|
+
- Bearer <BEARER_TOKEN>
|
133
|
+
X-Api-Version:
|
134
|
+
- '2020-08-07'
|
135
|
+
Plugin:
|
136
|
+
- supergoodsolidustaxjar
|
137
|
+
Connection:
|
138
|
+
- close
|
139
|
+
Content-Type:
|
140
|
+
- application/json; charset=UTF-8
|
141
|
+
Host:
|
142
|
+
- api.taxjar.com
|
143
|
+
response:
|
144
|
+
status:
|
145
|
+
code: 200
|
146
|
+
message: OK
|
147
|
+
headers:
|
148
|
+
Content-Type:
|
149
|
+
- application/json; charset=utf-8
|
150
|
+
Content-Length:
|
151
|
+
- '1487'
|
152
|
+
Connection:
|
153
|
+
- close
|
154
|
+
Date:
|
155
|
+
- Mon, 12 Dec 2022 19:28:54 GMT
|
156
|
+
X-Amzn-Requestid:
|
157
|
+
- 2e26cb96-b9e4-412e-9dea-521f50b7a1bb
|
158
|
+
Access-Control-Allow-Origin:
|
159
|
+
- https://developers.taxjar.com
|
160
|
+
X-Amz-Apigw-Id:
|
161
|
+
- dDEWhEGgIAMF3ZQ=
|
162
|
+
X-Amzn-Trace-Id:
|
163
|
+
- Root=1-639780f6-177de9cd151b69426322d645
|
164
|
+
X-Cache:
|
165
|
+
- Miss from cloudfront
|
166
|
+
Via:
|
167
|
+
- 1.1 25b9a991f871f75614e7f92f97b136a4.cloudfront.net (CloudFront)
|
168
|
+
X-Amz-Cf-Pop:
|
169
|
+
- SEA73-P2
|
170
|
+
X-Amz-Cf-Id:
|
171
|
+
- TxWx9kXGH93jG7nosPW8BH9jva_g_9A0vd-j9ZknnpMa3-1KwOUp2g==
|
172
|
+
body:
|
173
|
+
encoding: UTF-8
|
174
|
+
string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"1","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
|
175
|
+
YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
|
176
|
+
http_version:
|
177
|
+
recorded_at: Mon, 12 Dec 2022 19:28:54 GMT
|
178
|
+
- request:
|
179
|
+
method: post
|
180
|
+
uri: https://api.taxjar.com/v2/transactions/orders
|
181
|
+
body:
|
182
|
+
encoding: UTF-8
|
183
|
+
string: '{"customer_id":"1","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
184
|
+
Different Road","line_items":[{"id":1,"quantity":1,"product_identifier":"SKU-1","description":"Product
|
185
|
+
#1 - 2927 - Master","product_tax_code":"TaxCode - 423646","unit_price":"10.0","discount":0,"sales_tax":"0.89"}],"transaction_id":"R782646462","transaction_date":"2022-12-12T19:28:53Z","amount":"110.0","shipping":"100.0","sales_tax":"9.77"}'
|
186
|
+
headers:
|
187
|
+
User-Agent:
|
188
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
189
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
190
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
191
|
+
Authorization:
|
192
|
+
- Bearer <BEARER_TOKEN>
|
193
|
+
X-Api-Version:
|
194
|
+
- '2020-08-07'
|
195
|
+
Plugin:
|
196
|
+
- supergoodsolidustaxjar
|
197
|
+
Connection:
|
198
|
+
- close
|
199
|
+
Content-Type:
|
200
|
+
- application/json; charset=UTF-8
|
201
|
+
Host:
|
202
|
+
- api.taxjar.com
|
203
|
+
response:
|
204
|
+
status:
|
205
|
+
code: 201
|
206
|
+
message: Created
|
207
|
+
headers:
|
208
|
+
Content-Type:
|
209
|
+
- application/json; charset=utf-8
|
210
|
+
Content-Length:
|
211
|
+
- '643'
|
212
|
+
Connection:
|
213
|
+
- close
|
214
|
+
Date:
|
215
|
+
- Mon, 12 Dec 2022 19:28:55 GMT
|
216
|
+
X-Amzn-Requestid:
|
217
|
+
- d73e566d-e0ad-4aa1-883e-23aaa787b016
|
218
|
+
X-Amzn-Remapped-Content-Length:
|
219
|
+
- '643'
|
220
|
+
X-Amzn-Remapped-Connection:
|
221
|
+
- keep-alive
|
222
|
+
X-Request-Id:
|
223
|
+
- FzAicguDS-T_Q1wt5B9B
|
224
|
+
X-Api-Version:
|
225
|
+
- '2020-08-07'
|
226
|
+
X-Amz-Apigw-Id:
|
227
|
+
- dDEWnF_WIAMFhsA=
|
228
|
+
Cache-Control:
|
229
|
+
- max-age=0, private, must-revalidate
|
230
|
+
X-Amzn-Remapped-Server:
|
231
|
+
- Cowboy
|
232
|
+
X-Amzn-Remapped-Date:
|
233
|
+
- Mon, 12 Dec 2022 19:28:55 GMT
|
234
|
+
X-Cache:
|
235
|
+
- Miss from cloudfront
|
236
|
+
Via:
|
237
|
+
- 1.1 583992e175976bd59a21b4416890271e.cloudfront.net (CloudFront)
|
238
|
+
X-Amz-Cf-Pop:
|
239
|
+
- SEA73-P2
|
240
|
+
X-Amz-Cf-Id:
|
241
|
+
- D9HcBBpXmoas5KyFqg0QepGlrl5VDf8ioIjsTLLib9_SvTTZGBi94w==
|
242
|
+
body:
|
243
|
+
encoding: UTF-8
|
244
|
+
string: '{"order":{"user_id":225397,"transaction_reference_id":null,"transaction_id":"R782646462","transaction_date":"2022-12-12T19:28:53.000Z","to_zip":"11430","to_street":"A
|
245
|
+
Different Road","to_state":"NY","to_country":"US","to_city":"HERNDON","shipping":"100.0","sales_tax":"9.77","provider":"api","line_items":[{"unit_price":"10.0","sales_tax":"0.89","quantity":1,"product_tax_code":"TaxCode
|
246
|
+
- 423646","product_identifier":"SKU-1","id":0,"discount":"0.0","description":"Product
|
247
|
+
#1 - 2927 - Master"}],"from_zip":null,"from_street":null,"from_state":null,"from_country":"US","from_city":null,"exemption_type":null,"customer_id":"1","amount":"110.0"}}'
|
248
|
+
http_version:
|
249
|
+
recorded_at: Mon, 12 Dec 2022 19:28:54 GMT
|
250
|
+
recorded_with: VCR 4.0.0
|
@@ -0,0 +1,250 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.taxjar.com/v2/nexus/regions
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
12
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
13
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
14
|
+
Authorization:
|
15
|
+
- Bearer <BEARER_TOKEN>
|
16
|
+
X-Api-Version:
|
17
|
+
- '2020-08-07'
|
18
|
+
Plugin:
|
19
|
+
- supergoodsolidustaxjar
|
20
|
+
Connection:
|
21
|
+
- close
|
22
|
+
Host:
|
23
|
+
- api.taxjar.com
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
Content-Type:
|
30
|
+
- application/json; charset=utf-8
|
31
|
+
Content-Length:
|
32
|
+
- '277'
|
33
|
+
Connection:
|
34
|
+
- close
|
35
|
+
Date:
|
36
|
+
- Mon, 12 Dec 2022 19:28:56 GMT
|
37
|
+
X-Amzn-Requestid:
|
38
|
+
- e7759ad2-8720-4533-8f19-bb8810aa66fd
|
39
|
+
X-Amz-Apigw-Id:
|
40
|
+
- dDEW5HELoAMFU_Q=
|
41
|
+
X-Amzn-Trace-Id:
|
42
|
+
- Root=1-639780f8-4ce074131aed4d4b67b824f5
|
43
|
+
X-Cache:
|
44
|
+
- Miss from cloudfront
|
45
|
+
Via:
|
46
|
+
- 1.1 6a63e853422f3197776fb098fab5a416.cloudfront.net (CloudFront)
|
47
|
+
X-Amz-Cf-Pop:
|
48
|
+
- SEA73-P2
|
49
|
+
X-Amz-Cf-Id:
|
50
|
+
- VT8USSbDdvvPzHmlpAADI3x5gMqenzNEKewI2MGJVcSTgtQ4eUqpsw==
|
51
|
+
body:
|
52
|
+
encoding: UTF-8
|
53
|
+
string: '{"regions":[{"region_code":"BC","region":"British Columbia","country_code":"CA","country":"Canada"},{"region_code":"CA","region":"California","country_code":"US","country":"United
|
54
|
+
States"},{"region_code":"NY","region":"New York","country_code":"US","country":"United
|
55
|
+
States"}]}'
|
56
|
+
http_version:
|
57
|
+
recorded_at: Mon, 12 Dec 2022 19:28:56 GMT
|
58
|
+
- request:
|
59
|
+
method: post
|
60
|
+
uri: https://api.taxjar.com/v2/taxes
|
61
|
+
body:
|
62
|
+
encoding: UTF-8
|
63
|
+
string: '{"customer_id":"3","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
64
|
+
Different Road","line_items":[{"id":3,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
65
|
+
- 63905"}],"shipping":"100.0"}'
|
66
|
+
headers:
|
67
|
+
User-Agent:
|
68
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
69
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
70
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
71
|
+
Authorization:
|
72
|
+
- Bearer <BEARER_TOKEN>
|
73
|
+
X-Api-Version:
|
74
|
+
- '2020-08-07'
|
75
|
+
Plugin:
|
76
|
+
- supergoodsolidustaxjar
|
77
|
+
Connection:
|
78
|
+
- close
|
79
|
+
Content-Type:
|
80
|
+
- application/json; charset=UTF-8
|
81
|
+
Host:
|
82
|
+
- api.taxjar.com
|
83
|
+
response:
|
84
|
+
status:
|
85
|
+
code: 200
|
86
|
+
message: OK
|
87
|
+
headers:
|
88
|
+
Content-Type:
|
89
|
+
- application/json; charset=utf-8
|
90
|
+
Content-Length:
|
91
|
+
- '1487'
|
92
|
+
Connection:
|
93
|
+
- close
|
94
|
+
Date:
|
95
|
+
- Mon, 12 Dec 2022 19:28:56 GMT
|
96
|
+
X-Amzn-Requestid:
|
97
|
+
- ee7161bd-bbe8-48ac-9d27-dcf76d50df7f
|
98
|
+
Access-Control-Allow-Origin:
|
99
|
+
- https://developers.taxjar.com
|
100
|
+
X-Amz-Apigw-Id:
|
101
|
+
- dDEW6GwcIAMFuNg=
|
102
|
+
X-Amzn-Trace-Id:
|
103
|
+
- Root=1-639780f8-1d90dd7b73d7939527b9f1d4
|
104
|
+
X-Cache:
|
105
|
+
- Miss from cloudfront
|
106
|
+
Via:
|
107
|
+
- 1.1 9b21fd56256eda6d1379e32829c4c446.cloudfront.net (CloudFront)
|
108
|
+
X-Amz-Cf-Pop:
|
109
|
+
- SEA73-P2
|
110
|
+
X-Amz-Cf-Id:
|
111
|
+
- w4tFrU6b6asdgQOiTVGa6C8dOHaiWDb-CUlZ17OB8EFnbG3ttvpZBA==
|
112
|
+
body:
|
113
|
+
encoding: UTF-8
|
114
|
+
string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"3","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
|
115
|
+
YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
|
116
|
+
http_version:
|
117
|
+
recorded_at: Mon, 12 Dec 2022 19:28:56 GMT
|
118
|
+
- request:
|
119
|
+
method: post
|
120
|
+
uri: https://api.taxjar.com/v2/taxes
|
121
|
+
body:
|
122
|
+
encoding: UTF-8
|
123
|
+
string: '{"customer_id":"3","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
124
|
+
Different Road","line_items":[{"id":3,"quantity":1,"unit_price":"10.0","discount":0,"product_tax_code":"TaxCode
|
125
|
+
- 63905"}],"shipping":"100.0"}'
|
126
|
+
headers:
|
127
|
+
User-Agent:
|
128
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
129
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
130
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
131
|
+
Authorization:
|
132
|
+
- Bearer <BEARER_TOKEN>
|
133
|
+
X-Api-Version:
|
134
|
+
- '2020-08-07'
|
135
|
+
Plugin:
|
136
|
+
- supergoodsolidustaxjar
|
137
|
+
Connection:
|
138
|
+
- close
|
139
|
+
Content-Type:
|
140
|
+
- application/json; charset=UTF-8
|
141
|
+
Host:
|
142
|
+
- api.taxjar.com
|
143
|
+
response:
|
144
|
+
status:
|
145
|
+
code: 200
|
146
|
+
message: OK
|
147
|
+
headers:
|
148
|
+
Content-Type:
|
149
|
+
- application/json; charset=utf-8
|
150
|
+
Content-Length:
|
151
|
+
- '1487'
|
152
|
+
Connection:
|
153
|
+
- close
|
154
|
+
Date:
|
155
|
+
- Mon, 12 Dec 2022 19:28:57 GMT
|
156
|
+
X-Amzn-Requestid:
|
157
|
+
- 1653c63d-3a21-485a-b883-3962ab544803
|
158
|
+
Access-Control-Allow-Origin:
|
159
|
+
- https://developers.taxjar.com
|
160
|
+
X-Amz-Apigw-Id:
|
161
|
+
- dDEW_EiuIAMFQ2Q=
|
162
|
+
X-Amzn-Trace-Id:
|
163
|
+
- Root=1-639780f9-142b888217b0a917691f0848
|
164
|
+
X-Cache:
|
165
|
+
- Miss from cloudfront
|
166
|
+
Via:
|
167
|
+
- 1.1 6a63e853422f3197776fb098fab5a416.cloudfront.net (CloudFront)
|
168
|
+
X-Amz-Cf-Pop:
|
169
|
+
- SEA73-P2
|
170
|
+
X-Amz-Cf-Id:
|
171
|
+
- QpISgKzHFT31zixS2FAZDlI_t3fYaak1RV89eWYLm1UjtrSjwVCkEA==
|
172
|
+
body:
|
173
|
+
encoding: UTF-8
|
174
|
+
string: '{"tax":{"amount_to_collect":9.76,"breakdown":{"city_tax_collectable":5.36,"city_tax_rate":0.04875,"city_taxable_amount":110.0,"combined_tax_rate":0.08875,"county_tax_collectable":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"line_items":[{"city_amount":0.49,"city_tax_rate":0.04875,"city_taxable_amount":10.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"id":"3","special_district_amount":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_amount":0.4,"state_sales_tax_rate":0.04,"state_taxable_amount":10.0,"tax_collectable":0.89,"taxable_amount":10.0}],"shipping":{"city_amount":4.88,"city_tax_rate":0.04875,"city_taxable_amount":100.0,"combined_tax_rate":0.08875,"county_amount":0.0,"county_tax_rate":0.0,"county_taxable_amount":0.0,"special_district_amount":0.0,"special_tax_rate":0.0,"special_taxable_amount":0.0,"state_amount":4.0,"state_sales_tax_rate":0.04,"state_taxable_amount":100.0,"tax_collectable":8.88,"taxable_amount":100.0},"special_district_tax_collectable":0.0,"special_district_taxable_amount":0.0,"special_tax_rate":0.0,"state_tax_collectable":4.4,"state_tax_rate":0.04,"state_taxable_amount":110.0,"tax_collectable":9.76,"taxable_amount":110.0},"freight_taxable":true,"has_nexus":true,"jurisdictions":{"city":"NEW
|
175
|
+
YORK CITY","country":"US","county":"QUEENS","state":"NY"},"order_total_amount":110.0,"rate":0.08875,"shipping":100.0,"tax_source":"destination","taxable_amount":110.0}}'
|
176
|
+
http_version:
|
177
|
+
recorded_at: Mon, 12 Dec 2022 19:28:57 GMT
|
178
|
+
- request:
|
179
|
+
method: post
|
180
|
+
uri: https://api.taxjar.com/v2/transactions/orders
|
181
|
+
body:
|
182
|
+
encoding: UTF-8
|
183
|
+
string: '{"customer_id":"3","to_country":"US","to_zip":"11430","to_city":"Herndon","to_state":"NY","to_street":"A
|
184
|
+
Different Road","line_items":[{"id":3,"quantity":1,"product_identifier":"SKU-3","description":"Product
|
185
|
+
#3 - 7054 - Master","product_tax_code":"TaxCode - 63905","unit_price":"10.0","discount":0,"sales_tax":"0.89"}],"transaction_id":"R198929048","transaction_date":"2022-12-12T19:28:56Z","amount":"110.0","shipping":"100.0","sales_tax":"9.77"}'
|
186
|
+
headers:
|
187
|
+
User-Agent:
|
188
|
+
- 'TaxJar/Ruby (Darwin Noahs-MacBook-Pro.local 20.6.0 Darwin Kernel Version
|
189
|
+
20.6.0: Mon Aug 30 06:12:21 PDT 2021; root:xnu-7195.141.6~3/RELEASE_X86_64
|
190
|
+
x86_64; ruby 2.7.6-p219; OpenSSL 1.1.1n 15 Mar 2022) taxjar-ruby/3.0.4'
|
191
|
+
Authorization:
|
192
|
+
- Bearer <BEARER_TOKEN>
|
193
|
+
X-Api-Version:
|
194
|
+
- '2020-08-07'
|
195
|
+
Plugin:
|
196
|
+
- supergoodsolidustaxjar
|
197
|
+
Connection:
|
198
|
+
- close
|
199
|
+
Content-Type:
|
200
|
+
- application/json; charset=UTF-8
|
201
|
+
Host:
|
202
|
+
- api.taxjar.com
|
203
|
+
response:
|
204
|
+
status:
|
205
|
+
code: 201
|
206
|
+
message: Created
|
207
|
+
headers:
|
208
|
+
Content-Type:
|
209
|
+
- application/json; charset=utf-8
|
210
|
+
Content-Length:
|
211
|
+
- '642'
|
212
|
+
Connection:
|
213
|
+
- close
|
214
|
+
Date:
|
215
|
+
- Mon, 12 Dec 2022 19:28:57 GMT
|
216
|
+
X-Amzn-Requestid:
|
217
|
+
- ccb4d19c-d777-4298-8444-832ff5de6f7a
|
218
|
+
X-Amzn-Remapped-Content-Length:
|
219
|
+
- '642'
|
220
|
+
X-Amzn-Remapped-Connection:
|
221
|
+
- keep-alive
|
222
|
+
X-Request-Id:
|
223
|
+
- FzAicq-VTGDTGFc-2-1B
|
224
|
+
X-Api-Version:
|
225
|
+
- '2020-08-07'
|
226
|
+
X-Amz-Apigw-Id:
|
227
|
+
- dDEXDGG0IAMFmQQ=
|
228
|
+
Cache-Control:
|
229
|
+
- max-age=0, private, must-revalidate
|
230
|
+
X-Amzn-Remapped-Server:
|
231
|
+
- Cowboy
|
232
|
+
X-Amzn-Remapped-Date:
|
233
|
+
- Mon, 12 Dec 2022 19:28:57 GMT
|
234
|
+
X-Cache:
|
235
|
+
- Miss from cloudfront
|
236
|
+
Via:
|
237
|
+
- 1.1 e77661e211afe9242e85e573f12d5534.cloudfront.net (CloudFront)
|
238
|
+
X-Amz-Cf-Pop:
|
239
|
+
- SEA73-P2
|
240
|
+
X-Amz-Cf-Id:
|
241
|
+
- SM80kRZF_qFNNlOjhME8ESuGwBpp8AICZlmQGAYgxdd954Uy6fdARQ==
|
242
|
+
body:
|
243
|
+
encoding: UTF-8
|
244
|
+
string: '{"order":{"user_id":225397,"transaction_reference_id":null,"transaction_id":"R198929048","transaction_date":"2022-12-12T19:28:56.000Z","to_zip":"11430","to_street":"A
|
245
|
+
Different Road","to_state":"NY","to_country":"US","to_city":"HERNDON","shipping":"100.0","sales_tax":"9.77","provider":"api","line_items":[{"unit_price":"10.0","sales_tax":"0.89","quantity":1,"product_tax_code":"TaxCode
|
246
|
+
- 63905","product_identifier":"SKU-3","id":0,"discount":"0.0","description":"Product
|
247
|
+
#3 - 7054 - Master"}],"from_zip":null,"from_street":null,"from_state":null,"from_country":"US","from_city":null,"exemption_type":null,"customer_id":"3","amount":"110.0"}}'
|
248
|
+
http_version:
|
249
|
+
recorded_at: Mon, 12 Dec 2022 19:28:57 GMT
|
250
|
+
recorded_with: VCR 4.0.0
|