wirecard_sepa 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 412fab80efb71ea7ad640b40e64ea80e7eed2d18
4
- data.tar.gz: 2134aca9536af5f86882fc83b3eb9601c5f74127
3
+ metadata.gz: fb3036ea4edf1ebc7785ee38e8bfc1dd509fc162
4
+ data.tar.gz: 6bb43d360f27491e498cfba7996827b6e740e6e5
5
5
  SHA512:
6
- metadata.gz: 6358b080c557307bc3e5aa82f020638bd5085557777d001589e71703e0fec766f9b154009406e4fb423137a61d6f584a6b00e05a5d144bcf3d78e0718074a0e9
7
- data.tar.gz: 5745409d6e78966ae4ad10354da80ad8df501ef3f1306a35b4dfac45f87ac632d2ecc814e48ecbaead7d05b2f26cc1de834a68f65fdd876e87d137d866f807f5
6
+ metadata.gz: ee5cedc320f546d1b918524fc25e4f62b867147c16c08ef6e12d12162a74ae763d83c732363ab0c0d687f0d858841721e77d5543c89c935321ccf16e7121b1c5
7
+ data.tar.gz: 85affcfe53c81596052d08d5af5dd4a39ca5836b604e759929780bbead2c0686074bd01528896823090b06a2820fdd4451202b5a5d801045becf3a97c02bfae1
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  Gemfile.lock
3
3
  /pkg/
4
4
  .tags
5
+ .clog.toml
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.1.4] - 2015-10-15
2
+ ### Fixed
3
+ - Does not when fail anymore when wirecard does not provide a Content-Type header
4
+
1
5
  ## [0.1.3] - 2015-09-17
2
6
  ### Fixed
3
7
  - Treat response body according to their given charset, normally UTF-8
@@ -41,14 +41,20 @@ module WirecardSepa
41
41
  # Wirecard API returns correct charset (UTF-8), but the resulting
42
42
  # body is encoded in (ASCII-8BIT), so we enforce it.
43
43
  def post(request_xml)
44
- response = Typhoeus.post(
44
+ response = typhoeus_response(request_xml)
45
+ if content_type = response.headers['Content-Type']
46
+ response.body.force_encoding content_type[/charset=(.*)/, 1]
47
+ end
48
+ response
49
+ end
50
+
51
+ def typhoeus_response(request_xml)
52
+ Typhoeus.post(
45
53
  config.api_url,
46
54
  body: request_xml,
47
55
  userpwd: http_auth_credentials,
48
56
  headers: { 'Content-Type' => 'application/xml' }
49
57
  )
50
- response.body.force_encoding response.headers['Content-Type'][/charset=(.*)/, 1]
51
- response
52
58
  end
53
59
 
54
60
  def add_auth_params_and_custom_fields(params)
@@ -1,3 +1,3 @@
1
1
  module WirecardSepa
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
@@ -30,6 +30,29 @@ describe WirecardSepa::Gateway do
30
30
  expect(response.transaction_id).to_not be_empty
31
31
  end
32
32
  end
33
+
34
+ describe 'Handling weird wirecard HTTP responses' do
35
+ let(:ascii_body) { 'test'.force_encoding(Encoding::ASCII_8BIT) }
36
+ let(:headers) { { 'Content-Type' => 'text/html; charset=utf-8' } }
37
+ let(:wirecard_response) { Typhoeus::Response.new(code: 200, body: ascii_body, headers: headers) }
38
+ before { allow(gateway).to receive(:typhoeus_response).and_return(wirecard_response) }
39
+
40
+ it 'uses the Content-Type header to enforce the response.body encoding' do
41
+ response = gateway.debit(debit_params)
42
+ expect(response.xml).to eq 'test'
43
+ expect(response.xml.encoding).to eq Encoding::UTF_8
44
+ end
45
+
46
+ context 'when wirecard forgets to set the Content-Type header' do
47
+ let(:headers) { Hash.new }
48
+
49
+ it 'does not fail nor change the encoding' do
50
+ response = gateway.debit(debit_params)
51
+ expect(response.xml).to eq 'test'
52
+ expect(response.xml.encoding).to eq Encoding::ASCII_8BIT
53
+ end
54
+ end
55
+ end
33
56
  end # describe
34
57
 
35
58
  describe '#recurring_init(params)' do
data/spec/spec_helper.rb CHANGED
@@ -19,7 +19,7 @@ def sandbox_gateway_config
19
19
  http_auth_username: '70000-APITEST-AP',
20
20
  http_auth_password: 'qD2wzQ_hrc!8',
21
21
  merchant_account_id: '4c901196-eff7-411e-82a3-5ef6b6860d64',
22
- creditor_id: 'DE00000000000000000000',
22
+ creditor_id: 'DE98ZZZ09999999999',
23
23
  })
