espago 0.0.9 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +15 -3
- data/Gemfile +2 -0
- data/Gemfile.lock +263 -47
- data/Guardfile +1 -0
- data/README.md +116 -6
- data/app/helpers/espago/masterpass_helper.rb +13 -0
- data/app/helpers/espago/secure_web_page_helper.rb +5 -0
- data/app/views/espago_masterpass/_masterpass_button.html.haml +20 -0
- data/app/views/espago_masterpass/_masterpass_pairing_button.html.haml +11 -0
- data/app/views/espago_masterpass/_masterpass_precheckout_button.html.haml +21 -0
- data/app/views/espago_secure_web_page/_form.html.haml +26 -0
- data/espago.gemspec +16 -9
- data/lib/espago/api_connection/{post_clients.rb → api.rb} +1 -5
- data/lib/espago/api_connection/api_delete.rb +9 -0
- data/lib/espago/api_connection/api_get.rb +13 -0
- data/lib/espago/api_connection/api_post.rb +9 -0
- data/lib/espago/api_connection/api_put.rb +9 -0
- data/lib/espago/api_connection/charges_complete_post.rb +9 -0
- data/lib/espago/api_connection/charges_delete.rb +9 -0
- data/lib/espago/api_connection/charges_get.rb +9 -0
- data/lib/espago/api_connection/charges_post.rb +9 -0
- data/lib/espago/api_connection/{post_charges_refund.rb → charges_refund_post.rb} +1 -5
- data/lib/espago/api_connection/clients_authorize_post.rb +9 -0
- data/lib/espago/api_connection/clients_delete.rb +9 -0
- data/lib/espago/api_connection/clients_get.rb +9 -0
- data/lib/espago/api_connection/clients_invoices_get.rb +9 -0
- data/lib/espago/api_connection/clients_post.rb +9 -0
- data/lib/espago/api_connection/clients_put.rb +9 -0
- data/lib/espago/api_connection/clients_subscriptions_get.rb +9 -0
- data/lib/espago/api_connection/complete_post.rb +14 -0
- data/lib/espago/api_connection/dcc_decision_post.rb +9 -0
- data/lib/espago/api_connection/invoice_items_delete.rb +9 -0
- data/lib/espago/api_connection/invoice_items_get.rb +9 -0
- data/lib/espago/api_connection/invoice_items_post.rb +9 -0
- data/lib/espago/api_connection/invoices_get.rb +9 -0
- data/lib/espago/api_connection/line_items_get.rb +9 -0
- data/lib/espago/api_connection/masterpass_post.rb +9 -0
- data/lib/espago/api_connection/plans_delete.rb +9 -0
- data/lib/espago/api_connection/plans_get.rb +9 -0
- data/lib/espago/api_connection/plans_post.rb +9 -0
- data/lib/espago/api_connection/plans_put.rb +9 -0
- data/lib/espago/api_connection/refunds_post.rb +9 -0
- data/lib/espago/api_connection/secure_web_page_register_post.rb +9 -0
- data/lib/espago/api_connection/subscriptions_delete.rb +9 -0
- data/lib/espago/api_connection/subscriptions_get.rb +9 -0
- data/lib/espago/api_connection/subscriptions_post.rb +9 -0
- data/lib/espago/api_connection/tokens_get.rb +9 -0
- data/lib/espago/api_connection/{delete_charges.rb → tokens_post.rb} +3 -2
- data/lib/espago/api_connection/visacheckout_post.rb +9 -0
- data/lib/espago/api_connection.rb +20 -9
- data/lib/espago/back_request.rb +33 -0
- data/lib/espago/client.rb +23 -9
- data/lib/espago/engine.rb +5 -0
- data/lib/espago/masterpass.rb +52 -0
- data/lib/espago/router.rb +1 -1
- data/lib/espago/secure_web_page.rb +31 -0
- data/lib/espago/version.rb +1 -1
- data/lib/espago.rb +11 -3
- data/lib/generators/espago/install_generator.rb +20 -0
- data/lib/generators/espago/templates/README +10 -0
- data/lib/generators/espago/templates/espago.rb +6 -0
- data/spec/espago/api_connection_spec.rb +5 -4
- data/spec/espago/back_request_spec.rb +33 -0
- data/spec/espago/client_spec.rb +21 -8
- data/spec/espago/error_spec.rb +4 -3
- data/spec/espago/response_spec.rb +10 -10
- data/spec/espago/router_spec.rb +6 -7
- data/spec/features/apis_spec.rb +21 -0
- data/spec/features/charges_spec.rb +79 -0
- data/spec/features/charges_spec_with_params_spec.rb +89 -0
- data/spec/features/clients_spec.rb +100 -0
- data/spec/features/dcc_decision_spec.rb +20 -0
- data/spec/features/error_spec.rb +28 -0
- data/spec/features/invoice_items_spec.rb +37 -0
- data/spec/features/invoices_spec.rb +24 -0
- data/spec/features/line_items_spec.rb +17 -0
- data/spec/features/plans_spec.rb +61 -0
- data/spec/features/secure_web_page_register_spec.rb +23 -0
- data/spec/features/subscriptions_spec.rb +43 -0
- data/spec/features/tokens_spec.rb +39 -0
- data/spec/fixtures/cassettes/api_2.yml +68 -0
- data/spec/fixtures/cassettes/api_3.yml +68 -0
- data/spec/fixtures/cassettes/charges_complete.yml +48 -0
- data/spec/fixtures/cassettes/charges_complete_deprecation.yml +48 -0
- data/spec/fixtures/cassettes/charges_destroy.yml +46 -0
- data/spec/fixtures/cassettes/charges_get.yml +67 -0
- data/spec/fixtures/cassettes/charges_get_pay_mTOngouLTJWZ0w.yml +48 -0
- data/spec/fixtures/cassettes/charges_post.yml +50 -0
- data/spec/fixtures/cassettes/charges_refund.yml +50 -0
- data/spec/fixtures/cassettes/clients_authorize.yml +50 -0
- data/spec/fixtures/cassettes/clients_delete.yml +44 -0
- data/spec/fixtures/cassettes/clients_get.yml +48 -0
- data/spec/fixtures/cassettes/clients_get_cli_w0Se2smYwyQ0Uw.yml +48 -0
- data/spec/fixtures/cassettes/clients_invoices.yml +48 -0
- data/spec/fixtures/cassettes/clients_post.yml +50 -0
- data/spec/fixtures/cassettes/clients_put.yml +50 -0
- data/spec/fixtures/cassettes/clients_subscriptions.yml +48 -0
- data/spec/fixtures/cassettes/dcc_decision_post.yml +50 -0
- data/spec/fixtures/cassettes/error_400.yml +48 -0
- data/spec/fixtures/cassettes/error_401.yml +48 -0
- data/spec/fixtures/cassettes/error_500.yml +48 -0
- data/spec/fixtures/cassettes/invoice_items_delete_ii_WDzszvhTshe78Xd.yml +44 -0
- data/spec/fixtures/cassettes/invoice_items_get_ii_5LS-YR7S1QaJBl3.yml +49 -0
- data/spec/fixtures/cassettes/invoice_items_post_ii_5LS-YR7S1QaJBl3.yml +51 -0
- data/spec/fixtures/cassettes/invoices_get.yml +48 -0
- data/spec/fixtures/cassettes/invoices_get_in_tUCMhwlg2nkvAaL.yml +48 -0
- data/spec/fixtures/cassettes/line_items_get.yml +47 -0
- data/spec/fixtures/cassettes/plans_delete.yml +42 -0
- data/spec/fixtures/cassettes/plans_get.yml +46 -0
- data/spec/fixtures/cassettes/plans_get_pl_12345.yml +46 -0
- data/spec/fixtures/cassettes/plans_post.yml +50 -0
- data/spec/fixtures/cassettes/plans_put.yml +46 -0
- data/spec/fixtures/cassettes/secure_web_page_register_post.yml +56 -0
- data/spec/fixtures/cassettes/subscriptions_delete_sub_8yYuCBKdywr7e2.yml +44 -0
- data/spec/fixtures/cassettes/subscriptions_get.yml +46 -0
- data/spec/fixtures/cassettes/subscriptions_get_sub_8yYuCBKdywr7e2.yml +46 -0
- data/spec/fixtures/cassettes/subscriptions_post.yml +50 -0
- data/spec/fixtures/cassettes/tokens_get.yml +48 -0
- data/spec/fixtures/cassettes/tokens_post.yml +56 -0
- data/spec/spec_helper.rb +29 -1
- metadata +271 -42
- data/lib/espago/api_connection/delete_clients.rb +0 -13
- data/lib/espago/api_connection/get_charges.rb +0 -17
- data/lib/espago/api_connection/get_clients.rb +0 -17
- data/lib/espago/api_connection/get_tokens.rb +0 -13
- data/lib/espago/api_connection/post_charges.rb +0 -13
- data/lib/espago/api_connection/post_clients_authorize.rb +0 -13
- data/lib/espago/api_connection/post_complete.rb +0 -13
- data/lib/espago/api_connection/post_tokens.rb +0 -14
- data/lib/espago/api_connection/put_clients.rb +0 -13
@@ -0,0 +1,37 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe 'Espago.invoice_items' do
|
4
|
+
|
5
|
+
it "should get info abount invoice_items" do
|
6
|
+
VCR.use_cassette('invoice_items get ii_5LS-YR7S1QaJBl3') do
|
7
|
+
response = Espago.invoice_items :get,{invoice_item_id:'ii_5LS-YR7S1QaJBl3'}
|
8
|
+
expect(response.client).to eq('cli_90Pi6Jf0ndl_PP')
|
9
|
+
expect(response.amount).to eq('123.45')
|
10
|
+
expect(response.created_at).to eq Time.at(1417030496)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should get info abount invoice_items" do
|
15
|
+
VCR.use_cassette('invoice_items post ii_5LS-YR7S1QaJBl3') do
|
16
|
+
response = Espago.invoice_items :post,{ amount:49.99,
|
17
|
+
currency:'pln',
|
18
|
+
date:'1417126942',
|
19
|
+
description: 'Test invoice items',
|
20
|
+
client: 'cli_90Pi6Jf0ndl_PP'
|
21
|
+
}
|
22
|
+
expect(response.status).to eq(201)
|
23
|
+
expect(response.client).to eq('cli_90Pi6Jf0ndl_PP')
|
24
|
+
expect(response.amount).to eq('49.99')
|
25
|
+
expect(response.currency).to eq('pln')
|
26
|
+
expect(response.created_at).to eq Time.at(1417102491)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should get info abount deleted invoice_items" do
|
31
|
+
VCR.use_cassette('invoice_items delete ii_WDzszvhTshe78Xd') do
|
32
|
+
response = Espago.invoice_items :delete,{invoice_item_id:'ii_WDzszvhTshe78Xd'}
|
33
|
+
expect(response.status).to eq(204)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe 'Espago.invoices' do
|
4
|
+
|
5
|
+
it "should get list of invoices" do
|
6
|
+
VCR.use_cassette('invoices get') do
|
7
|
+
response = Espago.invoices :get
|
8
|
+
expect(response.count).to eq(1)
|
9
|
+
expect(response.invoices.size).to eq(1)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should get info abount invoices" do
|
14
|
+
VCR.use_cassette('invoices get in_tUCMhwlg2nkvAaL') do
|
15
|
+
response = Espago.invoices :get,{invoice_id:'in_tUCMhwlg2nkvAaL'}
|
16
|
+
expect(response.paid).to eq(true)
|
17
|
+
expect(response.client).to eq('cli_90Pi6Jf0ndl_PP')
|
18
|
+
expect(response.amount).to eq('123.45')
|
19
|
+
expect(response.created_at).to eq Time.at(1417030497)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
|
24
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe 'Espago.line_items' do
|
4
|
+
|
5
|
+
it "should get info abount line_items" do
|
6
|
+
VCR.use_cassette('line_items get') do
|
7
|
+
response = Espago.line_items :get,{invoice_id:'in_tUCMhwlg2nkvAaL'}
|
8
|
+
expect(response.count).to eq(1)
|
9
|
+
expect(response.invoice_items[0]['client']).to eq('cli_90Pi6Jf0ndl_PP')
|
10
|
+
expect(response.invoice_items[0]['amount']).to eq('123.45')
|
11
|
+
expect(response.invoice_items[0]['description']).to eq('Golden plan')
|
12
|
+
expect(response.invoice_items[0]['created_at']).to eq(1417030496)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
|
17
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe 'Espago.plans' do
|
4
|
+
|
5
|
+
it "should get list of plans" do
|
6
|
+
VCR.use_cassette('plans get') do
|
7
|
+
response = Espago.plans :get
|
8
|
+
expect(response.count).to eq(1)
|
9
|
+
expect(response.plans.size).to eq(1)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should get info abount plans" do
|
14
|
+
VCR.use_cassette('plans get pl_12345') do
|
15
|
+
response = Espago.plans :get,{plan_id:'pl_12345'}
|
16
|
+
expect(response.description).to eq('Golden plan')
|
17
|
+
expect(response.period).to eq(5)
|
18
|
+
expect(response.period_unit).to eq('days')
|
19
|
+
expect(response.amount).to eq(123.45)
|
20
|
+
expect(response.created_at).to eq Time.at(1413807490)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
it "should get params from new plan" do
|
25
|
+
VCR.use_cassette('plans post') do
|
26
|
+
response = Espago.plans :post, { period_unit: 'day',
|
27
|
+
period: 14,
|
28
|
+
amount: 49.99,
|
29
|
+
currency: 'pln',
|
30
|
+
description: 'Test Plan'
|
31
|
+
}
|
32
|
+
expect(response.status).to eq(201)
|
33
|
+
expect(response.description).to eq('Test Plan')
|
34
|
+
expect(response.period).to eq(14)
|
35
|
+
expect(response.period_unit).to eq('day')
|
36
|
+
expect(response.amount).to eq('49.99')
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
|
41
|
+
it "should get params from updated plan" do
|
42
|
+
VCR.use_cassette('plans put') do
|
43
|
+
response = Espago.plans :put, { plan_id: 'pl_XczKHr_42CRiKXZ',
|
44
|
+
period_unit: 'month',
|
45
|
+
period: 1,
|
46
|
+
amount: 149.99,
|
47
|
+
currency: 'pln',
|
48
|
+
description: 'Test Plan'
|
49
|
+
}
|
50
|
+
expect(response.status).to eq(204)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
it "should get 204 after deleted plan" do
|
55
|
+
VCR.use_cassette('plans delete') do
|
56
|
+
response = Espago.plans :delete, { plan_id: 'pl_XczKHr_42CRiKXZ'}
|
57
|
+
expect(response.status).to eq(204)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Espago.secure_web_page_register' do
|
4
|
+
it 'should get params from new charge' do
|
5
|
+
VCR.use_cassette('secure_web_page_register post') do
|
6
|
+
Espago.app_id = 'app12345'
|
7
|
+
Espago.app_password = 'Api12345'
|
8
|
+
Espago.api_version = '3'
|
9
|
+
response = Espago.secure_web_page_register :post,
|
10
|
+
amount: '49.99',
|
11
|
+
currency: 'PLN',
|
12
|
+
description: 'Test12345',
|
13
|
+
client_description: 'Jan Kowalski',
|
14
|
+
kind: 'sale'
|
15
|
+
expect(response.status).to eq(201)
|
16
|
+
expect(response.state).to eq('new')
|
17
|
+
expect(response.currency).to eq('PLN')
|
18
|
+
expect(response.description).to eq('Test12345')
|
19
|
+
expect(response.id).to eq('pay_770swCpLvm5dzrqk')
|
20
|
+
expect(response.created_at).to eq Time.at(1_555_344_189)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe 'Espago.subscriptions' do
|
4
|
+
|
5
|
+
it "should get list of subscriptions" do
|
6
|
+
VCR.use_cassette('subscriptions get') do
|
7
|
+
response = Espago.subscriptions :get
|
8
|
+
expect(response.count).to eq(1)
|
9
|
+
expect(response.subscriptions.size).to eq(1)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should get info abount subscriptions" do
|
14
|
+
VCR.use_cassette('subscriptions get sub_8yYuCBKdywr7e2') do
|
15
|
+
response = Espago.subscriptions :get,{subscription_id:'sub_8yYuCBKdywr7e2'}
|
16
|
+
expect(response.status).to eq(200)
|
17
|
+
expect(response.state).to eq('active')
|
18
|
+
expect(response.client).to eq('cli_90Pi6Jf0ndl_PP')
|
19
|
+
expect(response.plan).to eq('pl_12345')
|
20
|
+
expect(response.last_invoice).to be_kind_of(Hash)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
it "should get params from new plan" do
|
25
|
+
VCR.use_cassette('subscriptions post') do
|
26
|
+
response = Espago.subscriptions :post,{ plan:'pl_12345',client:'cli_90Pi6Jf0ndl_PP'}
|
27
|
+
expect(response.status).to eq(201)
|
28
|
+
expect(response.state).to eq('active')
|
29
|
+
expect(response.client).to eq('cli_90Pi6Jf0ndl_PP')
|
30
|
+
expect(response.plan).to eq('pl_12345')
|
31
|
+
expect(response.last_invoice).to be_kind_of(Hash)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
it "should get info after deleted subscription" do
|
36
|
+
VCR.use_cassette('subscriptions delete sub_8yYuCBKdywr7e2') do
|
37
|
+
response = Espago.subscriptions :delete,{subscription_id:'sub_8yYuCBKdywr7e2'}
|
38
|
+
expect(response.status).to eq(204)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
|
43
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Espago.tokens' do
|
4
|
+
|
5
|
+
it "should get params from new token" do
|
6
|
+
VCR.use_cassette('tokens post') do
|
7
|
+
response = Espago.tokens :post, {
|
8
|
+
card: {
|
9
|
+
first_name: 'Jan',
|
10
|
+
last_name: 'Kowalski',
|
11
|
+
number: '4242424242424242',
|
12
|
+
verification_value: '123',
|
13
|
+
year:'2015',
|
14
|
+
month:'2'
|
15
|
+
},
|
16
|
+
}
|
17
|
+
expect(response.status).to eq(201)
|
18
|
+
expect(response.id).to_not eq(nil)
|
19
|
+
expect(response.used).to eq(false)
|
20
|
+
expect(response.created_at).to eq Time.at(1417029320)
|
21
|
+
expect(response.card['company']).to eq('VI')
|
22
|
+
expect(response.card['last4']).to eq('4242')
|
23
|
+
expect(response.card['authorized']).to eq(nil)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should get token params" do
|
28
|
+
VCR.use_cassette('tokens get') do
|
29
|
+
response = Espago.tokens :get, {token_id: 'cc_166YDMhrVcemFb3'}
|
30
|
+
expect(response.status).to eq(200)
|
31
|
+
expect(response.id).to eq('cc_166YDMhrVcemFb3')
|
32
|
+
expect(response.used).to eq(false)
|
33
|
+
expect(response.created_at).to eq Time.at(1417029320)
|
34
|
+
expect(response.card['company']).to eq('VI')
|
35
|
+
expect(response.card['last4']).to eq('4242')
|
36
|
+
expect(response.card['authorized']).to eq(nil)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://sandbox.espago.com/api/charges
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json; charset=utf-8
|
23
|
+
X-Meta-Request-Version:
|
24
|
+
- 0.2.2
|
25
|
+
X-Ua-Compatible:
|
26
|
+
- IE=Edge
|
27
|
+
Etag:
|
28
|
+
- '"36ab75a48cfe4bce4bd0ff6d680a374e"'
|
29
|
+
Cache-Control:
|
30
|
+
- max-age=0, private, must-revalidate
|
31
|
+
Set-Cookie:
|
32
|
+
- _session_id=e7fc731f6d8d81b24924c4b812b9da80; path=/; HttpOnly
|
33
|
+
X-Request-Id:
|
34
|
+
- 5fadd0cef6940344df06709e4ba0be7a
|
35
|
+
X-Runtime:
|
36
|
+
- '1.233832'
|
37
|
+
Connection:
|
38
|
+
- close
|
39
|
+
Server:
|
40
|
+
- thin 1.5.0 codename Knife
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"count":596,"charges":[{"id":"pay_uxILF7D-heZaT2","description":"Golden
|
44
|
+
plan 2014-11-26","channel":"elavon","amount":"123.45","currency":"pln","state":"executed","client":"cli_90Pi6Jf0ndl_PP","created_at":1417030497,"card":{"company":"VI","last4":"4242","year":2019,"month":3,"first_name":"Jan","last_name":"Kowalski","authorized":null,"created_at":1416842254},"issuer_response_code":"00","reversable":true,"invoice":"in_tUCMhwlg2nkvAaL","subscription":"sub_8yYuCBKdywr7e2","transaction_id":"tn_mQKcgfsNw"},{"id":"pay_Wmu3hmXJIG4jsg","description":"Opis
|
45
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"executed","client":"cli_PQI_mlA6DXe1nP","created_at":1417009684,"issuer_response_code":"00","reversable":true,"transaction_id":"tn_0pydA_RVa"},{"id":"pay_JEWqRdltANdqzH","description":"Opis
|
46
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"preauthorized","client":"cli_0Z-QNfJjl0R7J3","created_at":1417008454,"issuer_response_code":"00","completed":false,"reversable":true,"transaction_id":"tn_2WMKrXcW-"},{"id":"pay_kQmS_3RTfm4eix","description":"Opis
|
47
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"reversed","client":"cli_5rDoJyvKDM4RbM","created_at":1417005334,"issuer_response_code":"00","transaction_id":"tn_tAxxrivny"},{"id":"pay_b1Y2ZuJNXXRDM5","description":"Opis
|
48
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"reversed","client":"cli_VTsnOHjUohL02K","created_at":1416920783,"issuer_response_code":"00","transaction_id":"tn_mhAlwzK0x"},{"id":"pay_ftMx2WoXveVOdF","description":"Opis
|
49
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"reversed","client":"cli_84RAbl__uG21sV","created_at":1416920765,"issuer_response_code":"00","transaction_id":"tn_feetNVaqb"},{"id":"pay_mTOngouLTJWZ0w","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"executed","client":"cli_YM5tKz6-IfhN7T","created_at":1416917311,"issuer_response_code":"00","transaction_id":"tn_5puLXUWDf"},{"id":"pay_yBeZDDdvI9-xPs","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_As1e5K4jpHy5Aw","created_at":1416917203,"reject_reason":"card
|
50
|
+
expired","issuer_response_code":"54","transaction_id":"tn_sC6zyk_5F"},{"id":"pay_Mc4aIdi0mMTwqw","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_DYuoBap-1hJzBU","created_at":1416916959,"reject_reason":"card
|
51
|
+
expired","issuer_response_code":"54","transaction_id":"tn_a0UiElEVZ"},{"id":"pay_dNeWnyjbgh8mry","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_DAGc95pNHoYTup","created_at":1416916878,"reject_reason":"card
|
52
|
+
expired","issuer_response_code":"54","transaction_id":"tn_egEqc9QKG"},{"id":"pay_HxEZHsvAe_DKEf","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_7FXtokGKn71rBJ","created_at":1416916867,"reject_reason":"card
|
53
|
+
expired","issuer_response_code":"54","transaction_id":"tn_MfEarJeKF"},{"id":"pay_kabeiSF6rqkXhf","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_PRg_F5LPOzlaw0","created_at":1416916839,"reject_reason":"card
|
54
|
+
expired","issuer_response_code":"54","transaction_id":"tn_nDxoks8Nw"},{"id":"pay_AqipUAnHNnxk6e","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_Gq_WKAtb1sk-_H","created_at":1416916725,"reject_reason":"card
|
55
|
+
expired","issuer_response_code":"54","transaction_id":"tn_3Q5dbU_B_"},{"id":"pay_M_3aKKX3hEwdJR","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_ZAe6FMTGpAx2D1","created_at":1416916429,"reject_reason":"card
|
56
|
+
expired","issuer_response_code":"54","transaction_id":"tn_PyZneugYr"},{"id":"pay_sM6u2z1uvYuLtp","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_qRRYr2riz-IEqd","created_at":1416915972,"reject_reason":"card
|
57
|
+
expired","issuer_response_code":"54","transaction_id":"tn_RVWC2QZAL"},{"id":"pay_9dhQSFZ5ZoCTot","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_fxWPgeAkWOo1ZU","created_at":1416915851,"reject_reason":"card
|
58
|
+
expired","issuer_response_code":"54","transaction_id":"tn_uNcAmJQIP"},{"id":"pay_VhLoTUAI4SdKAQ","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_qaiHjuRdLKrDfy","created_at":1416915841,"reject_reason":"card
|
59
|
+
expired","issuer_response_code":"54","transaction_id":"tn_d7oo1A-83"},{"id":"pay_WtOOd39mtQ5U9A","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_9qUJ-X9sF-x8H4","created_at":1416915721,"reject_reason":"card
|
60
|
+
expired","issuer_response_code":"54","transaction_id":"tn_m-wM2cSAu"},{"id":"pay_NBdRkyjAUHCS4b","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_GO5IjkVbJJM8EP","created_at":1416915649,"reject_reason":"card
|
61
|
+
expired","issuer_response_code":"54","transaction_id":"tn_vHPyGDu76"},{"id":"pay_OA5PkgCKJXAfS4","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_Ays1Jh3WdgvwdF","created_at":1416915327,"reject_reason":"card
|
62
|
+
expired","issuer_response_code":"54","transaction_id":"tn_0E7kcajyW"},{"id":"pay_UJWQP-sGbC_7Wo","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_FqguquyelXPRme","created_at":1416915312,"reject_reason":"card
|
63
|
+
expired","issuer_response_code":"54","transaction_id":"tn_mFqUywuHv"},{"id":"pay_xfhHX_6-YRcCnp","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_n5hLfjUbGg9_kd","created_at":1416915291,"reject_reason":"card
|
64
|
+
expired","issuer_response_code":"54","transaction_id":"tn_FDIGDOPtr"},{"id":"pay_8UPROeEjy1mfiZ","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_3HMQxyuFUlqrof","created_at":1416915219,"issuer_response_code":"","transaction_id":"tn_zJrhC6LIg"},{"id":"pay_0dAV3hHjTOynda","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_dJ4AONo8kaB9dW","created_at":1416915092,"issuer_response_code":"","transaction_id":"tn_5Ye7_y71v"},{"id":"pay_q4YyzX_LopLa3V","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_BYyLfXi2Y1yD13","created_at":1416915011,"issuer_response_code":"","transaction_id":"tn_Zrkeox6AF"},{"id":"pay_YAM-5tPuCW7zc5","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_WbJy48Hih3qzLl","created_at":1416914988,"issuer_response_code":"","transaction_id":"tn_Zq0C-zIXS"},{"id":"pay_yAUVDCvLcKTdlt","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_RQ2JS7ZkuHmjTA","created_at":1416914971,"issuer_response_code":"","transaction_id":"tn__pAcdnNKx"},{"id":"pay_9Sol_CfGKSwfzu","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_S7FbD61XKua7hH","created_at":1416914232,"issuer_response_code":"","transaction_id":"tn_HN3yjWFhA"},{"id":"pay_F6X-6bq8NrP8TV","description":"payment_id:17","channel":"elavon","amount":"369.00","currency":"PLN","state":"executed","client":"cli_1_9zd3sba03Os5","created_at":1416827486,"issuer_response_code":"00","transaction_id":"tn_QelKAfJje"},{"id":"pay_SejDXvQj3EDuOM","description":"Opis
|
65
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"failed","client":"cli_bjyYV5SMWyqaHk","created_at":1416408068,"issuer_response_code":null,"transaction_id":"tn_n2vdQTxX6"}]}'
|
66
|
+
http_version:
|
67
|
+
recorded_at: Wed, 26 Nov 2014 21:46:10 GMT
|
68
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,68 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://sandbox.espago.com/api/charges
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v3+json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json; charset=utf-8
|
23
|
+
X-Meta-Request-Version:
|
24
|
+
- 0.2.2
|
25
|
+
X-Ua-Compatible:
|
26
|
+
- IE=Edge
|
27
|
+
Etag:
|
28
|
+
- '"36ab75a48cfe4bce4bd0ff6d680a374e"'
|
29
|
+
Cache-Control:
|
30
|
+
- max-age=0, private, must-revalidate
|
31
|
+
Set-Cookie:
|
32
|
+
- _session_id=55c42574ca0428ac9b796264b6d57860; path=/; HttpOnly
|
33
|
+
X-Request-Id:
|
34
|
+
- 51e85e43daed7f402ca0923e440bad80
|
35
|
+
X-Runtime:
|
36
|
+
- '1.454548'
|
37
|
+
Connection:
|
38
|
+
- close
|
39
|
+
Server:
|
40
|
+
- thin 1.5.0 codename Knife
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"count":596,"charges":[{"id":"pay_uxILF7D-heZaT2","description":"Golden
|
44
|
+
plan 2014-11-26","channel":"elavon","amount":"123.45","currency":"pln","state":"executed","client":"cli_90Pi6Jf0ndl_PP","created_at":1417030497,"card":{"company":"VI","last4":"4242","year":2019,"month":3,"first_name":"Jan","last_name":"Kowalski","authorized":null,"created_at":1416842254},"issuer_response_code":"00","reversable":true,"invoice":"in_tUCMhwlg2nkvAaL","subscription":"sub_8yYuCBKdywr7e2","transaction_id":"tn_mQKcgfsNw"},{"id":"pay_Wmu3hmXJIG4jsg","description":"Opis
|
45
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"executed","client":"cli_PQI_mlA6DXe1nP","created_at":1417009684,"issuer_response_code":"00","reversable":true,"transaction_id":"tn_0pydA_RVa"},{"id":"pay_JEWqRdltANdqzH","description":"Opis
|
46
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"preauthorized","client":"cli_0Z-QNfJjl0R7J3","created_at":1417008454,"issuer_response_code":"00","completed":false,"reversable":true,"transaction_id":"tn_2WMKrXcW-"},{"id":"pay_kQmS_3RTfm4eix","description":"Opis
|
47
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"reversed","client":"cli_5rDoJyvKDM4RbM","created_at":1417005334,"issuer_response_code":"00","transaction_id":"tn_tAxxrivny"},{"id":"pay_b1Y2ZuJNXXRDM5","description":"Opis
|
48
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"reversed","client":"cli_VTsnOHjUohL02K","created_at":1416920783,"issuer_response_code":"00","transaction_id":"tn_mhAlwzK0x"},{"id":"pay_ftMx2WoXveVOdF","description":"Opis
|
49
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"reversed","client":"cli_84RAbl__uG21sV","created_at":1416920765,"issuer_response_code":"00","transaction_id":"tn_feetNVaqb"},{"id":"pay_mTOngouLTJWZ0w","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"executed","client":"cli_YM5tKz6-IfhN7T","created_at":1416917311,"issuer_response_code":"00","transaction_id":"tn_5puLXUWDf"},{"id":"pay_yBeZDDdvI9-xPs","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_As1e5K4jpHy5Aw","created_at":1416917203,"reject_reason":"card
|
50
|
+
expired","issuer_response_code":"54","transaction_id":"tn_sC6zyk_5F"},{"id":"pay_Mc4aIdi0mMTwqw","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_DYuoBap-1hJzBU","created_at":1416916959,"reject_reason":"card
|
51
|
+
expired","issuer_response_code":"54","transaction_id":"tn_a0UiElEVZ"},{"id":"pay_dNeWnyjbgh8mry","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_DAGc95pNHoYTup","created_at":1416916878,"reject_reason":"card
|
52
|
+
expired","issuer_response_code":"54","transaction_id":"tn_egEqc9QKG"},{"id":"pay_HxEZHsvAe_DKEf","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_7FXtokGKn71rBJ","created_at":1416916867,"reject_reason":"card
|
53
|
+
expired","issuer_response_code":"54","transaction_id":"tn_MfEarJeKF"},{"id":"pay_kabeiSF6rqkXhf","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_PRg_F5LPOzlaw0","created_at":1416916839,"reject_reason":"card
|
54
|
+
expired","issuer_response_code":"54","transaction_id":"tn_nDxoks8Nw"},{"id":"pay_AqipUAnHNnxk6e","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_Gq_WKAtb1sk-_H","created_at":1416916725,"reject_reason":"card
|
55
|
+
expired","issuer_response_code":"54","transaction_id":"tn_3Q5dbU_B_"},{"id":"pay_M_3aKKX3hEwdJR","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_ZAe6FMTGpAx2D1","created_at":1416916429,"reject_reason":"card
|
56
|
+
expired","issuer_response_code":"54","transaction_id":"tn_PyZneugYr"},{"id":"pay_sM6u2z1uvYuLtp","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_qRRYr2riz-IEqd","created_at":1416915972,"reject_reason":"card
|
57
|
+
expired","issuer_response_code":"54","transaction_id":"tn_RVWC2QZAL"},{"id":"pay_9dhQSFZ5ZoCTot","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_fxWPgeAkWOo1ZU","created_at":1416915851,"reject_reason":"card
|
58
|
+
expired","issuer_response_code":"54","transaction_id":"tn_uNcAmJQIP"},{"id":"pay_VhLoTUAI4SdKAQ","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_qaiHjuRdLKrDfy","created_at":1416915841,"reject_reason":"card
|
59
|
+
expired","issuer_response_code":"54","transaction_id":"tn_d7oo1A-83"},{"id":"pay_WtOOd39mtQ5U9A","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_9qUJ-X9sF-x8H4","created_at":1416915721,"reject_reason":"card
|
60
|
+
expired","issuer_response_code":"54","transaction_id":"tn_m-wM2cSAu"},{"id":"pay_NBdRkyjAUHCS4b","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_GO5IjkVbJJM8EP","created_at":1416915649,"reject_reason":"card
|
61
|
+
expired","issuer_response_code":"54","transaction_id":"tn_vHPyGDu76"},{"id":"pay_OA5PkgCKJXAfS4","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_Ays1Jh3WdgvwdF","created_at":1416915327,"reject_reason":"card
|
62
|
+
expired","issuer_response_code":"54","transaction_id":"tn_0E7kcajyW"},{"id":"pay_UJWQP-sGbC_7Wo","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_FqguquyelXPRme","created_at":1416915312,"reject_reason":"card
|
63
|
+
expired","issuer_response_code":"54","transaction_id":"tn_mFqUywuHv"},{"id":"pay_xfhHX_6-YRcCnp","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_n5hLfjUbGg9_kd","created_at":1416915291,"reject_reason":"card
|
64
|
+
expired","issuer_response_code":"54","transaction_id":"tn_FDIGDOPtr"},{"id":"pay_8UPROeEjy1mfiZ","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_3HMQxyuFUlqrof","created_at":1416915219,"issuer_response_code":"","transaction_id":"tn_zJrhC6LIg"},{"id":"pay_0dAV3hHjTOynda","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_dJ4AONo8kaB9dW","created_at":1416915092,"issuer_response_code":"","transaction_id":"tn_5Ye7_y71v"},{"id":"pay_q4YyzX_LopLa3V","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_BYyLfXi2Y1yD13","created_at":1416915011,"issuer_response_code":"","transaction_id":"tn_Zrkeox6AF"},{"id":"pay_YAM-5tPuCW7zc5","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_WbJy48Hih3qzLl","created_at":1416914988,"issuer_response_code":"","transaction_id":"tn_Zq0C-zIXS"},{"id":"pay_yAUVDCvLcKTdlt","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_RQ2JS7ZkuHmjTA","created_at":1416914971,"issuer_response_code":"","transaction_id":"tn__pAcdnNKx"},{"id":"pay_9Sol_CfGKSwfzu","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"new","client":"cli_S7FbD61XKua7hH","created_at":1416914232,"issuer_response_code":"","transaction_id":"tn_HN3yjWFhA"},{"id":"pay_F6X-6bq8NrP8TV","description":"payment_id:17","channel":"elavon","amount":"369.00","currency":"PLN","state":"executed","client":"cli_1_9zd3sba03Os5","created_at":1416827486,"issuer_response_code":"00","transaction_id":"tn_QelKAfJje"},{"id":"pay_SejDXvQj3EDuOM","description":"Opis
|
65
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"failed","client":"cli_bjyYV5SMWyqaHk","created_at":1416408068,"issuer_response_code":null,"transaction_id":"tn_n2vdQTxX6"}]}'
|
66
|
+
http_version:
|
67
|
+
recorded_at: Wed, 26 Nov 2014 21:46:12 GMT
|
68
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.espago.com/api/charges/pay_kQmS_3RTfm4eix/complete
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Content-Length:
|
13
|
+
- '0'
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
User-Agent:
|
17
|
+
- Ruby
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 201
|
21
|
+
message: Created
|
22
|
+
headers:
|
23
|
+
Content-Type:
|
24
|
+
- application/json; charset=utf-8
|
25
|
+
X-Meta-Request-Version:
|
26
|
+
- 0.2.2
|
27
|
+
X-Ua-Compatible:
|
28
|
+
- IE=Edge
|
29
|
+
Etag:
|
30
|
+
- '"5ea3eba9ebeccd2bc8a2947b54a444f1"'
|
31
|
+
Cache-Control:
|
32
|
+
- max-age=0, private, must-revalidate
|
33
|
+
Set-Cookie:
|
34
|
+
- _session_id=a9e1c248f6c9ddb1e3fd649c586736b1; path=/; HttpOnly
|
35
|
+
X-Request-Id:
|
36
|
+
- 11ef181ee556d7226d688cade112857d
|
37
|
+
X-Runtime:
|
38
|
+
- '1.217965'
|
39
|
+
Connection:
|
40
|
+
- close
|
41
|
+
Server:
|
42
|
+
- thin 1.5.0 codename Knife
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: '{"id":"pay_kQmS_3RTfm4eix","description":"Opis transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"executed","client":"cli_5rDoJyvKDM4RbM","created_at":1417005334,"issuer_response_code":"00","reversable":true,"transaction_id":"tn_tAxxrivny"}'
|
46
|
+
http_version:
|
47
|
+
recorded_at: Wed, 26 Nov 2014 12:37:15 GMT
|
48
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.espago.com/api/charges/pay_Wmu3hmXJIG4jsg/complete
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Content-Length:
|
13
|
+
- '0'
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
User-Agent:
|
17
|
+
- Ruby
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 201
|
21
|
+
message: Created
|
22
|
+
headers:
|
23
|
+
Content-Type:
|
24
|
+
- application/json; charset=utf-8
|
25
|
+
X-Meta-Request-Version:
|
26
|
+
- 0.2.2
|
27
|
+
X-Ua-Compatible:
|
28
|
+
- IE=Edge
|
29
|
+
Etag:
|
30
|
+
- '"c1125d6013e41894d2706e947d6e942c"'
|
31
|
+
Cache-Control:
|
32
|
+
- max-age=0, private, must-revalidate
|
33
|
+
Set-Cookie:
|
34
|
+
- _session_id=0a801889719aa85d0cc346668d43d31e; path=/; HttpOnly
|
35
|
+
X-Request-Id:
|
36
|
+
- f5cabe682fb1e76967d5124e863f99a0
|
37
|
+
X-Runtime:
|
38
|
+
- '0.929976'
|
39
|
+
Connection:
|
40
|
+
- close
|
41
|
+
Server:
|
42
|
+
- thin 1.5.0 codename Knife
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: '{"id":"pay_Wmu3hmXJIG4jsg","description":"Opis transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"executed","client":"cli_PQI_mlA6DXe1nP","created_at":1417009684,"issuer_response_code":"00","reversable":true,"transaction_id":"tn_0pydA_RVa"}'
|
46
|
+
http_version:
|
47
|
+
recorded_at: Wed, 26 Nov 2014 13:48:17 GMT
|
48
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,46 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: delete
|
5
|
+
uri: https://sandbox.espago.com/api/charges/pay_kQmS_3RTfm4eix
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json; charset=utf-8
|
23
|
+
X-Meta-Request-Version:
|
24
|
+
- 0.2.2
|
25
|
+
X-Ua-Compatible:
|
26
|
+
- IE=Edge
|
27
|
+
Etag:
|
28
|
+
- '"e9b260d3d5b26ceec40f977d48e25614"'
|
29
|
+
Cache-Control:
|
30
|
+
- max-age=0, private, must-revalidate
|
31
|
+
Set-Cookie:
|
32
|
+
- _session_id=d6acb24518204a1267f6a2ccb130a48a; path=/; HttpOnly
|
33
|
+
X-Request-Id:
|
34
|
+
- b41422297a3e9f5c8b1143f80a34ffe0
|
35
|
+
X-Runtime:
|
36
|
+
- '1.450934'
|
37
|
+
Connection:
|
38
|
+
- close
|
39
|
+
Server:
|
40
|
+
- thin 1.5.0 codename Knife
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"id":"pay_kQmS_3RTfm4eix","description":"Opis transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"reversed","client":"cli_5rDoJyvKDM4RbM","created_at":1417005334,"issuer_response_code":"00","transaction_id":"tn_tAxxrivny"}'
|
44
|
+
http_version:
|
45
|
+
recorded_at: Wed, 26 Nov 2014 12:41:24 GMT
|
46
|
+
recorded_with: VCR 2.9.3
|