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,67 @@
|
|
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
|
+
- '"6d312ed62c99eb849a825168a30a2cce"'
|
29
|
+
Cache-Control:
|
30
|
+
- max-age=0, private, must-revalidate
|
31
|
+
Set-Cookie:
|
32
|
+
- _session_id=b56c7678f15b1a9cc46c3afd57cc0b2e; path=/; HttpOnly
|
33
|
+
X-Request-Id:
|
34
|
+
- 8e3d15762204f9819148a17ef98b76c4
|
35
|
+
X-Runtime:
|
36
|
+
- '1.920712'
|
37
|
+
Connection:
|
38
|
+
- close
|
39
|
+
Server:
|
40
|
+
- thin 1.5.0 codename Knife
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"count":589,"charges":[{"id":"pay_yBeZDDdvI9-xPs","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"rejected","client":"cli_As1e5K4jpHy5Aw","created_at":1416917203,"reject_reason":"card
|
44
|
+
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
|
45
|
+
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
|
46
|
+
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
|
47
|
+
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
|
48
|
+
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
|
49
|
+
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
|
50
|
+
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
|
51
|
+
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
|
52
|
+
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
|
53
|
+
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
|
54
|
+
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
|
55
|
+
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
|
56
|
+
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
|
57
|
+
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
|
58
|
+
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","reversable":true,"transaction_id":"tn_QelKAfJje"},{"id":"pay_SejDXvQj3EDuOM","description":"Opis
|
59
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"failed","client":"cli_bjyYV5SMWyqaHk","created_at":1416408068,"issuer_response_code":null,"transaction_id":"tn_n2vdQTxX6"},{"id":"pay_T9bUyYCB4OtlgM","description":"Opis
|
60
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"new","client":"cli_ZU8spNjAeUhjHj","created_at":1416327352,"issuer_response_code":"","transaction_id":"tn_lLp1v7o_b"},{"id":"pay_tNvmrEC2wf6n5E","description":"Opis
|
61
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"failed","client":"cli_z9bNfGIepiEmAq","created_at":1416326802,"issuer_response_code":"","transaction_id":"tn_bVlAe5A_X"},{"id":"pay_s10ZkQNKg3kBsG","description":"Opis
|
62
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"executed","client":"cli_HPQ4bkeh8_t_30","created_at":1416326700,"issuer_response_code":"00","reversable":true,"transaction_id":"tn_nZQlA3gMz"},{"id":"pay_lQGyIon5qG59O5","description":"Opis
|
63
|
+
transakcji","channel":"elavon","amount":"49.99","currency":"pln","state":"executed","client":"cli_3szMS5l5b6pPyH","created_at":1416326675,"issuer_response_code":"00","reversable":true,"transaction_id":"tn_QjFB6uVNP"},{"id":"pay_n6-jMhu_y7dvQA","description":"payment_id:16","channel":"elavon","amount":"123.00","currency":"PLN","state":"executed","client":"cli_BZIrW8KMAUnhG7","created_at":1416305855,"issuer_response_code":"00","reversable":true,"transaction_id":"tn_c9D5RvtV-"},{"id":"pay_DhmxQKzDNH4WEB","description":"payment_id:15","channel":"elavon","amount":"123.00","currency":"PLN","state":"failed","client":"cli_qcKoI0l8A1o5xN","created_at":1416305551,"issuer_response_code":"","transaction_id":"tn_Rur-BLWIm"},{"id":"pay_f-a2sxhpVP6qSG","description":"Auth
|
64
|
+
AMEX e-comm","channel":"elavon","amount":"4.00","currency":"pln","state":"refunded","client":"cli_wyJopbPp_I1Ogv","created_at":1415962626,"issuer_response_code":"00","refund_amount":"4.0","transaction_id":"tn_riGwAsIh9"}]}'
|
65
|
+
http_version:
|
66
|
+
recorded_at: Tue, 25 Nov 2014 12:06:46 GMT
|
67
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://sandbox.espago.com/api/charges/pay_mTOngouLTJWZ0w
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
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: 200
|
21
|
+
message: OK
|
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
|
+
- '"76f2464efbd4d4b572cfb2082aefaa65"'
|
31
|
+
Cache-Control:
|
32
|
+
- max-age=0, private, must-revalidate
|
33
|
+
Set-Cookie:
|
34
|
+
- _session_id=a96c21ecae477d2b6beccc4c244b4962; path=/; HttpOnly
|
35
|
+
X-Request-Id:
|
36
|
+
- 439cf8ff9ff17680379731a0cf7a7a92
|
37
|
+
X-Runtime:
|
38
|
+
- '1.759306'
|
39
|
+
Connection:
|
40
|
+
- close
|
41
|
+
Server:
|
42
|
+
- thin 1.5.0 codename Knife
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: '{"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","reversable":true,"transaction_id":"tn_5puLXUWDf"}'
|
46
|
+
http_version:
|
47
|
+
recorded_at: Tue, 25 Nov 2014 12:39:26 GMT
|
48
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.espago.com/api/charges
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: amount=49.99¤cy=PLN&description=Test12345&card%5Bfirst_name%5D=Jan&card%5Blast_name%5D=Kowalski&card%5Bnumber%5D=4242424242424242&card%5Bverification_value%5D=123&card%5Byear%5D=2015&card%5Bmonth%5D=2
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
14
|
+
Content-Type:
|
15
|
+
- application/x-www-form-urlencoded
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
User-Agent:
|
19
|
+
- Ruby
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 201
|
23
|
+
message: Created
|
24
|
+
headers:
|
25
|
+
Content-Type:
|
26
|
+
- application/json; charset=utf-8
|
27
|
+
X-Meta-Request-Version:
|
28
|
+
- 0.2.2
|
29
|
+
X-Ua-Compatible:
|
30
|
+
- IE=Edge
|
31
|
+
Etag:
|
32
|
+
- '"972a1a29ea0e1d4a67e169d8b84b506a"'
|
33
|
+
Cache-Control:
|
34
|
+
- max-age=0, private, must-revalidate
|
35
|
+
Set-Cookie:
|
36
|
+
- _session_id=d98575dab0f9a2cbdc9c8c91fab16247; path=/; HttpOnly
|
37
|
+
X-Request-Id:
|
38
|
+
- 2f00526303e5645e1c0a69f02d9a0afb
|
39
|
+
X-Runtime:
|
40
|
+
- '1.214083'
|
41
|
+
Connection:
|
42
|
+
- close
|
43
|
+
Server:
|
44
|
+
- thin 1.5.0 codename Knife
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: '{"id":"pay_mTOngouLTJWZ0w","description":"Test12345","channel":"elavon","amount":"49.99","currency":"PLN","state":"executed","client":"cli_YM5tKz6-IfhN7T","created_at":1416917311,"card":{"company":"VI","last4":"4242","year":2015,"month":2,"first_name":"Jan","last_name":"Kowalski","authorized":null,"created_at":1416917311},"issuer_response_code":"00","reversable":true,"transaction_id":"tn_5puLXUWDf"}'
|
48
|
+
http_version:
|
49
|
+
recorded_at: Tue, 25 Nov 2014 12:08:32 GMT
|
50
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.espago.com/api/charges/pay_lQGyIon5qG59O5/refund
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: charge_id=pay_lQGyIon5qG59O5
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
14
|
+
Content-Type:
|
15
|
+
- application/x-www-form-urlencoded
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
User-Agent:
|
19
|
+
- Ruby
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 201
|
23
|
+
message: Created
|
24
|
+
headers:
|
25
|
+
Content-Type:
|
26
|
+
- application/json; charset=utf-8
|
27
|
+
X-Meta-Request-Version:
|
28
|
+
- 0.2.2
|
29
|
+
X-Ua-Compatible:
|
30
|
+
- IE=Edge
|
31
|
+
Etag:
|
32
|
+
- '"cbdc619a2d93a369a022248154fbf661"'
|
33
|
+
Cache-Control:
|
34
|
+
- max-age=0, private, must-revalidate
|
35
|
+
Set-Cookie:
|
36
|
+
- _session_id=1d1df3d66484a4269b07826856230f97; path=/; HttpOnly
|
37
|
+
X-Request-Id:
|
38
|
+
- fa8ab1f40408cfdb01470c2547ad7525
|
39
|
+
X-Runtime:
|
40
|
+
- '1.375876'
|
41
|
+
Connection:
|
42
|
+
- close
|
43
|
+
Server:
|
44
|
+
- thin 1.5.0 codename Knife
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: '{"id":"pay_lQGyIon5qG59O5","description":"Opis transakcji","amount":"49.99","refunded_amount":"49.99","currency":"pln","state":"refunded","client":"cli_3szMS5l5b6pPyH","created_at":1416326675,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null}}'
|
48
|
+
http_version:
|
49
|
+
recorded_at: Tue, 25 Nov 2014 13:44:33 GMT
|
50
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.espago.com/api/clients/cli_w0Se2smYwyQ0Uw/authorize
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
14
|
+
Content-Length:
|
15
|
+
- '0'
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
User-Agent:
|
19
|
+
- Ruby
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 201
|
23
|
+
message: Created
|
24
|
+
headers:
|
25
|
+
Content-Type:
|
26
|
+
- application/json; charset=utf-8
|
27
|
+
X-Meta-Request-Version:
|
28
|
+
- 0.2.2
|
29
|
+
X-Ua-Compatible:
|
30
|
+
- IE=Edge
|
31
|
+
Etag:
|
32
|
+
- '"a8faa080eae05fb1056ef92dfb0c0479"'
|
33
|
+
Cache-Control:
|
34
|
+
- max-age=0, private, must-revalidate
|
35
|
+
Set-Cookie:
|
36
|
+
- _session_id=4a24f8f2bb9095a707bf305ff0d23efc; path=/; HttpOnly
|
37
|
+
X-Request-Id:
|
38
|
+
- 631ce87a08bb2b6c26bdbf1f7485bbf4
|
39
|
+
X-Runtime:
|
40
|
+
- '1.818804'
|
41
|
+
Connection:
|
42
|
+
- close
|
43
|
+
Server:
|
44
|
+
- thin 1.5.0 codename Knife
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: '{"email":null,"id":"cli_w0Se2smYwyQ0Uw","created_at":1417004837,"description":null,"card":{"company":"VI","last4":"1112","year":2020,"month":1,"first_name":"Jan","last_name":"Kowalski","authorized":true,"issuer_response_code":"00","created_at":1417004837},"deleted":false}'
|
48
|
+
http_version:
|
49
|
+
recorded_at: Wed, 26 Nov 2014 13:09:18 GMT
|
50
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,44 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: delete
|
5
|
+
uri: https://sandbox.espago.com/api/clients/cli_5rDoJyvKDM4RbM
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
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: 204
|
21
|
+
message: No Content
|
22
|
+
headers:
|
23
|
+
X-Meta-Request-Version:
|
24
|
+
- 0.2.2
|
25
|
+
X-Ua-Compatible:
|
26
|
+
- IE=Edge
|
27
|
+
Cache-Control:
|
28
|
+
- no-cache
|
29
|
+
Set-Cookie:
|
30
|
+
- _session_id=3b72d9c3bd3f48ed7436c73bfc9ffea2; path=/; HttpOnly
|
31
|
+
X-Request-Id:
|
32
|
+
- f5b56e490f2a6ce8424bbed4f7023274
|
33
|
+
X-Runtime:
|
34
|
+
- '0.492182'
|
35
|
+
Connection:
|
36
|
+
- close
|
37
|
+
Server:
|
38
|
+
- thin 1.5.0 codename Knife
|
39
|
+
body:
|
40
|
+
encoding: UTF-8
|
41
|
+
string: ''
|
42
|
+
http_version:
|
43
|
+
recorded_at: Wed, 26 Nov 2014 13:45:45 GMT
|
44
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://sandbox.espago.com/api/clients
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
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: 200
|
21
|
+
message: OK
|
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
|
+
- '"1eb158a92dc465ec1b96223c144c65bb"'
|
31
|
+
Cache-Control:
|
32
|
+
- max-age=0, private, must-revalidate
|
33
|
+
Set-Cookie:
|
34
|
+
- _session_id=40f058895c1d71670124e01a1945b79f; path=/; HttpOnly
|
35
|
+
X-Request-Id:
|
36
|
+
- b8b9d5958d5356ab3c98a50478edcb4d
|
37
|
+
X-Runtime:
|
38
|
+
- '1.024735'
|
39
|
+
Connection:
|
40
|
+
- close
|
41
|
+
Server:
|
42
|
+
- thin 1.5.0 codename Knife
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: '{"count":597,"clients":[{"email":null,"id":"cli_5rDoJyvKDM4RbM","created_at":1417005334,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_w0Se2smYwyQ0Uw","created_at":1417004837,"description":null,"card":{"company":"VI","last4":"1112","year":2020,"month":1,"first_name":"Jan","last_name":"Kowalski","authorized":null,"created_at":1417004837},"deleted":false},{"email":null,"id":"cli_VTsnOHjUohL02K","created_at":1416920783,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_84RAbl__uG21sV","created_at":1416920765,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_YM5tKz6-IfhN7T","created_at":1416917311,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_As1e5K4jpHy5Aw","created_at":1416917203,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_DYuoBap-1hJzBU","created_at":1416916959,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_DAGc95pNHoYTup","created_at":1416916878,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_7FXtokGKn71rBJ","created_at":1416916867,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_PRg_F5LPOzlaw0","created_at":1416916839,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_Gq_WKAtb1sk-_H","created_at":1416916725,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_ZAe6FMTGpAx2D1","created_at":1416916428,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_qRRYr2riz-IEqd","created_at":1416915972,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_fxWPgeAkWOo1ZU","created_at":1416915851,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_qaiHjuRdLKrDfy","created_at":1416915841,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_9qUJ-X9sF-x8H4","created_at":1416915721,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_GO5IjkVbJJM8EP","created_at":1416915649,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_Ays1Jh3WdgvwdF","created_at":1416915327,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_FqguquyelXPRme","created_at":1416915312,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_n5hLfjUbGg9_kd","created_at":1416915291,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_3HMQxyuFUlqrof","created_at":1416915219,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_dJ4AONo8kaB9dW","created_at":1416915092,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_BYyLfXi2Y1yD13","created_at":1416915011,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_WbJy48Hih3qzLl","created_at":1416914987,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false},{"email":null,"id":"cli_RQ2JS7ZkuHmjTA","created_at":1416914971,"description":null,"card":{"company":null,"last4":null,"year":null,"month":null,"first_name":null,"last_name":null,"authorized":null,"created_at":null},"deleted":false}]}'
|
46
|
+
http_version:
|
47
|
+
recorded_at: Wed, 26 Nov 2014 13:00:20 GMT
|
48
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://sandbox.espago.com/api/clients/cli_w0Se2smYwyQ0Uw
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
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: 200
|
21
|
+
message: OK
|
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
|
+
- '"23faffbeb5fce29f008bf5808b190883"'
|
31
|
+
Cache-Control:
|
32
|
+
- max-age=0, private, must-revalidate
|
33
|
+
Set-Cookie:
|
34
|
+
- _session_id=2ed582272819f4ec7833e4a1c1e469b5; path=/; HttpOnly
|
35
|
+
X-Request-Id:
|
36
|
+
- 38a9ebd9990ab88712e4482280066d42
|
37
|
+
X-Runtime:
|
38
|
+
- '0.233716'
|
39
|
+
Connection:
|
40
|
+
- close
|
41
|
+
Server:
|
42
|
+
- thin 1.5.0 codename Knife
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: '{"email":null,"id":"cli_w0Se2smYwyQ0Uw","created_at":1417004837,"description":null,"card":{"company":"VI","last4":"1112","year":2020,"month":1,"first_name":"Jan","last_name":"Kowalski","authorized":null,"created_at":1417004837},"deleted":false}'
|
46
|
+
http_version:
|
47
|
+
recorded_at: Wed, 26 Nov 2014 13:04:22 GMT
|
48
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://sandbox.espago.com/api/clients/cli_w0Se2smYwyQ0Uw/invoices
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
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: 200
|
21
|
+
message: OK
|
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
|
+
- '"8970025bdcaf385827f0c6078cac4f60"'
|
31
|
+
Cache-Control:
|
32
|
+
- max-age=0, private, must-revalidate
|
33
|
+
Set-Cookie:
|
34
|
+
- _session_id=50007903cb4a6b751bf162f8cb244e02; path=/; HttpOnly
|
35
|
+
X-Request-Id:
|
36
|
+
- 3c77d833ab942c81dad25f67b3043245
|
37
|
+
X-Runtime:
|
38
|
+
- '0.652401'
|
39
|
+
Connection:
|
40
|
+
- close
|
41
|
+
Server:
|
42
|
+
- thin 1.5.0 codename Knife
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: '{"count":0,"invoices":[]}'
|
46
|
+
http_version:
|
47
|
+
recorded_at: Wed, 26 Nov 2014 13:24:06 GMT
|
48
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://sandbox.espago.com/api/clients
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: card%5Bfirst_name%5D=Jan&card%5Blast_name%5D=Kowalski&card%5Bnumber%5D=4242424242424242&card%5Bverification_value%5D=123&card%5Byear%5D=2015&card%5Bmonth%5D=2
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
14
|
+
Content-Type:
|
15
|
+
- application/x-www-form-urlencoded
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
User-Agent:
|
19
|
+
- Ruby
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 201
|
23
|
+
message: Created
|
24
|
+
headers:
|
25
|
+
Content-Type:
|
26
|
+
- application/json; charset=utf-8
|
27
|
+
X-Meta-Request-Version:
|
28
|
+
- 0.2.2
|
29
|
+
X-Ua-Compatible:
|
30
|
+
- IE=Edge
|
31
|
+
Etag:
|
32
|
+
- '"9349f390e3c220e18dfdc65209505475"'
|
33
|
+
Cache-Control:
|
34
|
+
- max-age=0, private, must-revalidate
|
35
|
+
Set-Cookie:
|
36
|
+
- _session_id=a624e5bd2da96cdb6a584bc3a8794ff8; path=/; HttpOnly
|
37
|
+
X-Request-Id:
|
38
|
+
- a2690a83deed494fb104958f1c95e4fe
|
39
|
+
X-Runtime:
|
40
|
+
- '0.458806'
|
41
|
+
Connection:
|
42
|
+
- close
|
43
|
+
Server:
|
44
|
+
- thin 1.5.0 codename Knife
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: '{"email":null,"id":"cli_ZmcL7nwmof5-Tx","created_at":1417007099,"description":null,"card":{"company":"VI","last4":"4242","year":2015,"month":2,"first_name":"Jan","last_name":"Kowalski","authorized":null,"created_at":1417007099},"deleted":false}'
|
48
|
+
http_version:
|
49
|
+
recorded_at: Wed, 26 Nov 2014 13:04:59 GMT
|
50
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: put
|
5
|
+
uri: https://sandbox.espago.com/api/clients/cli_w0Se2smYwyQ0Uw
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: client_id=cli_w0Se2smYwyQ0Uw&card%5Bfirst_name%5D=Jan&card%5Blast_name%5D=Kowalski&card%5Bnumber%5D=4242424242424242&card%5Bverification_value%5D=123&card%5Byear%5D=2015&card%5Bmonth%5D=2
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
14
|
+
Content-Type:
|
15
|
+
- application/x-www-form-urlencoded
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
User-Agent:
|
19
|
+
- Ruby
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
Content-Type:
|
26
|
+
- application/json; charset=utf-8
|
27
|
+
X-Meta-Request-Version:
|
28
|
+
- 0.2.2
|
29
|
+
X-Ua-Compatible:
|
30
|
+
- IE=Edge
|
31
|
+
Etag:
|
32
|
+
- '"db2687e54fc4bc67557e2e73a00c3f76"'
|
33
|
+
Cache-Control:
|
34
|
+
- max-age=0, private, must-revalidate
|
35
|
+
Set-Cookie:
|
36
|
+
- _session_id=2791c9a2f57fc867767a945b8c4c9e71; path=/; HttpOnly
|
37
|
+
X-Request-Id:
|
38
|
+
- bab411e109245b7f281f75ab06326b06
|
39
|
+
X-Runtime:
|
40
|
+
- '0.374000'
|
41
|
+
Connection:
|
42
|
+
- close
|
43
|
+
Server:
|
44
|
+
- thin 1.5.0 codename Knife
|
45
|
+
body:
|
46
|
+
encoding: UTF-8
|
47
|
+
string: '{"email":null,"id":"cli_w0Se2smYwyQ0Uw","created_at":1417004837,"description":null,"card":{"company":"VI","last4":"4242","year":2015,"month":2,"first_name":"Jan","last_name":"Kowalski","authorized":null,"created_at":1417008463},"deleted":false}'
|
48
|
+
http_version:
|
49
|
+
recorded_at: Wed, 26 Nov 2014 13:27:43 GMT
|
50
|
+
recorded_with: VCR 2.9.3
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://sandbox.espago.com/api/clients/cli_w0Se2smYwyQ0Uw/subscriptions
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/vnd.espago.v2+json
|
12
|
+
Authorization:
|
13
|
+
- Basic YXBwX2lkX3Rlc3Q6YXBwX3Bhc3N3b3JkX3Rlc3Q=
|
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: 200
|
21
|
+
message: OK
|
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
|
+
- '"2751f5b331a81b675e387a429cfc8740"'
|
31
|
+
Cache-Control:
|
32
|
+
- max-age=0, private, must-revalidate
|
33
|
+
Set-Cookie:
|
34
|
+
- _session_id=97de8bf1d0ee088d41f9fab17e0b8c57; path=/; HttpOnly
|
35
|
+
X-Request-Id:
|
36
|
+
- daae81eb0e1df5e827171e31f04b3223
|
37
|
+
X-Runtime:
|
38
|
+
- '0.998111'
|
39
|
+
Connection:
|
40
|
+
- close
|
41
|
+
Server:
|
42
|
+
- thin 1.5.0 codename Knife
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: '{"count":0,"subscriptions":[]}'
|
46
|
+
http_version:
|
47
|
+
recorded_at: Wed, 26 Nov 2014 13:44:33 GMT
|
48
|
+
recorded_with: VCR 2.9.3
|