24
24
  end
25
25
 
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: |+
9
9
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
10
10
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
11
- <request-id>e9c7969a-7580-4565-9c77-1fa7f4538ed3</request-id>
11
+ <request-id>9a76c097-7acb-4544-b0e8-b0e18addc20f</request-id>
12
12
  <transaction-type>pending-debit</transaction-type>
13
13
  <requested-amount currency="EUR">12.12</requested-amount>
14
14
  <account-holder>
@@ -44,7 +44,7 @@ http_interactions:
44
44
  message: Created
45
45
  headers:
46
46
  Date:
47
- - Tue, 28 Jul 2015 14:09:32 GMT
47
+ - Tue, 28 Jul 2015 14:09:52 GMT
48
48
  Content-Type:
49
49
  - application/xml;charset=UTF-8
50
50
  Content-Language:
@@ -55,15 +55,15 @@ http_interactions:
55
55
  - close
56
56
  body:
57
57
  encoding: UTF-8
58
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>44d06762-3532-11e5-b074-005056a96a54</transaction-id><request-id>e9c7969a-7580-4565-9c77-1fa7f4538ed3</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:09:32.000Z</completion-time-stamp><statuses><status
58
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>5072d58c-3532-11e5-b074-005056a96a54</transaction-id><request-id>9a76c097-7acb-4544-b0e8-b0e18addc20f</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:09:52.000Z</completion-time-stamp><statuses><status
59
59
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
60
60
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
61
61
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
62
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>FF37F2B03D</provider-transaction-reference-id></payment>
62
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>F2FC4EBF5C</provider-transaction-reference-id></payment>
63
63
  http_version: '1.1'
64
64
  adapter_metadata:
65
65
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
66
- recorded_at: Tue, 28 Jul 2015 14:09:33 GMT
66
+ recorded_at: Tue, 28 Jul 2015 14:09:52 GMT
67
67
  - request:
68
68
  method: post
69
69
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -72,7 +72,7 @@ http_interactions:
72
72
  string: |+
73
73
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
74
74
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
75
- <request-id>9a76c097-7acb-4544-b0e8-b0e18addc20f</request-id>
75
+ <request-id>7afb3c42-f804-450e-ba5b-be5a0810e032</request-id>
76
76
  <transaction-type>pending-debit</transaction-type>
77
77
  <requested-amount currency="EUR">12.12</requested-amount>
78
78
  <account-holder>
@@ -108,7 +108,7 @@ http_interactions:
108
108
  message: Created
109
109
  headers:
110
110
  Date:
111
- - Tue, 28 Jul 2015 14:09:52 GMT
111
+ - Tue, 28 Jul 2015 14:10:55 GMT
112
112
  Content-Type:
113
113
  - application/xml;charset=UTF-8
114
114
  Content-Language:
@@ -119,15 +119,15 @@ http_interactions:
119
119
  - close
120
120
  body:
121
121
  encoding: UTF-8
122
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>5072d58c-3532-11e5-b074-005056a96a54</transaction-id><request-id>9a76c097-7acb-4544-b0e8-b0e18addc20f</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:09:52.000Z</completion-time-stamp><statuses><status
122
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>75db2446-3532-11e5-b074-005056a96a54</transaction-id><request-id>7afb3c42-f804-450e-ba5b-be5a0810e032</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:10:54.000Z</completion-time-stamp><statuses><status
123
123
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
124
124
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
125
125
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
126
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>F2FC4EBF5C</provider-transaction-reference-id></payment>
126
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>A1588D27BE</provider-transaction-reference-id></payment>
127
127
  http_version: '1.1'
