currency_cloud 0.16.2 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +3 -8
- data/README.md +4 -8
- data/currency_cloud.gemspec +4 -8
- data/lib/currency_cloud/errors/api_error.rb +6 -2
- data/lib/currency_cloud/payment.rb +4 -0
- data/lib/currency_cloud/payment_tracking_info.rb +5 -0
- data/lib/currency_cloud/version.rb +2 -2
- data/lib/currency_cloud/withdrawal_account.rb +17 -0
- data/lib/currency_cloud/withdrawal_account_funds.rb +5 -0
- data/lib/currency_cloud/withdrawal_accounts.rb +6 -0
- data/spec/integration/funding_account_spec.rb +29 -0
- data/spec/integration/payments_spec.rb +29 -0
- data/spec/integration/rates_spec.rb +8 -0
- data/spec/integration/reference_spec.rb +5 -3
- data/spec/integration/withdrawal_accounts_spec.rb +69 -0
- data/spec/support/vcr_cassettes/Accounts/can_retrieve_account_payment_charges_settings.yml +2 -2
- data/spec/support/vcr_cassettes/Accounts/can_update_account_payment_charges_settings.yml +2 -2
- data/spec/support/vcr_cassettes/Conversions/can_cancel_conversion/with_notes/has_a_non-empty_notes_attribute.yml +4 -4
- data/spec/support/vcr_cassettes/Conversions/can_cancel_conversion/without_notes/has_a_empty_notes_attribute.yml +4 -4
- data/spec/support/vcr_cassettes/Conversions/can_cancellation_quote.yml +3 -3
- data/spec/support/vcr_cassettes/Conversions/can_date_change_conversion.yml +4 -4
- data/spec/support/vcr_cassettes/Conversions/can_retrieve_cancellation_quote.yml +4 -4
- data/spec/support/vcr_cassettes/Conversions/can_retrieve_date_change_quote.yml +4 -4
- data/spec/support/vcr_cassettes/Conversions/can_retrieve_profit_and_loss.yml +2 -2
- data/spec/support/vcr_cassettes/Conversions/can_split_conversion.yml +4 -4
- data/spec/support/vcr_cassettes/Conversions/can_split_history.yml +4 -4
- data/spec/support/vcr_cassettes/Conversions/can_split_preview.yml +4 -4
- data/spec/support/vcr_cassettes/FundingAccounts/can_find.yml +2 -2
- data/spec/support/vcr_cassettes/FundingAccounts/can_find_bad_request.yml +142 -0
- data/spec/support/vcr_cassettes/FundingAccounts/can_find_missing_currency.yml +122 -0
- data/spec/support/vcr_cassettes/FundingAccounts/can_find_unauthorized.yml +62 -0
- data/spec/support/vcr_cassettes/IBANs/can_IBANs_for_a_specific_subaccount.yml +2 -2
- data/spec/support/vcr_cassettes/IBANs/can_IBANs_for_subaccounts.yml +2 -2
- data/spec/support/vcr_cassettes/IBANs/can_find.yml +1 -1
- data/spec/support/vcr_cassettes/Payments/can_authorise/when_payment_ids_are_valid.yml +5 -5
- data/spec/support/vcr_cassettes/Payments/can_create.yml +3 -3
- data/spec/support/vcr_cassettes/Payments/can_create_bad_request.yml +191 -0
- data/spec/support/vcr_cassettes/Payments/can_get_the_submission.yml +4 -4
- data/spec/support/vcr_cassettes/Payments/can_retrieve_confirmation.yml +3 -3
- data/spec/support/vcr_cassettes/Payments/can_retrieve_payment_delivery_date.yml +2 -2
- data/spec/support/vcr_cassettes/Payments/can_retrieve_payment_tracking_info.yml +291 -0
- data/spec/support/vcr_cassettes/Payments/can_retrieve_quote_payment_fee.yml +2 -2
- data/spec/support/vcr_cassettes/Rates/can_provided_detailed_rate_with_conversion_date_preference.yml +68 -0
- data/spec/support/vcr_cassettes/Reference/can_retrieve_bank_details.yml +2 -2
- data/spec/support/vcr_cassettes/Reference/can_retrieve_conversion_dates.yml +253 -110
- data/spec/support/vcr_cassettes/Reference/can_retrieve_currencies.yml +2 -2
- data/spec/support/vcr_cassettes/Reference/can_retrieve_payer_required_details.yml +2 -2
- data/spec/support/vcr_cassettes/Reference/can_retrieve_payment_dates.yml +2 -2
- data/spec/support/vcr_cassettes/Reference/can_retrieve_payment_fee_rules.yml +1 -1
- data/spec/support/vcr_cassettes/Reference/can_retrieve_payment_purpose_codes.yml +2 -2
- data/spec/support/vcr_cassettes/Reference/can_retrieve_settlement_accounts.yml +2 -2
- data/spec/support/vcr_cassettes/Reports/can_create_payments_report.yml +2 -2
- data/spec/support/vcr_cassettes/Reports/can_find_report_requests.yml +2 -2
- data/spec/support/vcr_cassettes/Reports/can_retrieve_report_request.yml +2 -2
- data/spec/support/vcr_cassettes/Transactions/can_retrieve_sender_details.yml +2 -2
- data/spec/support/vcr_cassettes/Transfers/can_create.yml +2 -2
- data/spec/support/vcr_cassettes/Transfers/can_find.yml +3 -3
- data/spec/support/vcr_cassettes/Transfers/can_retrieve.yml +3 -3
- data/spec/support/vcr_cassettes/VirtualAccounts/can_find.yml +2 -2
- data/spec/support/vcr_cassettes/VirtualAccounts/can_find_VANs_for_a_specific_subaccount.yml +2 -2
- data/spec/support/vcr_cassettes/VirtualAccounts/can_find_VANs_for_subaccounts.yml +2 -2
- data/spec/support/vcr_cassettes/WithdrawalAccounts/can_find_withdrawal_accounts.yml +133 -0
- data/spec/support/vcr_cassettes/WithdrawalAccounts/can_find_withdrawal_accounts2.yml +140 -0
- data/spec/support/vcr_cassettes/WithdrawalAccounts/can_pull_funds.yml +140 -0
- metadata +44 -31
- data/lib/currency_cloud/settlement.rb +0 -55
- data/spec/integration/settlements_spec.rb +0 -66
- data/spec/support/vcr_cassettes/Settlements/can_add_conversion.yml +0 -152
- data/spec/support/vcr_cassettes/Settlements/can_release.yml +0 -119
- data/spec/support/vcr_cassettes/Settlements/can_remove_conversion.yml +0 -119
- data/spec/support/vcr_cassettes/Settlements/can_unrelease.yml +0 -119
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://devapi.currencycloud.com/v2/authenticate/api
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: login_id=development%40currencycloud.com&api_key=deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef
|
|
9
|
+
headers:
|
|
10
|
+
User-Agent:
|
|
11
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
12
|
+
response:
|
|
13
|
+
status:
|
|
14
|
+
code: 200
|
|
15
|
+
message: OK
|
|
16
|
+
headers:
|
|
17
|
+
Date:
|
|
18
|
+
- Wed, 07 Oct 2020 13:21:53 GMT
|
|
19
|
+
Content-Type:
|
|
20
|
+
- application/json;charset=utf-8
|
|
21
|
+
Transfer-Encoding:
|
|
22
|
+
- chunked
|
|
23
|
+
Connection:
|
|
24
|
+
- keep-alive
|
|
25
|
+
Set-Cookie:
|
|
26
|
+
- AWSALB=ACelxgLIobgXnjf+plaVmr6LWO/5RFajaEn73GMne58wAMd3cKGZym4r0sL6DKwCTqxumsmcLUDaV1q5ZYPB8HWnMYmxVx4V4VE8/aKiEhHhRf46mW5VHR1hUyMW;
|
|
27
|
+
Expires=Wed, 14 Oct 2020 13:21:51 GMT; Path=/
|
|
28
|
+
- AWSALBCORS=ACelxgLIobgXnjf+plaVmr6LWO/5RFajaEn73GMne58wAMd3cKGZym4r0sL6DKwCTqxumsmcLUDaV1q5ZYPB8HWnMYmxVx4V4VE8/aKiEhHhRf46mW5VHR1hUyMW;
|
|
29
|
+
Expires=Wed, 14 Oct 2020 13:21:51 GMT; Path=/; SameSite=None; Secure
|
|
30
|
+
- __cfduid=d534110969083fee4b7b02858e5d1d4151602076911; expires=Fri, 06-Nov-20
|
|
31
|
+
13:21:51 GMT; path=/; domain=.currencycloud.com; HttpOnly; SameSite=Lax
|
|
32
|
+
Access-Control-Allow-Origin:
|
|
33
|
+
- "*"
|
|
34
|
+
X-Request-Id:
|
|
35
|
+
- 3a919a4b-3934-41bf-96da-7f4108c0b00b
|
|
36
|
+
Access-Control-Allow-Methods:
|
|
37
|
+
- POST
|
|
38
|
+
X-Content-Type-Options:
|
|
39
|
+
- nosniff
|
|
40
|
+
Vary:
|
|
41
|
+
- Origin
|
|
42
|
+
Access-Control-Allow-Headers:
|
|
43
|
+
- authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,X-Auth-Token,Origin,Authority,User-Agent
|
|
44
|
+
Cf-Cache-Status:
|
|
45
|
+
- DYNAMIC
|
|
46
|
+
Cf-Request-Id:
|
|
47
|
+
- 05a4d2c0d90000076abcb0f200000001
|
|
48
|
+
Expect-Ct:
|
|
49
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
50
|
+
Strict-Transport-Security:
|
|
51
|
+
- max-age=2592000; includeSubDomains
|
|
52
|
+
Server:
|
|
53
|
+
- cloudflare
|
|
54
|
+
Cf-Ray:
|
|
55
|
+
- 5de7ed7af914076a-LHR
|
|
56
|
+
body:
|
|
57
|
+
encoding: UTF-8
|
|
58
|
+
string: '{"auth_token":"deadbeefdeadbeefdeadbeefdeadbeef"}'
|
|
59
|
+
http_version:
|
|
60
|
+
recorded_at: Wed, 07 Oct 2020 13:21:53 GMT
|
|
61
|
+
- request:
|
|
62
|
+
method: get
|
|
63
|
+
uri: https://devapi.currencycloud.com/v2/payments/46ed4827-7b6f-4491-a06f-b548d5a7512d/tracking_info
|
|
64
|
+
body:
|
|
65
|
+
encoding: US-ASCII
|
|
66
|
+
string: ''
|
|
67
|
+
headers:
|
|
68
|
+
X-Auth-Token:
|
|
69
|
+
- deadbeefdeadbeefdeadbeefdeadbeef
|
|
70
|
+
User-Agent:
|
|
71
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
72
|
+
response:
|
|
73
|
+
status:
|
|
74
|
+
code: 200
|
|
75
|
+
message: OK
|
|
76
|
+
headers:
|
|
77
|
+
Date:
|
|
78
|
+
- Wed, 07 Oct 2020 13:26:10 GMT
|
|
79
|
+
Content-Type:
|
|
80
|
+
- application/json; charset=UTF-8
|
|
81
|
+
Transfer-Encoding:
|
|
82
|
+
- chunked
|
|
83
|
+
Connection:
|
|
84
|
+
- keep-alive
|
|
85
|
+
Set-Cookie:
|
|
86
|
+
- AWSALB=N8AduFiNXRcnfEiiTwJHxOLANIIUFhjdawJkX0dv5pjm1sOI0U6eGFa+3mxF08elJR7bys1q323j+dF1l90XLSAU8koTLbh6HMFyz7WRggzWYJeRX17Q7Xim4FoB;
|
|
87
|
+
Expires=Wed, 14 Oct 2020 13:26:10 GMT; Path=/
|
|
88
|
+
- AWSALBCORS=N8AduFiNXRcnfEiiTwJHxOLANIIUFhjdawJkX0dv5pjm1sOI0U6eGFa+3mxF08elJR7bys1q323j+dF1l90XLSAU8koTLbh6HMFyz7WRggzWYJeRX17Q7Xim4FoB;
|
|
89
|
+
Expires=Wed, 14 Oct 2020 13:26:10 GMT; Path=/; SameSite=None; Secure
|
|
90
|
+
- __cfduid=dfc3b8282add111fd84ed5ae9ec955b761602077170; expires=Fri, 06-Nov-20
|
|
91
|
+
13:26:10 GMT; path=/; domain=.currencycloud.com; HttpOnly; SameSite=Lax
|
|
92
|
+
Access-Control-Allow-Origin:
|
|
93
|
+
- "*"
|
|
94
|
+
X-Request-Id:
|
|
95
|
+
- a1c7409b-c24a-41ef-985c-9b6f4085e429
|
|
96
|
+
Access-Control-Allow-Methods:
|
|
97
|
+
- GET
|
|
98
|
+
X-Content-Type-Options:
|
|
99
|
+
- nosniff
|
|
100
|
+
Vary:
|
|
101
|
+
- Origin
|
|
102
|
+
Access-Control-Allow-Headers:
|
|
103
|
+
- authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,X-Auth-Token,Origin,Authority,User-Agent
|
|
104
|
+
Cf-Cache-Status:
|
|
105
|
+
- DYNAMIC
|
|
106
|
+
Cf-Request-Id:
|
|
107
|
+
- 05a4d6b3ff0000ce4ffbb93200000001
|
|
108
|
+
Expect-Ct:
|
|
109
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
110
|
+
Strict-Transport-Security:
|
|
111
|
+
- max-age=2592000; includeSubDomains
|
|
112
|
+
Server:
|
|
113
|
+
- cloudflare
|
|
114
|
+
Cf-Ray:
|
|
115
|
+
- 5de7f3ccca1cce4f-LHR
|
|
116
|
+
body:
|
|
117
|
+
encoding: UTF-8
|
|
118
|
+
string: '{
|
|
119
|
+
"uetr": "46ed4827-7b6f-4491-a06f-b548d5a7512d",
|
|
120
|
+
"transaction_status": {
|
|
121
|
+
"status": "processing",
|
|
122
|
+
"reason": "transferred_and_tracked"
|
|
123
|
+
},
|
|
124
|
+
"initiation_time": "2019-07-09T13:20:30+00:00",
|
|
125
|
+
"completion_time": null,
|
|
126
|
+
"last_update_time": "2019-07-10T15:39:08+00:00",
|
|
127
|
+
"payment_events": [
|
|
128
|
+
{
|
|
129
|
+
"tracker_event_type": "customer_credit_transfer_payment_cancellation_request",
|
|
130
|
+
"valid": true,
|
|
131
|
+
"transaction_status": null,
|
|
132
|
+
"funds_available": null,
|
|
133
|
+
"forwarded_to_agent": null,
|
|
134
|
+
"from": "BANABEBBXXX",
|
|
135
|
+
"to": "BANAUS33XXX",
|
|
136
|
+
"originator": null,
|
|
137
|
+
"serial_parties": null,
|
|
138
|
+
"sender_acknowledgement_receipt": "2019-07-10T15:39:08+00:00",
|
|
139
|
+
"instructed_amount": null,
|
|
140
|
+
"confirmed_amount": null,
|
|
141
|
+
"interbank_settlement_amount": null,
|
|
142
|
+
"interbank_settlement_date": null,
|
|
143
|
+
"charge_amount": null,
|
|
144
|
+
"charge_type": null,
|
|
145
|
+
"foreign_exchange_details": null,
|
|
146
|
+
"last_update_time": "2019-07-10T15:39:08+00:00"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"tracker_event_type": "customer_credit_transfer_payment_cancellation_request",
|
|
150
|
+
"valid": true,
|
|
151
|
+
"transaction_status": null,
|
|
152
|
+
"funds_available": null,
|
|
153
|
+
"forwarded_to_agent": null,
|
|
154
|
+
"from": "BANABEBBXXX",
|
|
155
|
+
"to": "BANAUS33XXX",
|
|
156
|
+
"originator": null,
|
|
157
|
+
"serial_parties": null,
|
|
158
|
+
"sender_acknowledgement_receipt": "2019-07-10T14:22:41+00:00",
|
|
159
|
+
"instructed_amount": null,
|
|
160
|
+
"confirmed_amount": null,
|
|
161
|
+
"interbank_settlement_amount": null,
|
|
162
|
+
"interbank_settlement_date": null,
|
|
163
|
+
"charge_amount": null,
|
|
164
|
+
"charge_type": null,
|
|
165
|
+
"foreign_exchange_details": null,
|
|
166
|
+
"last_update_time": "2019-07-10T14:22:41+00:00"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"tracker_event_type": "credit_transfer_payment_cancellation_request",
|
|
170
|
+
"valid": true,
|
|
171
|
+
"transaction_status": null,
|
|
172
|
+
"funds_available": null,
|
|
173
|
+
"forwarded_to_agent": null,
|
|
174
|
+
"from": "BANABEBBXXX",
|
|
175
|
+
"to": "BANAUS33XXX",
|
|
176
|
+
"originator": "BANABEBBXXX",
|
|
177
|
+
"serial_parties": null,
|
|
178
|
+
"sender_acknowledgement_receipt": "2019-07-10T14:22:41+00:00",
|
|
179
|
+
"instructed_amount": null,
|
|
180
|
+
"confirmed_amount": null,
|
|
181
|
+
"interbank_settlement_amount": {
|
|
182
|
+
"currency": "USD",
|
|
183
|
+
"amount": "745437.57"
|
|
184
|
+
},
|
|
185
|
+
"interbank_settlement_date": "2019-07-09T00:00:00+00:00",
|
|
186
|
+
"charge_amount": null,
|
|
187
|
+
"charge_type": null,
|
|
188
|
+
"foreign_exchange_details": null,
|
|
189
|
+
"last_update_time": "2019-07-10T14:22:41+00:00"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"tracker_event_type": "customer_credit_transfer_payment_cancellation_request",
|
|
193
|
+
"valid": true,
|
|
194
|
+
"transaction_status": null,
|
|
195
|
+
"funds_available": null,
|
|
196
|
+
"forwarded_to_agent": null,
|
|
197
|
+
"from": "BANABEBBXXX",
|
|
198
|
+
"to": "BANAUS33XXX",
|
|
199
|
+
"originator": null,
|
|
200
|
+
"serial_parties": null,
|
|
201
|
+
"sender_acknowledgement_receipt": "2019-07-10T14:22:41+00:00",
|
|
202
|
+
"instructed_amount": null,
|
|
203
|
+
"confirmed_amount": null,
|
|
204
|
+
"interbank_settlement_amount": null,
|
|
205
|
+
"interbank_settlement_date": null,
|
|
206
|
+
"charge_amount": null,
|
|
207
|
+
"charge_type": null,
|
|
208
|
+
"foreign_exchange_details": null,
|
|
209
|
+
"last_update_time": "2019-07-10T14:22:41+00:00"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"tracker_event_type": "customer_credit_transfer_payment_cancellation_request",
|
|
213
|
+
"valid": true,
|
|
214
|
+
"transaction_status": null,
|
|
215
|
+
"funds_available": null,
|
|
216
|
+
"forwarded_to_agent": null,
|
|
217
|
+
"from": "BANABEBBXXX",
|
|
218
|
+
"to": "BANAUS33XXX",
|
|
219
|
+
"originator": null,
|
|
220
|
+
"serial_parties": null,
|
|
221
|
+
"sender_acknowledgement_receipt": "2019-07-10T14:22:41+00:00",
|
|
222
|
+
"instructed_amount": null,
|
|
223
|
+
"confirmed_amount": null,
|
|
224
|
+
"interbank_settlement_amount": null,
|
|
225
|
+
"interbank_settlement_date": null,
|
|
226
|
+
"charge_amount": null,
|
|
227
|
+
"charge_type": null,
|
|
228
|
+
"foreign_exchange_details": null,
|
|
229
|
+
"last_update_time": "2019-07-10T14:22:41+00:00"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"tracker_event_type": "credit_transfer_payment_cancellation_request",
|
|
233
|
+
"valid": true,
|
|
234
|
+
"transaction_status": null,
|
|
235
|
+
"funds_available": null,
|
|
236
|
+
"forwarded_to_agent": null,
|
|
237
|
+
"from": "BANABEBBXXX",
|
|
238
|
+
"to": "BANAUS33XXX",
|
|
239
|
+
"originator": null,
|
|
240
|
+
"serial_parties": null,
|
|
241
|
+
"sender_acknowledgement_receipt": "2019-07-10T14:17:39+00:00",
|
|
242
|
+
"instructed_amount": null,
|
|
243
|
+
"confirmed_amount": null,
|
|
244
|
+
"interbank_settlement_amount": null,
|
|
245
|
+
"interbank_settlement_date": null,
|
|
246
|
+
"charge_amount": null,
|
|
247
|
+
"charge_type": null,
|
|
248
|
+
"foreign_exchange_details": null,
|
|
249
|
+
"last_update_time": "2019-07-10T14:22:41+00:00"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"tracker_event_type": "customer_credit_transfer_payment",
|
|
253
|
+
"valid": true,
|
|
254
|
+
"transaction_status": {
|
|
255
|
+
"status": "processing",
|
|
256
|
+
"reason": "transferred_and_tracked"
|
|
257
|
+
},
|
|
258
|
+
"funds_available": null,
|
|
259
|
+
"forwarded_to_agent": null,
|
|
260
|
+
"from": "BANABEBBXXX",
|
|
261
|
+
"to": "BANAUS33XXX",
|
|
262
|
+
"originator": "BANABEBBXXX",
|
|
263
|
+
"serial_parties": {
|
|
264
|
+
"debtor": null,
|
|
265
|
+
"debtor_agent": "GPMRCH30",
|
|
266
|
+
"intermediary_agent1": null,
|
|
267
|
+
"instructing_reimbursement_agent": null,
|
|
268
|
+
"creditor_agent": "GPMRQAJ0",
|
|
269
|
+
"creditor": null
|
|
270
|
+
},
|
|
271
|
+
"sender_acknowledgement_receipt": "2019-07-09T13:20:30+00:00",
|
|
272
|
+
"instructed_amount": {
|
|
273
|
+
"currency": "USD",
|
|
274
|
+
"amount": "745437.57"
|
|
275
|
+
},
|
|
276
|
+
"confirmed_amount": null,
|
|
277
|
+
"interbank_settlement_amount": {
|
|
278
|
+
"currency": "USD",
|
|
279
|
+
"amount": "745437.57"
|
|
280
|
+
},
|
|
281
|
+
"interbank_settlement_date": "2019-07-09T00:00:00+00:00",
|
|
282
|
+
"charge_amount": null,
|
|
283
|
+
"charge_type": "shared",
|
|
284
|
+
"foreign_exchange_details": null,
|
|
285
|
+
"last_update_time": "2019-07-09T13:20:50+00:00"
|
|
286
|
+
}
|
|
287
|
+
]
|
|
288
|
+
}'
|
|
289
|
+
http_version:
|
|
290
|
+
recorded_at: Wed, 07 Oct 2020 13:26:10 GMT
|
|
291
|
+
recorded_with: VCR 5.0.0
|
|
@@ -10,7 +10,7 @@ http_interactions:
|
|
|
10
10
|
X-Auth-Token:
|
|
11
11
|
- deadbeefdeadbeefdeadbeefdeadbeef
|
|
12
12
|
User-Agent:
|
|
13
|
-
- CurrencyCloudSDK/2.0 Ruby/
|
|
13
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
14
14
|
response:
|
|
15
15
|
status:
|
|
16
16
|
code: 200
|
|
@@ -66,7 +66,7 @@ http_interactions:
|
|
|
66
66
|
string: login_id=development%40currencycloud.com&api_key=deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef
|
|
67
67
|
headers:
|
|
68
68
|
User-Agent:
|
|
69
|
-
- CurrencyCloudSDK/2.0 Ruby/
|
|
69
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
70
70
|
response:
|
|
71
71
|
status:
|
|
72
72
|
code: 200
|
data/spec/support/vcr_cassettes/Rates/can_provided_detailed_rate_with_conversion_date_preference.yml
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://devapi.currencycloud.com/v2/rates/detailed?amount=10000&buy_currency=GBP&conversion_date_preference=optimize_liquidity&fixed_side=buy&sell_currency=USD
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
X-Auth-Token:
|
|
11
|
+
- bbdd421bdda373ea69670c9101fa9197
|
|
12
|
+
User-Agent:
|
|
13
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
14
|
+
response:
|
|
15
|
+
status:
|
|
16
|
+
code: 200
|
|
17
|
+
message: OK
|
|
18
|
+
headers:
|
|
19
|
+
Date:
|
|
20
|
+
- Tue, 19 May 2020 13:12:46 GMT
|
|
21
|
+
Content-Type:
|
|
22
|
+
- application/json; charset=UTF-8
|
|
23
|
+
Transfer-Encoding:
|
|
24
|
+
- chunked
|
|
25
|
+
Connection:
|
|
26
|
+
- keep-alive
|
|
27
|
+
Set-Cookie:
|
|
28
|
+
- AWSALB=na8AqRHeMkOqX/+eQlx8IwRDM2SCnWVr/7LaiYIHeMRkavfvcBIqPF0Z67d3hdu5iJUL+YSdmtclVBz5iNUMqvXINyDL31qLgoqAtHGz79YOGeZyONq+HcKG53ll;
|
|
29
|
+
Expires=Tue, 26 May 2020 13:12:46 GMT; Path=/
|
|
30
|
+
- AWSALBCORS=na8AqRHeMkOqX/+eQlx8IwRDM2SCnWVr/7LaiYIHeMRkavfvcBIqPF0Z67d3hdu5iJUL+YSdmtclVBz5iNUMqvXINyDL31qLgoqAtHGz79YOGeZyONq+HcKG53ll;
|
|
31
|
+
Expires=Tue, 26 May 2020 13:12:46 GMT; Path=/; SameSite=None; Secure
|
|
32
|
+
- __cfduid=d8ad6e9301e9e13448582f01d29b087961589893966; expires=Thu, 18-Jun-20
|
|
33
|
+
13:12:46 GMT; path=/; domain=.currencycloud.com; HttpOnly; SameSite=Lax
|
|
34
|
+
Access-Control-Allow-Origin:
|
|
35
|
+
- "*"
|
|
36
|
+
X-Request-Id:
|
|
37
|
+
- 0670d62c-e918-4caf-b70f-c2e8e9bd283f
|
|
38
|
+
Access-Control-Allow-Methods:
|
|
39
|
+
- GET
|
|
40
|
+
X-Content-Type-Options:
|
|
41
|
+
- nosniff
|
|
42
|
+
Vary:
|
|
43
|
+
- Origin
|
|
44
|
+
Access-Control-Allow-Headers:
|
|
45
|
+
- authorization,Access-Control-Allow-Origin,Content-Type,SOAPAction,X-Auth-Token,Origin,Authority
|
|
46
|
+
Cf-Cache-Status:
|
|
47
|
+
- DYNAMIC
|
|
48
|
+
Expect-Ct:
|
|
49
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
|
50
|
+
Strict-Transport-Security:
|
|
51
|
+
- max-age=2592000; includeSubDomains
|
|
52
|
+
Server:
|
|
53
|
+
- cloudflare
|
|
54
|
+
Cf-Ray:
|
|
55
|
+
- 595e1247ac52ce8b-LHR
|
|
56
|
+
Cf-Request-Id:
|
|
57
|
+
- 02cea9c0cc0000ce8b1b3f2200000001
|
|
58
|
+
body:
|
|
59
|
+
encoding: UTF-8
|
|
60
|
+
string: '{ "settlement_cut_off_time": "2020-05-21T14:00:00Z", "currency_pair":
|
|
61
|
+
"GBPUSD", "client_buy_currency": "GBP", "client_sell_currency": "USD", "client_buy_amount":
|
|
62
|
+
"10000.00", "client_sell_amount": "14081.00", "fixed_side": "buy", "client_rate":
|
|
63
|
+
"1.4081", "partner_rate": null, "core_rate": "1.4081", "deposit_required":
|
|
64
|
+
false, "deposit_amount": "0.0", "deposit_currency": "USD", "mid_market_rate":
|
|
65
|
+
"1.4080" }'
|
|
66
|
+
http_version:
|
|
67
|
+
recorded_at: Tue, 19 May 2020 13:12:46 GMT
|
|
68
|
+
recorded_with: VCR 5.0.0
|
|
@@ -8,7 +8,7 @@ http_interactions:
|
|
|
8
8
|
string: login_id=development%40currencycloud.com&api_key=deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef
|
|
9
9
|
headers:
|
|
10
10
|
User-Agent:
|
|
11
|
-
- CurrencyCloudSDK/2.0 Ruby/
|
|
11
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
12
12
|
response:
|
|
13
13
|
status:
|
|
14
14
|
code: 200
|
|
@@ -58,7 +58,7 @@ http_interactions:
|
|
|
58
58
|
X-Auth-Token:
|
|
59
59
|
- deadbeefdeadbeefdeadbeefdeadbeef
|
|
60
60
|
User-Agent:
|
|
61
|
-
- CurrencyCloudSDK/2.0 Ruby/
|
|
61
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
62
62
|
response:
|
|
63
63
|
status:
|
|
64
64
|
code: 200
|
|
@@ -8,7 +8,7 @@ http_interactions:
|
|
|
8
8
|
string: login_id=development%40currencycloud.com&api_key=deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef
|
|
9
9
|
headers:
|
|
10
10
|
User-Agent:
|
|
11
|
-
- CurrencyCloudSDK/2.0 Ruby/
|
|
11
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
12
12
|
response:
|
|
13
13
|
status:
|
|
14
14
|
code: 200
|
|
@@ -58,14 +58,14 @@ http_interactions:
|
|
|
58
58
|
X-Auth-Token:
|
|
59
59
|
- deadbeefdeadbeefdeadbeefdeadbeef
|
|
60
60
|
User-Agent:
|
|
61
|
-
- CurrencyCloudSDK/2.0 Ruby/
|
|
61
|
+
- CurrencyCloudSDK/2.0 Ruby/1.2.1
|
|
62
62
|
response:
|
|
63
63
|
status:
|
|
64
64
|
code: 200
|
|
65
65
|
message: OK
|
|
66
66
|
headers:
|
|
67
67
|
Date:
|
|
68
|
-
-
|
|
68
|
+
- Tue, 10 Nov 2020 15:41:45 GMT
|
|
69
69
|
Content-Type:
|
|
70
70
|
- application/json;charset=utf-8
|
|
71
71
|
Transfer-Encoding:
|
|
@@ -95,113 +95,256 @@ http_interactions:
|
|
|
95
95
|
- 43b30c778e33137d-LHR
|
|
96
96
|
body:
|
|
97
97
|
encoding: US-ASCII
|
|
98
|
-
string: '{
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
98
|
+
string: '{
|
|
99
|
+
"first_conversion_cutoff_datetime": "2020-11-10T15:30:00+00:00",
|
|
100
|
+
"first_conversion_date": "2020-11-10",
|
|
101
|
+
"default_conversion_date": "2020-11-12",
|
|
102
|
+
"optimize_liquidity_conversion_date": "2020-11-12",
|
|
103
|
+
"invalid_conversion_dates": {
|
|
104
|
+
"2020-11-11": "Veterans'' Day",
|
|
105
|
+
"2020-11-14": "No trading on Saturday",
|
|
106
|
+
"2020-11-15": "No trading on Sunday",
|
|
107
|
+
"2020-11-21": "No trading on Saturday",
|
|
108
|
+
"2020-11-22": "No trading on Sunday",
|
|
109
|
+
"2020-11-26": "Thanksgiving",
|
|
110
|
+
"2020-11-28": "No trading on Saturday",
|
|
111
|
+
"2020-11-29": "No trading on Sunday",
|
|
112
|
+
"2020-12-05": "No trading on Saturday",
|
|
113
|
+
"2020-12-06": "No trading on Sunday",
|
|
114
|
+
"2020-12-12": "No trading on Saturday",
|
|
115
|
+
"2020-12-13": "No trading on Sunday",
|
|
116
|
+
"2020-12-19": "No trading on Saturday",
|
|
117
|
+
"2020-12-20": "No trading on Sunday",
|
|
118
|
+
"2020-12-25": "Christmas",
|
|
119
|
+
"2020-12-26": "No trading on Saturday",
|
|
120
|
+
"2020-12-27": "No trading on Sunday",
|
|
121
|
+
"2020-12-28": "Boxing Day OBS",
|
|
122
|
+
"2021-01-01": "New Year''s Day",
|
|
123
|
+
"2021-01-02": "No trading on Saturday",
|
|
124
|
+
"2021-01-03": "No trading on Sunday",
|
|
125
|
+
"2021-01-09": "No trading on Saturday",
|
|
126
|
+
"2021-01-10": "No trading on Sunday",
|
|
127
|
+
"2021-01-16": "No trading on Saturday",
|
|
128
|
+
"2021-01-17": "No trading on Sunday",
|
|
129
|
+
"2021-01-18": "Martin Luther King Jr. Day",
|
|
130
|
+
"2021-01-23": "No trading on Saturday",
|
|
131
|
+
"2021-01-24": "No trading on Sunday",
|
|
132
|
+
"2021-01-30": "No trading on Saturday",
|
|
133
|
+
"2021-01-31": "No trading on Sunday",
|
|
134
|
+
"2021-02-06": "No trading on Saturday",
|
|
135
|
+
"2021-02-07": "No trading on Sunday",
|
|
136
|
+
"2021-02-13": "No trading on Saturday",
|
|
137
|
+
"2021-02-14": "No trading on Sunday",
|
|
138
|
+
"2021-02-15": "Presidents'' Day",
|
|
139
|
+
"2021-02-20": "No trading on Saturday",
|
|
140
|
+
"2021-02-21": "No trading on Sunday",
|
|
141
|
+
"2021-02-27": "No trading on Saturday",
|
|
142
|
+
"2021-02-28": "No trading on Sunday",
|
|
143
|
+
"2021-03-06": "No trading on Saturday",
|
|
144
|
+
"2021-03-07": "No trading on Sunday",
|
|
145
|
+
"2021-03-13": "No trading on Saturday",
|
|
146
|
+
"2021-03-14": "No trading on Sunday",
|
|
147
|
+
"2021-03-20": "No trading on Saturday",
|
|
148
|
+
"2021-03-21": "No trading on Sunday",
|
|
149
|
+
"2021-03-27": "No trading on Saturday",
|
|
150
|
+
"2021-03-28": "No trading on Sunday",
|
|
151
|
+
"2021-04-02": "Good Friday",
|
|
152
|
+
"2021-04-03": "No trading on Saturday",
|
|
153
|
+
"2021-04-04": "No trading on Sunday",
|
|
154
|
+
"2021-04-05": "Easter Monday",
|
|
155
|
+
"2021-04-10": "No trading on Saturday",
|
|
156
|
+
"2021-04-11": "No trading on Sunday",
|
|
157
|
+
"2021-04-17": "No trading on Saturday",
|
|
158
|
+
"2021-04-18": "No trading on Sunday",
|
|
159
|
+
"2021-04-24": "No trading on Saturday",
|
|
160
|
+
"2021-04-25": "No trading on Sunday",
|
|
161
|
+
"2021-05-01": "No trading on Saturday",
|
|
162
|
+
"2021-05-02": "No trading on Sunday",
|
|
163
|
+
"2021-05-03": "Early May Bank Holiday",
|
|
164
|
+
"2021-05-08": "No trading on Saturday",
|
|
165
|
+
"2021-05-09": "No trading on Sunday",
|
|
166
|
+
"2021-05-15": "No trading on Saturday",
|
|
167
|
+
"2021-05-16": "No trading on Sunday",
|
|
168
|
+
"2021-05-22": "No trading on Saturday",
|
|
169
|
+
"2021-05-23": "No trading on Sunday",
|
|
170
|
+
"2021-05-29": "No trading on Saturday",
|
|
171
|
+
"2021-05-30": "No trading on Sunday",
|
|
172
|
+
"2021-05-31": "Memorial Day",
|
|
173
|
+
"2021-06-05": "No trading on Saturday",
|
|
174
|
+
"2021-06-06": "No trading on Sunday",
|
|
175
|
+
"2021-06-12": "No trading on Saturday",
|
|
176
|
+
"2021-06-13": "No trading on Sunday",
|
|
177
|
+
"2021-06-19": "No trading on Saturday",
|
|
178
|
+
"2021-06-20": "No trading on Sunday",
|
|
179
|
+
"2021-06-26": "No trading on Saturday",
|
|
180
|
+
"2021-06-27": "No trading on Sunday",
|
|
181
|
+
"2021-07-03": "No trading on Saturday",
|
|
182
|
+
"2021-07-04": "No trading on Sunday",
|
|
183
|
+
"2021-07-05": "Independence Day OBS",
|
|
184
|
+
"2021-07-10": "No trading on Saturday",
|
|
185
|
+
"2021-07-11": "No trading on Sunday",
|
|
186
|
+
"2021-07-17": "No trading on Saturday",
|
|
187
|
+
"2021-07-18": "No trading on Sunday",
|
|
188
|
+
"2021-07-24": "No trading on Saturday",
|
|
189
|
+
"2021-07-25": "No trading on Sunday",
|
|
190
|
+
"2021-07-31": "No trading on Saturday",
|
|
191
|
+
"2021-08-01": "No trading on Sunday",
|
|
192
|
+
"2021-08-07": "No trading on Saturday",
|
|
193
|
+
"2021-08-08": "No trading on Sunday",
|
|
194
|
+
"2021-08-14": "No trading on Saturday",
|
|
195
|
+
"2021-08-15": "No trading on Sunday",
|
|
196
|
+
"2021-08-21": "No trading on Saturday",
|
|
197
|
+
"2021-08-22": "No trading on Sunday",
|
|
198
|
+
"2021-08-28": "No trading on Saturday",
|
|
199
|
+
"2021-08-29": "No trading on Sunday",
|
|
200
|
+
"2021-08-30": "Summer Bank Holiday",
|
|
201
|
+
"2021-09-04": "No trading on Saturday",
|
|
202
|
+
"2021-09-05": "No trading on Sunday",
|
|
203
|
+
"2021-09-06": "Labor Day",
|
|
204
|
+
"2021-09-11": "No trading on Saturday",
|
|
205
|
+
"2021-09-12": "No trading on Sunday",
|
|
206
|
+
"2021-09-18": "No trading on Saturday",
|
|
207
|
+
"2021-09-19": "No trading on Sunday",
|
|
208
|
+
"2021-09-25": "No trading on Saturday",
|
|
209
|
+
"2021-09-26": "No trading on Sunday",
|
|
210
|
+
"2021-10-02": "No trading on Saturday",
|
|
211
|
+
"2021-10-03": "No trading on Sunday",
|
|
212
|
+
"2021-10-09": "No trading on Saturday",
|
|
213
|
+
"2021-10-10": "No trading on Sunday",
|
|
214
|
+
"2021-10-11": "Columbus Day",
|
|
215
|
+
"2021-10-16": "No trading on Saturday",
|
|
216
|
+
"2021-10-17": "No trading on Sunday",
|
|
217
|
+
"2021-10-23": "No trading on Saturday",
|
|
218
|
+
"2021-10-24": "No trading on Sunday",
|
|
219
|
+
"2021-10-30": "No trading on Saturday",
|
|
220
|
+
"2021-10-31": "No trading on Sunday",
|
|
221
|
+
"2021-11-06": "No trading on Saturday",
|
|
222
|
+
"2021-11-07": "No trading on Sunday",
|
|
223
|
+
"2021-11-11": "Veterans'' Day",
|
|
224
|
+
"2021-11-13": "No trading on Saturday",
|
|
225
|
+
"2021-11-14": "No trading on Sunday",
|
|
226
|
+
"2021-11-20": "No trading on Saturday",
|
|
227
|
+
"2021-11-21": "No trading on Sunday",
|
|
228
|
+
"2021-11-25": "Thanksgiving",
|
|
229
|
+
"2021-11-27": "No trading on Saturday",
|
|
230
|
+
"2021-11-28": "No trading on Sunday",
|
|
231
|
+
"2021-12-04": "No trading on Saturday",
|
|
232
|
+
"2021-12-05": "No trading on Sunday",
|
|
233
|
+
"2021-12-11": "No trading on Saturday",
|
|
234
|
+
"2021-12-12": "No trading on Sunday",
|
|
235
|
+
"2021-12-18": "No trading on Saturday",
|
|
236
|
+
"2021-12-19": "No trading on Sunday",
|
|
237
|
+
"2021-12-25": "No trading on Saturday",
|
|
238
|
+
"2021-12-26": "No trading on Sunday",
|
|
239
|
+
"2021-12-27": "Christmas OBS",
|
|
240
|
+
"2021-12-28": "Boxing Day OBS",
|
|
241
|
+
"2022-01-01": "No trading on Saturday",
|
|
242
|
+
"2022-01-02": "No trading on Sunday",
|
|
243
|
+
"2022-01-03": "New Year''s Day OBS",
|
|
244
|
+
"2022-01-08": "No trading on Saturday",
|
|
245
|
+
"2022-01-09": "No trading on Sunday",
|
|
246
|
+
"2022-01-15": "No trading on Saturday",
|
|
247
|
+
"2022-01-16": "No trading on Sunday",
|
|
248
|
+
"2022-01-17": "Martin Luther King Jr. Day",
|
|
249
|
+
"2022-01-22": "No trading on Saturday",
|
|
250
|
+
"2022-01-23": "No trading on Sunday",
|
|
251
|
+
"2022-01-29": "No trading on Saturday",
|
|
252
|
+
"2022-01-30": "No trading on Sunday",
|
|
253
|
+
"2022-02-05": "No trading on Saturday",
|
|
254
|
+
"2022-02-06": "No trading on Sunday",
|
|
255
|
+
"2022-02-12": "No trading on Saturday",
|
|
256
|
+
"2022-02-13": "No trading on Sunday",
|
|
257
|
+
"2022-02-19": "No trading on Saturday",
|
|
258
|
+
"2022-02-20": "No trading on Sunday",
|
|
259
|
+
"2022-02-21": "Presidents'' Day",
|
|
260
|
+
"2022-02-26": "No trading on Saturday",
|
|
261
|
+
"2022-02-27": "No trading on Sunday",
|
|
262
|
+
"2022-03-05": "No trading on Saturday",
|
|
263
|
+
"2022-03-06": "No trading on Sunday",
|
|
264
|
+
"2022-03-12": "No trading on Saturday",
|
|
265
|
+
"2022-03-13": "No trading on Sunday",
|
|
266
|
+
"2022-03-19": "No trading on Saturday",
|
|
267
|
+
"2022-03-20": "No trading on Sunday",
|
|
268
|
+
"2022-03-26": "No trading on Saturday",
|
|
269
|
+
"2022-03-27": "No trading on Sunday",
|
|
270
|
+
"2022-04-02": "No trading on Saturday",
|
|
271
|
+
"2022-04-03": "No trading on Sunday",
|
|
272
|
+
"2022-04-09": "No trading on Saturday",
|
|
273
|
+
"2022-04-10": "No trading on Sunday",
|
|
274
|
+
"2022-04-15": "Good Friday",
|
|
275
|
+
"2022-04-16": "No trading on Saturday",
|
|
276
|
+
"2022-04-17": "No trading on Sunday",
|
|
277
|
+
"2022-04-18": "Easter Monday",
|
|
278
|
+
"2022-04-23": "No trading on Saturday",
|
|
279
|
+
"2022-04-24": "No trading on Sunday",
|
|
280
|
+
"2022-04-30": "No trading on Saturday",
|
|
281
|
+
"2022-05-01": "No trading on Sunday",
|
|
282
|
+
"2022-05-02": "Early May Bank Holiday",
|
|
283
|
+
"2022-05-07": "No trading on Saturday",
|
|
284
|
+
"2022-05-08": "No trading on Sunday",
|
|
285
|
+
"2022-05-14": "No trading on Saturday",
|
|
286
|
+
"2022-05-15": "No trading on Sunday",
|
|
287
|
+
"2022-05-21": "No trading on Saturday",
|
|
288
|
+
"2022-05-22": "No trading on Sunday",
|
|
289
|
+
"2022-05-28": "No trading on Saturday",
|
|
290
|
+
"2022-05-29": "No trading on Sunday",
|
|
291
|
+
"2022-05-30": "Memorial Day",
|
|
292
|
+
"2022-06-04": "No trading on Saturday",
|
|
293
|
+
"2022-06-05": "No trading on Sunday",
|
|
294
|
+
"2022-06-11": "No trading on Saturday",
|
|
295
|
+
"2022-06-12": "No trading on Sunday",
|
|
296
|
+
"2022-06-18": "No trading on Saturday",
|
|
297
|
+
"2022-06-19": "No trading on Sunday",
|
|
298
|
+
"2022-06-25": "No trading on Saturday",
|
|
299
|
+
"2022-06-26": "No trading on Sunday",
|
|
300
|
+
"2022-07-02": "No trading on Saturday",
|
|
301
|
+
"2022-07-03": "No trading on Sunday",
|
|
302
|
+
"2022-07-04": "Independence Day",
|
|
303
|
+
"2022-07-09": "No trading on Saturday",
|
|
304
|
+
"2022-07-10": "No trading on Sunday",
|
|
305
|
+
"2022-07-16": "No trading on Saturday",
|
|
306
|
+
"2022-07-17": "No trading on Sunday",
|
|
307
|
+
"2022-07-23": "No trading on Saturday",
|
|
308
|
+
"2022-07-24": "No trading on Sunday",
|
|
309
|
+
"2022-07-30": "No trading on Saturday",
|
|
310
|
+
"2022-07-31": "No trading on Sunday",
|
|
311
|
+
"2022-08-06": "No trading on Saturday",
|
|
312
|
+
"2022-08-07": "No trading on Sunday",
|
|
313
|
+
"2022-08-13": "No trading on Saturday",
|
|
314
|
+
"2022-08-14": "No trading on Sunday",
|
|
315
|
+
"2022-08-20": "No trading on Saturday",
|
|
316
|
+
"2022-08-21": "No trading on Sunday",
|
|
317
|
+
"2022-08-27": "No trading on Saturday",
|
|
318
|
+
"2022-08-28": "No trading on Sunday",
|
|
319
|
+
"2022-08-29": "Summer Bank Holiday",
|
|
320
|
+
"2022-09-03": "No trading on Saturday",
|
|
321
|
+
"2022-09-04": "No trading on Sunday",
|
|
322
|
+
"2022-09-05": "Labor Day",
|
|
323
|
+
"2022-09-10": "No trading on Saturday",
|
|
324
|
+
"2022-09-11": "No trading on Sunday",
|
|
325
|
+
"2022-09-17": "No trading on Saturday",
|
|
326
|
+
"2022-09-18": "No trading on Sunday",
|
|
327
|
+
"2022-09-24": "No trading on Saturday",
|
|
328
|
+
"2022-09-25": "No trading on Sunday",
|
|
329
|
+
"2022-10-01": "No trading on Saturday",
|
|
330
|
+
"2022-10-02": "No trading on Sunday",
|
|
331
|
+
"2022-10-08": "No trading on Saturday",
|
|
332
|
+
"2022-10-09": "No trading on Sunday",
|
|
333
|
+
"2022-10-10": "Columbus Day",
|
|
334
|
+
"2022-10-15": "No trading on Saturday",
|
|
335
|
+
"2022-10-16": "No trading on Sunday",
|
|
336
|
+
"2022-10-22": "No trading on Saturday",
|
|
337
|
+
"2022-10-23": "No trading on Sunday",
|
|
338
|
+
"2022-10-29": "No trading on Saturday",
|
|
339
|
+
"2022-10-30": "No trading on Sunday",
|
|
340
|
+
"2022-11-05": "No trading on Saturday",
|
|
341
|
+
"2022-11-06": "No trading on Sunday",
|
|
342
|
+
"2022-11-11": "Veterans'' Day",
|
|
343
|
+
"2022-11-24": "Thanksgiving",
|
|
344
|
+
"2022-12-26": "Christmas OBS",
|
|
345
|
+
"2022-12-27": "Boxing Day OBS"
|
|
346
|
+
}
|
|
347
|
+
}'
|
|
205
348
|
http_version:
|
|
206
349
|
recorded_at: Mon, 16 Jul 2018 08:20:17 GMT
|
|
207
350
|
recorded_with: VCR 4.0.0
|