128
128
  adapter_metadata:
129
129
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
130
- recorded_at: Tue, 28 Jul 2015 14:09:52 GMT
130
+ recorded_at: Tue, 28 Jul 2015 14:10:55 GMT
131
131
  - request:
132
132
  method: post
133
133
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -136,7 +136,7 @@ http_interactions:
136
136
  string: |+
137
137
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
138
138
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
139
- <request-id>7afb3c42-f804-450e-ba5b-be5a0810e032</request-id>
139
+ <request-id>0c4c36ac-1f57-4f3e-829e-23a23d99aaa0</request-id>
140
140
  <transaction-type>pending-debit</transaction-type>
141
141
  <requested-amount currency="EUR">12.12</requested-amount>
142
142
  <account-holder>
@@ -172,7 +172,7 @@ http_interactions:
172
172
  message: Created
173
173
  headers:
174
174
  Date:
175
- - Tue, 28 Jul 2015 14:10:55 GMT
175
+ - Tue, 28 Jul 2015 14:11:03 GMT
176
176
  Content-Type:
177
177
  - application/xml;charset=UTF-8
178
178
  Content-Language:
@@ -183,15 +183,15 @@ http_interactions:
183
183
  - close
184
184
  body:
185
185
  encoding: UTF-8
186
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>75db2446-3532-11e5-b074-005056a96a54</transaction-id><request-id>7afb3c42-f804-450e-ba5b-be5a0810e032</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:10:54.000Z</completion-time-stamp><statuses><status
186
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>7adc8d5e-3532-11e5-b074-005056a96a54</transaction-id><request-id>0c4c36ac-1f57-4f3e-829e-23a23d99aaa0</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:11:03.000Z</completion-time-stamp><statuses><status
187
187
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
188
188
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
189
189
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
190
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>A1588D27BE</provider-transaction-reference-id></payment>
190
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>76E825C2C6</provider-transaction-reference-id></payment>
191
191
  http_version: '1.1'
192
192
  adapter_metadata:
193
193
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
194
- recorded_at: Tue, 28 Jul 2015 14:10:55 GMT
194
+ recorded_at: Tue, 28 Jul 2015 14:11:03 GMT
195
195
  - request:
196
196
  method: post
197
197
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -200,7 +200,7 @@ http_interactions:
200
200
  string: |+
201
201
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
202
202
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
203
- <request-id>0c4c36ac-1f57-4f3e-829e-23a23d99aaa0</request-id>
203
+ <request-id>46203133-baa1-4986-b4fc-d4de379dabe1</request-id>
204
204
  <transaction-type>pending-debit</transaction-type>
205
205
  <requested-amount currency="EUR">12.12</requested-amount>
206
206
  <account-holder>
@@ -236,7 +236,7 @@ http_interactions:
236
236
  message: Created
237
237
  headers:
238
238
  Date:
239
- - Tue, 28 Jul 2015 14:11:03 GMT
239
+ - Tue, 28 Jul 2015 14:11:37 GMT
240
240
  Content-Type:
241
241
  - application/xml;charset=UTF-8
242
242
  Content-Language:
@@ -247,15 +247,15 @@ http_interactions:
247
247
  - close
248
248
  body:
249
249
  encoding: UTF-8
250
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>7adc8d5e-3532-11e5-b074-005056a96a54</transaction-id><request-id>0c4c36ac-1f57-4f3e-829e-23a23d99aaa0</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:11:03.000Z</completion-time-stamp><statuses><status
250
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>8f16836a-3532-11e5-b074-005056a96a54</transaction-id><request-id>46203133-baa1-4986-b4fc-d4de379dabe1</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:11:37.000Z</completion-time-stamp><statuses><status
251
251
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
252
252
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
253
253
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
254
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>76E825C2C6</provider-transaction-reference-id></payment>
254
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>4A1489043A</provider-transaction-reference-id></payment>
255
255
  http_version: '1.1'
256
256
  adapter_metadata:
257
257
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
258
- recorded_at: Tue, 28 Jul 2015 14:11:03 GMT
258
+ recorded_at: Tue, 28 Jul 2015 14:11:37 GMT
259
259
  - request:
260
260
  method: post
261
261
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -264,7 +264,7 @@ http_interactions:
264
264
  string: |+
265
265
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
266
266
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
267
- <request-id>46203133-baa1-4986-b4fc-d4de379dabe1</request-id>
267
+ <request-id>5399d22e-dec4-4588-9101-3330770531cb</request-id>
268
268
  <transaction-type>pending-debit</transaction-type>
269
269
  <requested-amount currency="EUR">12.12</requested-amount>
270
270
  <account-holder>
@@ -300,7 +300,7 @@ http_interactions:
300
300
  message: Created
301
301
  headers:
302
302
  Date:
303
- - Tue, 28 Jul 2015 14:11:37 GMT
303
+ - Tue, 28 Jul 2015 14:14:26 GMT
304
304
  Content-Type:
305
305
  - application/xml;charset=UTF-8
306
306
  Content-Language:
@@ -311,15 +311,15 @@ http_interactions:
311
311
  - close
312
312
  body:
313
313
  encoding: UTF-8
314
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>8f16836a-3532-11e5-b074-005056a96a54</transaction-id><request-id>46203133-baa1-4986-b4fc-d4de379dabe1</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:11:37.000Z</completion-time-stamp><statuses><status
314
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>f410fac0-3532-11e5-b074-005056a96a54</transaction-id><request-id>5399d22e-dec4-4588-9101-3330770531cb</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:14:26.000Z</completion-time-stamp><statuses><status
315
315
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
316
316
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
317
317
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
318
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>4A1489043A</provider-transaction-reference-id></payment>
318
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>2C0DB50FE2</provider-transaction-reference-id></payment>
319
319
  http_version: '1.1'
320
320
  adapter_metadata:
321
321
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
322
- recorded_at: Tue, 28 Jul 2015 14:11:37 GMT
322
+ recorded_at: Tue, 28 Jul 2015 14:14:27 GMT
323
323
  - request:
324
324
  method: post
325
325
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -328,7 +328,7 @@ http_interactions:
328
328
  string: |+
329
329
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
330
330
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
331
- <request-id>5399d22e-dec4-4588-9101-3330770531cb</request-id>
331
+ <request-id>621b5397-6d45-481f-997e-8883a4aa33cb</request-id>
332
332
  <transaction-type>pending-debit</transaction-type>
333
333
  <requested-amount currency="EUR">12.12</requested-amount>
334
334
  <account-holder>
@@ -364,7 +364,7 @@ http_interactions:
364
364
  message: Created
365
365
  headers:
366
366
  Date:
367
- - Tue, 28 Jul 2015 14:14:26 GMT
367
+ - Tue, 28 Jul 2015 14:14:32 GMT
368
368
  Content-Type:
369
369
  - application/xml;charset=UTF-8
370
370
  Content-Language:
@@ -375,15 +375,15 @@ http_interactions:
375
375
  - close
376
376
  body:
377
377
  encoding: UTF-8
378
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>f410fac0-3532-11e5-b074-005056a96a54</transaction-id><request-id>5399d22e-dec4-4588-9101-3330770531cb</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:14:26.000Z</completion-time-stamp><statuses><status
378
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>f7c76366-3532-11e5-b074-005056a96a54</transaction-id><request-id>621b5397-6d45-481f-997e-8883a4aa33cb</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:14:32.000Z</completion-time-stamp><statuses><status
379
379
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
380
380
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
381
381
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
382
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>2C0DB50FE2</provider-transaction-reference-id></payment>
382
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>B2404818A6</provider-transaction-reference-id></payment>
383
383
  http_version: '1.1'
384
384
  adapter_metadata:
385
385
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
386
- recorded_at: Tue, 28 Jul 2015 14:14:27 GMT
386
+ recorded_at: Tue, 28 Jul 2015 14:14:33 GMT
387
387
  - request:
388
388
  method: post
389
389
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -392,7 +392,7 @@ http_interactions:
392
392
  string: |+
393
393
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
394
394
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
395
- <request-id>621b5397-6d45-481f-997e-8883a4aa33cb</request-id>
395
+ <request-id>a813a5ef-c20f-4ab8-9d3c-d7685f1b68d4</request-id>
396
396
  <transaction-type>pending-debit</transaction-type>
397
397
  <requested-amount currency="EUR">12.12</requested-amount>
398
398
  <account-holder>
@@ -428,7 +428,7 @@ http_interactions:
428
428
  message: Created
429
429
  headers:
430
430
  Date:
431
- - Tue, 28 Jul 2015 14:14:32 GMT
431
+ - Tue, 28 Jul 2015 14:14:37 GMT
432
432
  Content-Type:
433
433
  - application/xml;charset=UTF-8
434
434
  Content-Language:
@@ -439,15 +439,15 @@ http_interactions:
439
439
  - close
440
440
  body:
441
441
  encoding: UTF-8
442
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>f7c76366-3532-11e5-b074-005056a96a54</transaction-id><request-id>621b5397-6d45-481f-997e-8883a4aa33cb</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:14:32.000Z</completion-time-stamp><statuses><status
442
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>fa92c342-3532-11e5-b074-005056a96a54</transaction-id><request-id>a813a5ef-c20f-4ab8-9d3c-d7685f1b68d4</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:14:37.000Z</completion-time-stamp><statuses><status
443
443
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
444
444
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
445
445
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
446
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>B2404818A6</provider-transaction-reference-id></payment>
446
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>DA245E4FF7</provider-transaction-reference-id></payment>
447
447
  http_version: '1.1'
448
448
  adapter_metadata:
449
449
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
450
- recorded_at: Tue, 28 Jul 2015 14:14:33 GMT
450
+ recorded_at: Tue, 28 Jul 2015 14:14:38 GMT
451
451
  - request:
452
452
  method: post
453
453
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -456,7 +456,7 @@ http_interactions:
456
456
  string: |+
457
457
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
458
458
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
459
- <request-id>a813a5ef-c20f-4ab8-9d3c-d7685f1b68d4</request-id>
459
+ <request-id>4711</request-id>
460
460
  <transaction-type>pending-debit</transaction-type>
461
461
  <requested-amount currency="EUR">12.12</requested-amount>
462
462
  <account-holder>
@@ -492,26 +492,27 @@ http_interactions:
492
492
  message: Created
493
493
  headers:
494
494
  Date:
495
- - Tue, 28 Jul 2015 14:14:37 GMT
495
+ - Tue, 28 Jul 2015 14:15:47 GMT
496
496
  Content-Type:
497
497
  - application/xml;charset=UTF-8
498
498
  Content-Language:
499
499
  - en-US
500
500
  Content-Length:
501
- - '1322'
501
+ - '1270'
502
502
  Connection:
503
503
  - close
504
504
  body:
505
505
  encoding: UTF-8
506
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>fa92c342-3532-11e5-b074-005056a96a54</transaction-id><request-id>a813a5ef-c20f-4ab8-9d3c-d7685f1b68d4</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:14:37.000Z</completion-time-stamp><statuses><status
507
- code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
506
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>240aca08-3533-11e5-b074-005056a96a54</transaction-id><request-id>4711</request-id><transaction-type>pending-debit</transaction-type><transaction-state>failed</transaction-state><completion-time-stamp>2015-07-28T14:15:46.000Z</completion-time-stamp><statuses><status
507
+ code="400.1018" description="The same Request Id for the Merchant Account
508
+ is being tried a second time. Please use another Request Id." severity="error"/></statuses><requested-amount
508
509
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
509
510
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
510
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>DA245E4FF7</provider-transaction-reference-id></payment>
511
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date></payment>
511
512
  http_version: '1.1'
512
513
  adapter_metadata:
513
514
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
514
- recorded_at: Tue, 28 Jul 2015 14:14:38 GMT
515
+ recorded_at: Tue, 28 Jul 2015 14:15:47 GMT
515
516
  - request:
516
517
  method: post
517
518
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -520,7 +521,7 @@ http_interactions:
520
521
  string: |+
521
522
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
522
523
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
523
- <request-id>4711</request-id>
524
+ <request-id>4979d1d8-1266-493b-90e0-b726fe184470</request-id>
524
525
  <transaction-type>pending-debit</transaction-type>
525
526
  <requested-amount currency="EUR">12.12</requested-amount>
526
527
  <account-holder>
@@ -556,27 +557,26 @@ http_interactions:
556
557
  message: Created
557
558
  headers:
558
559
  Date:
559
- - Tue, 28 Jul 2015 14:15:47 GMT
560
+ - Tue, 28 Jul 2015 14:17:06 GMT
560
561
  Content-Type:
561
562
  - application/xml;charset=UTF-8
562
563
  Content-Language:
563
564
  - en-US
564
565
  Content-Length:
565
- - '1270'
566
+ - '1322'
566
567
  Connection:
567
568
  - close
568
569
  body:
569
570
  encoding: UTF-8
570
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>240aca08-3533-11e5-b074-005056a96a54</transaction-id><request-id>4711</request-id><transaction-type>pending-debit</transaction-type><transaction-state>failed</transaction-state><completion-time-stamp>2015-07-28T14:15:46.000Z</completion-time-stamp><statuses><status
571
- code="400.1018" description="The same Request Id for the Merchant Account
572
- is being tried a second time. Please use another Request Id." severity="error"/></statuses><requested-amount
571
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>5307e76e-3533-11e5-b074-005056a96a54</transaction-id><request-id>4979d1d8-1266-493b-90e0-b726fe184470</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:17:05.000Z</completion-time-stamp><statuses><status
572
+ code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
573
573
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
574
574
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
575
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date></payment>
575
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>3D2A0153D1</provider-transaction-reference-id></payment>
576
576
  http_version: '1.1'
577
577
  adapter_metadata:
578
578
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
579
- recorded_at: Tue, 28 Jul 2015 14:15:47 GMT
579
+ recorded_at: Tue, 28 Jul 2015 14:17:06 GMT
580
580
  - request:
581
581
  method: post
582
582
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -585,7 +585,7 @@ http_interactions:
585
585
  string: |+
586
586
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
587
587
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
588
- <request-id>4979d1d8-1266-493b-90e0-b726fe184470</request-id>
588
+ <request-id>7feac149-97ea-498c-827c-b57236a6ac07</request-id>
589
589
  <transaction-type>pending-debit</transaction-type>
590
590
  <requested-amount currency="EUR">12.12</requested-amount>
591
591
  <account-holder>
@@ -621,7 +621,7 @@ http_interactions:
621
621
  message: Created
622
622
  headers:
623
623
  Date:
624
- - Tue, 28 Jul 2015 14:17:06 GMT
624
+ - Tue, 08 Sep 2015 15:21:05 GMT
625
625
  Content-Type:
626
626
  - application/xml;charset=UTF-8
627
627
  Content-Language:
@@ -632,15 +632,15 @@ http_interactions:
632
632
  - close
633
633
  body:
634
634
  encoding: UTF-8
635
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>5307e76e-3533-11e5-b074-005056a96a54</transaction-id><request-id>4979d1d8-1266-493b-90e0-b726fe184470</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-07-28T14:17:05.000Z</completion-time-stamp><statuses><status
635
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>390609ce-563d-11e5-9e69-005056a96a54</transaction-id><request-id>7feac149-97ea-498c-827c-b57236a6ac07</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-09-08T15:21:05.000Z</completion-time-stamp><statuses><status
636
636
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
637
637
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
638
638
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
639
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-07-31</due-date><provider-transaction-reference-id>3D2A0153D1</provider-transaction-reference-id></payment>
639
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-09-11</due-date><provider-transaction-reference-id>B055CF12C5</provider-transaction-reference-id></payment>
640
640
  http_version: '1.1'
641
641
  adapter_metadata:
642
642
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
643
- recorded_at: Tue, 28 Jul 2015 14:17:06 GMT
643
+ recorded_at: Tue, 08 Sep 2015 15:21:05 GMT
644
644
  - request:
645
645
  method: post
646
646
  uri: https://api-test.wirecard.com/engine/rest/paymentmethods/
@@ -649,7 +649,7 @@ http_interactions:
649
649
  string: |+
650
650
  <payment xmlns="http://www.elastic-payments.com/schema/payment">
651
651
  <merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id>
652
- <request-id>7feac149-97ea-498c-827c-b57236a6ac07</request-id>
652
+ <request-id>dee47f63-0099-4c65-babc-8895dd9b6c97</request-id>
653
653
  <transaction-type>pending-debit</transaction-type>
654
654
  <requested-amount currency="EUR">12.12</requested-amount>
655
655
  <account-holder>
@@ -671,7 +671,7 @@ http_interactions:
671
671
  <mandate-id>1235678</mandate-id>
672
672
  <signed-date>2013-09-24</signed-date>
673
673
  </mandate>
674
- <creditor-id>DE00000000000000000000</creditor-id>
674
+ <creditor-id>DE98ZZZ09999999999</creditor-id>
675
675
  </payment>
676
676
 
677
677
  headers:
@@ -685,24 +685,24 @@ http_interactions:
685
685
  message: Created
686
686
  headers:
687
687
  Date:
688
- - Tue, 08 Sep 2015 15:21:05 GMT
688
+ - Wed, 14 Oct 2015 11:43:04 GMT
689
689
  Content-Type:
690
690
  - application/xml;charset=UTF-8
691
691
  Content-Language:
692
692
  - en-US
693
693
  Content-Length:
694
- - '1322'
694
+ - '1318'
695
695
  Connection:
696
696
  - close
697
697
  body:
698
698
  encoding: UTF-8
699
- string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>390609ce-563d-11e5-9e69-005056a96a54</transaction-id><request-id>7feac149-97ea-498c-827c-b57236a6ac07</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-09-08T15:21:05.000Z</completion-time-stamp><statuses><status
699
+ string: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><payment xmlns="http://www.elastic-payments.com/schema/payment"><merchant-account-id>4c901196-eff7-411e-82a3-5ef6b6860d64</merchant-account-id><transaction-id>bb1a0fa4-7268-11e5-8db5-005056a96a54</transaction-id><request-id>dee47f63-0099-4c65-babc-8895dd9b6c97</request-id><transaction-type>pending-debit</transaction-type><transaction-state>success</transaction-state><completion-time-stamp>2015-10-14T11:43:04.000Z</completion-time-stamp><statuses><status
700
700
  code="201.0000" description="The resource was successfully created." severity="information"/></statuses><requested-amount
701
701
  currency="EUR">12.12</requested-amount><account-holder><first-name>John</first-name><last-name>Doe</last-name></account-holder><order-number>666</order-number><custom-fields><custom-field
702
702
  field-name="Company Name" field-value="gut.org"></custom-field></custom-fields><payment-methods><payment-method
703
- name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE00000000000000000000</creditor-id><due-date>2015-09-11</due-date><provider-transaction-reference-id>B055CF12C5</provider-transaction-reference-id></payment>
703
+ name="sepadirectdebit"/></payment-methods><bank-account><iban>DE42512308000000060004</iban><bic>WIREDEMMXXX</bic></bank-account><mandate><mandate-id>1235678</mandate-id><signed-date>2013-09-24</signed-date></mandate><creditor-id>DE98ZZZ09999999999</creditor-id><due-date>2015-10-19</due-date><provider-transaction-reference-id>10C1334256</provider-transaction-reference-id></payment>
704
704
  http_version: '1.1'
705
705
  adapter_metadata:
706
706
  effective_url: https://api-test.wirecard.com/engine/rest/paymentmethods/
707
- recorded_at: Tue, 08 Sep 2015 15:21:05 GMT
707
+ recorded_at: Wed, 14 Oct 2015 11:43:03 GMT
708
708
  recorded_with: VCR 2.9.3