fat_zebra_multi 3.1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/.rspec +0 -0
- data/.rubocop.yml +44 -0
- data/.travis.yml +10 -0
- data/Gemfile +4 -0
- data/README.md +104 -0
- data/Rakefile +11 -0
- data/fat_zebra_multi.gemspec +27 -0
- data/lib/fat_zebra.rb +65 -0
- data/lib/fat_zebra/api_helper.rb +91 -0
- data/lib/fat_zebra/api_operation/delete.rb +38 -0
- data/lib/fat_zebra/api_operation/find.rb +30 -0
- data/lib/fat_zebra/api_operation/save.rb +67 -0
- data/lib/fat_zebra/api_operation/search.rb +39 -0
- data/lib/fat_zebra/api_operation/void.rb +52 -0
- data/lib/fat_zebra/api_resource.rb +88 -0
- data/lib/fat_zebra/bank_account.rb +20 -0
- data/lib/fat_zebra/batch.rb +60 -0
- data/lib/fat_zebra/card.rb +23 -0
- data/lib/fat_zebra/config.rb +90 -0
- data/lib/fat_zebra/customer.rb +26 -0
- data/lib/fat_zebra/direct_credit.rb +26 -0
- data/lib/fat_zebra/direct_debit.rb +26 -0
- data/lib/fat_zebra/errors.rb +37 -0
- data/lib/fat_zebra/fat_zebra_object.rb +68 -0
- data/lib/fat_zebra/information.rb +29 -0
- data/lib/fat_zebra/object_helper.rb +119 -0
- data/lib/fat_zebra/payment_plan.rb +61 -0
- data/lib/fat_zebra/purchase.rb +96 -0
- data/lib/fat_zebra/refund.rb +27 -0
- data/lib/fat_zebra/request.rb +174 -0
- data/lib/fat_zebra/request/multipart/epilogue.rb +23 -0
- data/lib/fat_zebra/request/multipart/file_io.rb +40 -0
- data/lib/fat_zebra/request/multipart/param.rb +37 -0
- data/lib/fat_zebra/request/multipart/part.rb +28 -0
- data/lib/fat_zebra/request/multipart/stream.rb +57 -0
- data/lib/fat_zebra/util.rb +71 -0
- data/lib/fat_zebra/validation.rb +67 -0
- data/lib/fat_zebra/version.rb +3 -0
- data/lib/fat_zebra/web_hook.rb +22 -0
- data/spec/cassettes/FatZebra_BankAccount/_create/1_1_1.yml +53 -0
- data/spec/cassettes/FatZebra_BankAccount/_create/1_1_2.yml +53 -0
- data/spec/cassettes/FatZebra_BankAccount/_search/1_2_1.yml +164 -0
- data/spec/cassettes/FatZebra_BankAccount/_search/1_2_2.yml +164 -0
- data/spec/cassettes/FatZebra_BankAccount/_search/1_2_3.yml +164 -0
- data/spec/cassettes/FatZebra_Batch/_create/with_file/1_1_1_1.yml +61 -0
- data/spec/cassettes/FatZebra_Batch/_create/with_file/1_1_1_2.yml +61 -0
- data/spec/cassettes/FatZebra_Batch/_create/with_path/1_1_2_1.yml +61 -0
- data/spec/cassettes/FatZebra_Batch/_create/with_path/1_1_2_2.yml +61 -0
- data/spec/cassettes/FatZebra_Batch/_find/1_2_1.yml +112 -0
- data/spec/cassettes/FatZebra_Batch/_find/1_2_2.yml +112 -0
- data/spec/cassettes/FatZebra_Batch/_result/1_4_1.yml +163 -0
- data/spec/cassettes/FatZebra_Batch/_search/1_3_1.yml +54 -0
- data/spec/cassettes/FatZebra_Batch/_search/1_3_2.yml +54 -0
- data/spec/cassettes/FatZebra_Batch/_search/1_3_3.yml +54 -0
- data/spec/cassettes/FatZebra_Card/_create/1_1_1.yml +54 -0
- data/spec/cassettes/FatZebra_Card/_create/1_1_2.yml +54 -0
- data/spec/cassettes/FatZebra_Card/_create/1_1_3.yml +54 -0
- data/spec/cassettes/FatZebra_Card/_create/1_1_4.yml +54 -0
- data/spec/cassettes/FatZebra_Card/_create/1_1_5.yml +54 -0
- data/spec/cassettes/FatZebra_Card/_create/1_1_6.yml +54 -0
- data/spec/cassettes/FatZebra_Card/_update/1_2_1.yml +105 -0
- data/spec/cassettes/FatZebra_Card/_update/1_2_2.yml +105 -0
- data/spec/cassettes/FatZebra_Card/_update/1_2_3.yml +105 -0
- data/spec/cassettes/FatZebra_Card/_update/validations/1_2_4_1.yml +54 -0
- data/spec/cassettes/FatZebra_Customer/_create/1_1_1.yml +55 -0
- data/spec/cassettes/FatZebra_Customer/_create/1_1_2.yml +55 -0
- data/spec/cassettes/FatZebra_Customer/_create/1_1_3.yml +55 -0
- data/spec/cassettes/FatZebra_Customer/_create/1_1_4.yml +55 -0
- data/spec/cassettes/FatZebra_Customer/_create/1_1_5.yml +55 -0
- data/spec/cassettes/FatZebra_Customer/_create/1_1_6.yml +55 -0
- data/spec/cassettes/FatZebra_Customer/_delete/1_5_1.yml +103 -0
- data/spec/cassettes/FatZebra_Customer/_find/1_3_1.yml +107 -0
- data/spec/cassettes/FatZebra_Customer/_find/1_3_2.yml +107 -0
- data/spec/cassettes/FatZebra_Customer/_search/1_2_1.yml +60 -0
- data/spec/cassettes/FatZebra_Customer/_search/1_2_2.yml +60 -0
- data/spec/cassettes/FatZebra_Customer/_search/1_2_3.yml +60 -0
- data/spec/cassettes/FatZebra_Customer/_update/1_4_1.yml +106 -0
- data/spec/cassettes/FatZebra_Customer/_update/1_4_2.yml +106 -0
- data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_1.yml +52 -0
- data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_2.yml +52 -0
- data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_3.yml +52 -0
- data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_4.yml +52 -0
- data/spec/cassettes/FatZebra_DirectCredit/_create/validations/valid/1_1_5_1_1.yml +52 -0
- data/spec/cassettes/FatZebra_DirectCredit/_delete/1_4_1.yml +99 -0
- data/spec/cassettes/FatZebra_DirectCredit/_find/1_2_1.yml +103 -0
- data/spec/cassettes/FatZebra_DirectCredit/_find/1_2_2.yml +103 -0
- data/spec/cassettes/FatZebra_DirectCredit/_find/1_2_3.yml +103 -0
- data/spec/cassettes/FatZebra_DirectCredit/_search/1_3_1.yml +152 -0
- data/spec/cassettes/FatZebra_DirectCredit/_search/1_3_2.yml +152 -0
- data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_1.yml +52 -0
- data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_2.yml +52 -0
- data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_3.yml +52 -0
- data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_4.yml +52 -0
- data/spec/cassettes/FatZebra_DirectDebit/_create/validations/valid/1_1_5_1_1.yml +52 -0
- data/spec/cassettes/FatZebra_DirectDebit/_delete/1_4_1.yml +99 -0
- data/spec/cassettes/FatZebra_DirectDebit/_find/1_2_1.yml +103 -0
- data/spec/cassettes/FatZebra_DirectDebit/_find/1_2_2.yml +103 -0
- data/spec/cassettes/FatZebra_DirectDebit/_find/1_2_3.yml +103 -0
- data/spec/cassettes/FatZebra_DirectDebit/_search/1_3_1.yml +152 -0
- data/spec/cassettes/FatZebra_DirectDebit/_search/1_3_2.yml +152 -0
- data/spec/cassettes/FatZebra_Information/_ping/1_1_1.yml +54 -0
- data/spec/cassettes/FatZebra_Information/_ping/1_1_2.yml +54 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_active_/1_8_1.yml +222 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_active_/1_8_2.yml +222 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_create/1_1_1.yml +110 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_create/1_1_2.yml +110 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_create/1_1_3.yml +110 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_delete/1_5_1.yml +158 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_destroy/1_6_1.yml +158 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_find/1_2_1.yml +167 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_find/1_2_2.yml +167 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_find/1_2_3.yml +167 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_suspend_/1_7_1.yml +166 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_suspend_/1_7_2.yml +166 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_update/1_3_1.yml +160 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_update/1_3_2.yml +160 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_update/1_3_3.yml +160 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_update/1_4_1.yml +166 -0
- data/spec/cassettes/FatZebra_PaymentPlan/_update/1_4_2.yml +166 -0
- data/spec/cassettes/FatZebra_Purchase/_capture/1_5_1.yml +115 -0
- data/spec/cassettes/FatZebra_Purchase/_capture/1_5_2.yml +115 -0
- data/spec/cassettes/FatZebra_Purchase/_capture/1_5_3.yml +115 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_1.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_10.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_11.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_12.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_13.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_2.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_3.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_4.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_5.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_6.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_7.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_8.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/1_1_9.yml +53 -0
- data/spec/cassettes/FatZebra_Purchase/_create/bad_request/1_1_14_1.yml +55 -0
- data/spec/cassettes/FatZebra_Purchase/_create/bad_request/1_1_14_2.yml +55 -0
- data/spec/cassettes/FatZebra_Purchase/_find/1_2_1.yml +117 -0
- data/spec/cassettes/FatZebra_Purchase/_find/1_2_2.yml +117 -0
- data/spec/cassettes/FatZebra_Purchase/_find/1_2_3.yml +117 -0
- data/spec/cassettes/FatZebra_Purchase/_find/1_2_4.yml +117 -0
- data/spec/cassettes/FatZebra_Purchase/_refund/1_4_1.yml +115 -0
- data/spec/cassettes/FatZebra_Purchase/_refund/1_4_2.yml +115 -0
- data/spec/cassettes/FatZebra_Purchase/_refund/1_4_3.yml +115 -0
- data/spec/cassettes/FatZebra_Purchase/_search/1_3_1.yml +164 -0
- data/spec/cassettes/FatZebra_Purchase/_search/1_3_2.yml +164 -0
- data/spec/cassettes/FatZebra_Purchase/_search/1_3_3.yml +164 -0
- data/spec/cassettes/FatZebra_Purchase/_settlement/1_8_1.yml +652 -0
- data/spec/cassettes/FatZebra_Purchase/_settlement/1_8_2.yml +652 -0
- data/spec/cassettes/FatZebra_Purchase/_settlement/1_8_3.yml +652 -0
- data/spec/cassettes/FatZebra_Purchase/_void/1_6_1.yml +103 -0
- data/spec/cassettes/FatZebra_Purchase/_void/1_6_2.yml +103 -0
- data/spec/cassettes/FatZebra_Purchase/_void/1_6_3.yml +103 -0
- data/spec/cassettes/FatZebra_Purchase/_void/1_6_4.yml +103 -0
- data/spec/cassettes/FatZebra_Purchase/_void/1_7_1.yml +103 -0
- data/spec/cassettes/FatZebra_Purchase/_void/1_7_2.yml +103 -0
- data/spec/cassettes/FatZebra_Purchase/_void/1_7_3.yml +103 -0
- data/spec/cassettes/FatZebra_Purchase/_void/1_7_4.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_1.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_10.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_2.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_3.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_4.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_5.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_6.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_7.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_8.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_create/1_1_9.yml +103 -0
- data/spec/cassettes/FatZebra_Refund/_find/1_2_1.yml +155 -0
- data/spec/cassettes/FatZebra_Refund/_find/1_2_2.yml +155 -0
- data/spec/cassettes/FatZebra_Refund/_find/1_2_3.yml +155 -0
- data/spec/cassettes/FatZebra_Refund/_search/responds_with_the_newly-created_refunds.yml +214 -0
- data/spec/cassettes/FatZebra_Refund/_void/1_4_1.yml +153 -0
- data/spec/cassettes/FatZebra_Refund/_void/1_4_2.yml +153 -0
- data/spec/cassettes/FatZebra_Refund/_void/1_4_3.yml +153 -0
- data/spec/cassettes/FatZebra_Refund/_void/1_4_4.yml +153 -0
- data/spec/cassettes/FatZebra_WebHook/_create/1_1_1.yml +53 -0
- data/spec/cassettes/FatZebra_WebHook/_create/1_1_2.yml +53 -0
- data/spec/cassettes/FatZebra_WebHook/_create/1_1_3.yml +53 -0
- data/spec/cassettes/FatZebra_WebHook/_delete/1_4_1.yml +101 -0
- data/spec/cassettes/FatZebra_WebHook/_search/1_2_1.yml +298 -0
- data/spec/cassettes/FatZebra_WebHook/_search/1_2_2.yml +300 -0
- data/spec/cassettes/FatZebra_WebHook/_update/1_3_1.yml +104 -0
- data/spec/cassettes/FatZebra_WebHook/_update/1_3_2.yml +104 -0
- data/spec/cassettes/Multiple_accounts/The_basics/1_1_5.yml +59 -0
- data/spec/cassettes/Multiple_accounts/The_basics/1_1_6.yml +59 -0
- data/spec/fixtures/batch_test.csv +4 -0
- data/spec/lib/fat_zebra/api_resource_spec.rb +25 -0
- data/spec/lib/fat_zebra/bank_account_spec.rb +34 -0
- data/spec/lib/fat_zebra/batch_spec.rb +59 -0
- data/spec/lib/fat_zebra/card_spec.rb +41 -0
- data/spec/lib/fat_zebra/config_spec.rb +69 -0
- data/spec/lib/fat_zebra/customer_spec.rb +53 -0
- data/spec/lib/fat_zebra/direct_credit_spec.rb +74 -0
- data/spec/lib/fat_zebra/direct_debit_spec.rb +74 -0
- data/spec/lib/fat_zebra/fat_zebra_object_spec.rb +117 -0
- data/spec/lib/fat_zebra/information_spec.rb +13 -0
- data/spec/lib/fat_zebra/multiple_accounts_spec.rb +69 -0
- data/spec/lib/fat_zebra/payment_plan_spec.rb +94 -0
- data/spec/lib/fat_zebra/purchase_spec.rb +105 -0
- data/spec/lib/fat_zebra/refund_spec.rb +95 -0
- data/spec/lib/fat_zebra/request_spec.rb +59 -0
- data/spec/lib/fat_zebra/util_spec.rb +43 -0
- data/spec/lib/fat_zebra/validation_spec.rb +22 -0
- data/spec/lib/fat_zebra/web_hook_spec.rb +50 -0
- data/spec/spec_helper.rb +68 -0
- data/spec/support/payloads.rb +43 -0
- data/vendor/cacert.pem +3390 -0
- metadata +338 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: '{"amount":10000,"card_holder":"Matthew Savage","card_number":"5123456789012346","card_expiry":"02/2030","cvv":123,"reference":"224e5d5046a70c302a6491de13184348","customer_ip":"1.2.3.4","currency":"AUD","test":true}'
|
|
9
|
+
headers:
|
|
10
|
+
Accept-Encoding:
|
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
12
|
+
Accept:
|
|
13
|
+
- application/json
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
Authorization:
|
|
17
|
+
- Basic VEVTVDpURVNU
|
|
18
|
+
Content-Type:
|
|
19
|
+
- application/json
|
|
20
|
+
response:
|
|
21
|
+
status:
|
|
22
|
+
code: 200
|
|
23
|
+
message: OK
|
|
24
|
+
headers:
|
|
25
|
+
Date:
|
|
26
|
+
- Mon, 29 Apr 2019 09:24:25 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Status:
|
|
34
|
+
- 200 OK
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- no-store
|
|
37
|
+
X-Request-Version:
|
|
38
|
+
- 1.16.9-3941@c1d8236
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.581282'
|
|
41
|
+
Pragma:
|
|
42
|
+
- no-cache
|
|
43
|
+
X-Request-Id:
|
|
44
|
+
- 31d2061454b38fc492f7fb84
|
|
45
|
+
X-Backend:
|
|
46
|
+
- sbox-priv-gateway-a
|
|
47
|
+
body:
|
|
48
|
+
encoding: UTF-8
|
|
49
|
+
string: '{"successful":true,"response":{"authorization":"995933","id":"071-P-CNUUTBTJ","card_number":"512345XXXXXX2346","card_holder":"Matthew
|
|
50
|
+
Savage","card_expiry":"2030-02-28","card_token":"g1fhfehlldr8611ie88z","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"224e5d5046a70c302a6491de13184348","currency":"AUD","transaction_id":"071-P-CNUUTBTJ","settlement_date":"2019-04-29","transaction_date":"2019-04-29T19:24:25+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PCNUUTBTJ","cvv_match":"M","metadata":{"authorization_tracking_id":"","original_transaction_reference":""},"addendum_data":{}},"errors":[],"test":true}'
|
|
51
|
+
http_version:
|
|
52
|
+
recorded_at: Mon, 29 Apr 2019 09:24:25 GMT
|
|
53
|
+
- request:
|
|
54
|
+
method: post
|
|
55
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/void
|
|
56
|
+
body:
|
|
57
|
+
encoding: UTF-8
|
|
58
|
+
string: '{"id":"071-P-CNUUTBTJ","test":true}'
|
|
59
|
+
headers:
|
|
60
|
+
Accept-Encoding:
|
|
61
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
62
|
+
Accept:
|
|
63
|
+
- application/json
|
|
64
|
+
User-Agent:
|
|
65
|
+
- Ruby
|
|
66
|
+
Authorization:
|
|
67
|
+
- Basic VEVTVDpURVNU
|
|
68
|
+
Content-Type:
|
|
69
|
+
- application/json
|
|
70
|
+
response:
|
|
71
|
+
status:
|
|
72
|
+
code: 200
|
|
73
|
+
message: OK
|
|
74
|
+
headers:
|
|
75
|
+
Date:
|
|
76
|
+
- Mon, 29 Apr 2019 09:24:26 GMT
|
|
77
|
+
Content-Type:
|
|
78
|
+
- application/json; charset=utf-8
|
|
79
|
+
Transfer-Encoding:
|
|
80
|
+
- chunked
|
|
81
|
+
Connection:
|
|
82
|
+
- keep-alive
|
|
83
|
+
Status:
|
|
84
|
+
- 200 OK
|
|
85
|
+
Cache-Control:
|
|
86
|
+
- no-store
|
|
87
|
+
X-Request-Version:
|
|
88
|
+
- 1.16.9-3941@c1d8236
|
|
89
|
+
X-Runtime:
|
|
90
|
+
- '0.168870'
|
|
91
|
+
Pragma:
|
|
92
|
+
- no-cache
|
|
93
|
+
X-Request-Id:
|
|
94
|
+
- 675798302305b3d0352dbee0
|
|
95
|
+
X-Backend:
|
|
96
|
+
- sbox-priv-gateway-a
|
|
97
|
+
body:
|
|
98
|
+
encoding: UTF-8
|
|
99
|
+
string: '{"successful":true,"response":{"authorization":"995933","id":"071-P-CNUUTBTJ","card_number":"512345XXXXXX2346","card_holder":"Matthew
|
|
100
|
+
Savage","card_expiry":"2030-02-28","card_token":"g1fhfehlldr8611ie88z","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Voided","reference":"224e5d5046a70c302a6491de13184348","currency":"AUD","transaction_id":"071-P-CNUUTBTJ","settlement_date":"2019-04-29","transaction_date":"2019-04-29T19:24:25+10:00","response_code":"00","captured":true,"captured_amount":0,"rrn":"071PCNUUTBTJ","cvv_match":"M","metadata":{"authorization_tracking_id":"","original_transaction_reference":""},"addendum_data":{}},"errors":[],"test":true}'
|
|
101
|
+
http_version:
|
|
102
|
+
recorded_at: Mon, 29 Apr 2019 09:24:26 GMT
|
|
103
|
+
recorded_with: VCR 3.0.3
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: '{"amount":10000,"card_holder":"Matthew Savage","card_number":"5123456789012346","card_expiry":"02/2030","cvv":123,"reference":"21ef7b7aa0620228d7da7abdd2bd9fdb","customer_ip":"1.2.3.4","currency":"AUD","test":true}'
|
|
9
|
+
headers:
|
|
10
|
+
Accept-Encoding:
|
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
12
|
+
Accept:
|
|
13
|
+
- application/json
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
Authorization:
|
|
17
|
+
- Basic VEVTVDpURVNU
|
|
18
|
+
Content-Type:
|
|
19
|
+
- application/json
|
|
20
|
+
response:
|
|
21
|
+
status:
|
|
22
|
+
code: 200
|
|
23
|
+
message: OK
|
|
24
|
+
headers:
|
|
25
|
+
Date:
|
|
26
|
+
- Mon, 29 Apr 2019 09:24:26 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Status:
|
|
34
|
+
- 200 OK
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- no-store
|
|
37
|
+
X-Request-Version:
|
|
38
|
+
- 1.16.9-3941@c1d8236
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.522228'
|
|
41
|
+
Pragma:
|
|
42
|
+
- no-cache
|
|
43
|
+
X-Request-Id:
|
|
44
|
+
- 861ddbdebb9bf81e3b6ef511
|
|
45
|
+
X-Backend:
|
|
46
|
+
- sbox-priv-gateway-a
|
|
47
|
+
body:
|
|
48
|
+
encoding: UTF-8
|
|
49
|
+
string: '{"successful":true,"response":{"authorization":"743420","id":"071-P-YVIGEC5V","card_number":"512345XXXXXX2346","card_holder":"Matthew
|
|
50
|
+
Savage","card_expiry":"2030-02-28","card_token":"51tk9t0x4vnvfjhz12jk","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"21ef7b7aa0620228d7da7abdd2bd9fdb","currency":"AUD","transaction_id":"071-P-YVIGEC5V","settlement_date":"2019-04-29","transaction_date":"2019-04-29T19:24:26+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PYVIGEC5V","cvv_match":"M","metadata":{"authorization_tracking_id":"","original_transaction_reference":""},"addendum_data":{}},"errors":[],"test":true}'
|
|
51
|
+
http_version:
|
|
52
|
+
recorded_at: Mon, 29 Apr 2019 09:24:26 GMT
|
|
53
|
+
- request:
|
|
54
|
+
method: post
|
|
55
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/void
|
|
56
|
+
body:
|
|
57
|
+
encoding: UTF-8
|
|
58
|
+
string: '{"id":"071-P-YVIGEC5V","test":true}'
|
|
59
|
+
headers:
|
|
60
|
+
Accept-Encoding:
|
|
61
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
62
|
+
Accept:
|
|
63
|
+
- application/json
|
|
64
|
+
User-Agent:
|
|
65
|
+
- Ruby
|
|
66
|
+
Authorization:
|
|
67
|
+
- Basic VEVTVDpURVNU
|
|
68
|
+
Content-Type:
|
|
69
|
+
- application/json
|
|
70
|
+
response:
|
|
71
|
+
status:
|
|
72
|
+
code: 200
|
|
73
|
+
message: OK
|
|
74
|
+
headers:
|
|
75
|
+
Date:
|
|
76
|
+
- Mon, 29 Apr 2019 09:24:26 GMT
|
|
77
|
+
Content-Type:
|
|
78
|
+
- application/json; charset=utf-8
|
|
79
|
+
Transfer-Encoding:
|
|
80
|
+
- chunked
|
|
81
|
+
Connection:
|
|
82
|
+
- keep-alive
|
|
83
|
+
Status:
|
|
84
|
+
- 200 OK
|
|
85
|
+
Cache-Control:
|
|
86
|
+
- no-store
|
|
87
|
+
X-Request-Version:
|
|
88
|
+
- 1.16.9-3941@c1d8236
|
|
89
|
+
X-Runtime:
|
|
90
|
+
- '0.080494'
|
|
91
|
+
Pragma:
|
|
92
|
+
- no-cache
|
|
93
|
+
X-Request-Id:
|
|
94
|
+
- a341893da212b2829b8a3d3d
|
|
95
|
+
X-Backend:
|
|
96
|
+
- sbox-priv-gateway-a
|
|
97
|
+
body:
|
|
98
|
+
encoding: UTF-8
|
|
99
|
+
string: '{"successful":true,"response":{"authorization":"743420","id":"071-P-YVIGEC5V","card_number":"512345XXXXXX2346","card_holder":"Matthew
|
|
100
|
+
Savage","card_expiry":"2030-02-28","card_token":"51tk9t0x4vnvfjhz12jk","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Voided","reference":"21ef7b7aa0620228d7da7abdd2bd9fdb","currency":"AUD","transaction_id":"071-P-YVIGEC5V","settlement_date":"2019-04-29","transaction_date":"2019-04-29T19:24:26+10:00","response_code":"00","captured":true,"captured_amount":0,"rrn":"071PYVIGEC5V","cvv_match":"M","metadata":{"authorization_tracking_id":"","original_transaction_reference":""},"addendum_data":{}},"errors":[],"test":true}'
|
|
101
|
+
http_version:
|
|
102
|
+
recorded_at: Mon, 29 Apr 2019 09:24:26 GMT
|
|
103
|
+
recorded_with: VCR 3.0.3
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: '{"amount":10000,"card_holder":"Matthew Savage","card_number":"5123456789012346","card_expiry":"02/2030","cvv":123,"reference":"a5139a07a3969624f201e41763b22564","customer_ip":"1.2.3.4","currency":"AUD","test":true}'
|
|
9
|
+
headers:
|
|
10
|
+
Accept-Encoding:
|
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
12
|
+
Accept:
|
|
13
|
+
- application/json
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
Authorization:
|
|
17
|
+
- Basic VEVTVDpURVNU
|
|
18
|
+
Content-Type:
|
|
19
|
+
- application/json
|
|
20
|
+
response:
|
|
21
|
+
status:
|
|
22
|
+
code: 200
|
|
23
|
+
message: OK
|
|
24
|
+
headers:
|
|
25
|
+
Date:
|
|
26
|
+
- Mon, 29 Apr 2019 09:24:27 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Status:
|
|
34
|
+
- 200 OK
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- no-store
|
|
37
|
+
X-Request-Version:
|
|
38
|
+
- 1.16.9-3941@c1d8236
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.584047'
|
|
41
|
+
Pragma:
|
|
42
|
+
- no-cache
|
|
43
|
+
X-Request-Id:
|
|
44
|
+
- a77036b4d1c37178249da278
|
|
45
|
+
X-Backend:
|
|
46
|
+
- sbox-priv-gateway-a
|
|
47
|
+
body:
|
|
48
|
+
encoding: UTF-8
|
|
49
|
+
string: '{"successful":true,"response":{"authorization":"866089","id":"071-P-LB43MX6","card_number":"512345XXXXXX2346","card_holder":"Matthew
|
|
50
|
+
Savage","card_expiry":"2030-02-28","card_token":"onx9rww8siel2pu47ivk","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"a5139a07a3969624f201e41763b22564","currency":"AUD","transaction_id":"071-P-LB43MX6","settlement_date":"2019-04-29","transaction_date":"2019-04-29T19:24:27+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PLB43MX6","cvv_match":"M","metadata":{"authorization_tracking_id":"","original_transaction_reference":""},"addendum_data":{}},"errors":[],"test":true}'
|
|
51
|
+
http_version:
|
|
52
|
+
recorded_at: Mon, 29 Apr 2019 09:24:27 GMT
|
|
53
|
+
- request:
|
|
54
|
+
method: post
|
|
55
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/void
|
|
56
|
+
body:
|
|
57
|
+
encoding: UTF-8
|
|
58
|
+
string: '{"id":"071-P-LB43MX6","test":true}'
|
|
59
|
+
headers:
|
|
60
|
+
Accept-Encoding:
|
|
61
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
62
|
+
Accept:
|
|
63
|
+
- application/json
|
|
64
|
+
User-Agent:
|
|
65
|
+
- Ruby
|
|
66
|
+
Authorization:
|
|
67
|
+
- Basic VEVTVDpURVNU
|
|
68
|
+
Content-Type:
|
|
69
|
+
- application/json
|
|
70
|
+
response:
|
|
71
|
+
status:
|
|
72
|
+
code: 200
|
|
73
|
+
message: OK
|
|
74
|
+
headers:
|
|
75
|
+
Date:
|
|
76
|
+
- Mon, 29 Apr 2019 09:24:27 GMT
|
|
77
|
+
Content-Type:
|
|
78
|
+
- application/json; charset=utf-8
|
|
79
|
+
Transfer-Encoding:
|
|
80
|
+
- chunked
|
|
81
|
+
Connection:
|
|
82
|
+
- keep-alive
|
|
83
|
+
Status:
|
|
84
|
+
- 200 OK
|
|
85
|
+
Cache-Control:
|
|
86
|
+
- no-store
|
|
87
|
+
X-Request-Version:
|
|
88
|
+
- 1.16.9-3941@c1d8236
|
|
89
|
+
X-Runtime:
|
|
90
|
+
- '0.083912'
|
|
91
|
+
Pragma:
|
|
92
|
+
- no-cache
|
|
93
|
+
X-Request-Id:
|
|
94
|
+
- 19f346d0cfb1e3946852ea22
|
|
95
|
+
X-Backend:
|
|
96
|
+
- sbox-priv-gateway-a
|
|
97
|
+
body:
|
|
98
|
+
encoding: UTF-8
|
|
99
|
+
string: '{"successful":true,"response":{"authorization":"866089","id":"071-P-LB43MX6","card_number":"512345XXXXXX2346","card_holder":"Matthew
|
|
100
|
+
Savage","card_expiry":"2030-02-28","card_token":"onx9rww8siel2pu47ivk","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Voided","reference":"a5139a07a3969624f201e41763b22564","currency":"AUD","transaction_id":"071-P-LB43MX6","settlement_date":"2019-04-29","transaction_date":"2019-04-29T19:24:27+10:00","response_code":"00","captured":true,"captured_amount":0,"rrn":"071PLB43MX6","cvv_match":"M","metadata":{"authorization_tracking_id":"","original_transaction_reference":""},"addendum_data":{}},"errors":[],"test":true}'
|
|
101
|
+
http_version:
|
|
102
|
+
recorded_at: Mon, 29 Apr 2019 09:24:27 GMT
|
|
103
|
+
recorded_with: VCR 3.0.3
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: '{"amount":10000,"card_holder":"Matthew Savage","card_number":"5123456789012346","card_expiry":"02/2030","cvv":123,"reference":"1f31cdbea231b9bb5469219397d5db96","customer_ip":"1.2.3.4","currency":"AUD","test":true}'
|
|
9
|
+
headers:
|
|
10
|
+
Accept-Encoding:
|
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
12
|
+
Accept:
|
|
13
|
+
- application/json
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
Authorization:
|
|
17
|
+
- Basic VEVTVDpURVNU
|
|
18
|
+
Content-Type:
|
|
19
|
+
- application/json
|
|
20
|
+
response:
|
|
21
|
+
status:
|
|
22
|
+
code: 200
|
|
23
|
+
message: OK
|
|
24
|
+
headers:
|
|
25
|
+
Date:
|
|
26
|
+
- Mon, 29 Apr 2019 09:20:20 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Status:
|
|
34
|
+
- 200 OK
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- no-store
|
|
37
|
+
X-Request-Version:
|
|
38
|
+
- 1.16.9-3941@c1d8236
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.562177'
|
|
41
|
+
Pragma:
|
|
42
|
+
- no-cache
|
|
43
|
+
X-Request-Id:
|
|
44
|
+
- 740d2234c05de79cd5aeb048
|
|
45
|
+
X-Backend:
|
|
46
|
+
- sbox-priv-gateway-a
|
|
47
|
+
body:
|
|
48
|
+
encoding: UTF-8
|
|
49
|
+
string: '{"successful":true,"response":{"authorization":"574694","id":"071-P-PM5V3GS7","card_number":"512345XXXXXX2346","card_holder":"Matthew
|
|
50
|
+
Savage","card_expiry":"2030-02-28","card_token":"ssu89e7spa249rs5lfd6","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"1f31cdbea231b9bb5469219397d5db96","currency":"AUD","transaction_id":"071-P-PM5V3GS7","settlement_date":"2019-04-29","transaction_date":"2019-04-29T19:20:20+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PPM5V3GS7","cvv_match":"M","metadata":{"authorization_tracking_id":"","original_transaction_reference":""},"addendum_data":{}},"errors":[],"test":true}'
|
|
51
|
+
http_version:
|
|
52
|
+
recorded_at: Mon, 29 Apr 2019 09:20:20 GMT
|
|
53
|
+
- request:
|
|
54
|
+
method: post
|
|
55
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/refunds
|
|
56
|
+
body:
|
|
57
|
+
encoding: UTF-8
|
|
58
|
+
string: '{"transaction_id":"071-P-PM5V3GS7","amount":10000,"reference":"1f31cdbea231b9bb5469219397d5db96","test":true}'
|
|
59
|
+
headers:
|
|
60
|
+
Accept-Encoding:
|
|
61
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
62
|
+
Accept:
|
|
63
|
+
- application/json
|
|
64
|
+
User-Agent:
|
|
65
|
+
- Ruby
|
|
66
|
+
Authorization:
|
|
67
|
+
- Basic VEVTVDpURVNU
|
|
68
|
+
Content-Type:
|
|
69
|
+
- application/json
|
|
70
|
+
response:
|
|
71
|
+
status:
|
|
72
|
+
code: 200
|
|
73
|
+
message: OK
|
|
74
|
+
headers:
|
|
75
|
+
Date:
|
|
76
|
+
- Mon, 29 Apr 2019 09:20:21 GMT
|
|
77
|
+
Content-Type:
|
|
78
|
+
- application/json; charset=utf-8
|
|
79
|
+
Transfer-Encoding:
|
|
80
|
+
- chunked
|
|
81
|
+
Connection:
|
|
82
|
+
- keep-alive
|
|
83
|
+
Status:
|
|
84
|
+
- 200 OK
|
|
85
|
+
Cache-Control:
|
|
86
|
+
- no-store
|
|
87
|
+
X-Request-Version:
|
|
88
|
+
- 1.16.9-3941@c1d8236
|
|
89
|
+
X-Runtime:
|
|
90
|
+
- '0.159778'
|
|
91
|
+
Pragma:
|
|
92
|
+
- no-cache
|
|
93
|
+
X-Request-Id:
|
|
94
|
+
- 4f6ac198cc5a4c581edee8a8
|
|
95
|
+
X-Backend:
|
|
96
|
+
- sbox-priv-gateway-a
|
|
97
|
+
body:
|
|
98
|
+
encoding: UTF-8
|
|
99
|
+
string: '{"successful":true,"response":{"authorization":"1556529621","id":"071-R-F4V0DCE","amount":10000,"refunded":"Approved","message":"Approved","card_holder":"Matthew
|
|
100
|
+
Savage","card_number":"512345XXXXXX2346","card_expiry":"2030-02-28","card_type":"MasterCard","transaction_id":"071-R-F4V0DCE","reference":"1f31cdbea231b9bb5469219397d5db96","currency":"AUD","successful":true,"transaction_date":"2019-04-29T19:20:21+10:00","response_code":"00","settlement_date":"2019-04-30","metadata":{},"standalone":false,"rrn":"071RF4V0DCE"},"errors":[],"test":true}'
|
|
101
|
+
http_version:
|
|
102
|
+
recorded_at: Mon, 29 Apr 2019 09:20:21 GMT
|
|
103
|
+
recorded_with: VCR 3.0.3
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: post
|
|
5
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases
|
|
6
|
+
body:
|
|
7
|
+
encoding: UTF-8
|
|
8
|
+
string: '{"amount":10000,"card_holder":"Matthew Savage","card_number":"5123456789012346","card_expiry":"02/2030","cvv":123,"reference":"cf7c1df45da6ef4d2d13554f3e1cf469","customer_ip":"1.2.3.4","currency":"AUD","test":true}'
|
|
9
|
+
headers:
|
|
10
|
+
Accept-Encoding:
|
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
12
|
+
Accept:
|
|
13
|
+
- application/json
|
|
14
|
+
User-Agent:
|
|
15
|
+
- Ruby
|
|
16
|
+
Authorization:
|
|
17
|
+
- Basic VEVTVDpURVNU
|
|
18
|
+
Content-Type:
|
|
19
|
+
- application/json
|
|
20
|
+
response:
|
|
21
|
+
status:
|
|
22
|
+
code: 200
|
|
23
|
+
message: OK
|
|
24
|
+
headers:
|
|
25
|
+
Date:
|
|
26
|
+
- Mon, 29 Apr 2019 09:20:28 GMT
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=utf-8
|
|
29
|
+
Transfer-Encoding:
|
|
30
|
+
- chunked
|
|
31
|
+
Connection:
|
|
32
|
+
- keep-alive
|
|
33
|
+
Status:
|
|
34
|
+
- 200 OK
|
|
35
|
+
Cache-Control:
|
|
36
|
+
- no-store
|
|
37
|
+
X-Request-Version:
|
|
38
|
+
- 1.16.9-3941@c1d8236
|
|
39
|
+
X-Runtime:
|
|
40
|
+
- '0.545711'
|
|
41
|
+
Pragma:
|
|
42
|
+
- no-cache
|
|
43
|
+
X-Request-Id:
|
|
44
|
+
- 06025caf06e00447add0b1e0
|
|
45
|
+
X-Backend:
|
|
46
|
+
- sbox-priv-gateway-a
|
|
47
|
+
body:
|
|
48
|
+
encoding: UTF-8
|
|
49
|
+
string: '{"successful":true,"response":{"authorization":"533530","id":"071-P-RAE2DDZW","card_number":"512345XXXXXX2346","card_holder":"Matthew
|
|
50
|
+
Savage","card_expiry":"2030-02-28","card_token":"6i0ifhsrne5mx2rv1lzj","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"cf7c1df45da6ef4d2d13554f3e1cf469","currency":"AUD","transaction_id":"071-P-RAE2DDZW","settlement_date":"2019-04-29","transaction_date":"2019-04-29T19:20:28+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PRAE2DDZW","cvv_match":"M","metadata":{"authorization_tracking_id":"","original_transaction_reference":""},"addendum_data":{}},"errors":[],"test":true}'
|
|
51
|
+
http_version:
|
|
52
|
+
recorded_at: Mon, 29 Apr 2019 09:20:28 GMT
|
|
53
|
+
- request:
|
|
54
|
+
method: post
|
|
55
|
+
uri: https://gateway.sandbox.fatzebra.com.au/v1.0/refunds
|
|
56
|
+
body:
|
|
57
|
+
encoding: UTF-8
|
|
58
|
+
string: '{"transaction_id":"071-P-RAE2DDZW","amount":10000,"reference":"cf7c1df45da6ef4d2d13554f3e1cf469","test":true}'
|
|
59
|
+
headers:
|
|
60
|
+
Accept-Encoding:
|
|
61
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
62
|
+
Accept:
|
|
63
|
+
- application/json
|
|
64
|
+
User-Agent:
|
|
65
|
+
- Ruby
|
|
66
|
+
Authorization:
|
|
67
|
+
- Basic VEVTVDpURVNU
|
|
68
|
+
Content-Type:
|
|
69
|
+
- application/json
|
|
70
|
+
response:
|
|
71
|
+
status:
|
|
72
|
+
code: 200
|
|
73
|
+
message: OK
|
|
74
|
+
headers:
|
|
75
|
+
Date:
|
|
76
|
+
- Mon, 29 Apr 2019 09:20:29 GMT
|
|
77
|
+
Content-Type:
|
|
78
|
+
- application/json; charset=utf-8
|
|
79
|
+
Transfer-Encoding:
|
|
80
|
+
- chunked
|
|
81
|
+
Connection:
|
|
82
|
+
- keep-alive
|
|
83
|
+
Status:
|
|
84
|
+
- 200 OK
|
|
85
|
+
Cache-Control:
|
|
86
|
+
- no-store
|
|
87
|
+
X-Request-Version:
|
|
88
|
+
- 1.16.9-3941@c1d8236
|
|
89
|
+
X-Runtime:
|
|
90
|
+
- '0.131323'
|
|
91
|
+
Pragma:
|
|
92
|
+
- no-cache
|
|
93
|
+
X-Request-Id:
|
|
94
|
+
- 9920d5548619c0e30704a97d
|
|
95
|
+
X-Backend:
|
|
96
|
+
- sbox-priv-gateway-a
|
|
97
|
+
body:
|
|
98
|
+
encoding: UTF-8
|
|
99
|
+
string: '{"successful":true,"response":{"authorization":"1556529629","id":"071-R-8X6FX1DM","amount":10000,"refunded":"Approved","message":"Approved","card_holder":"Matthew
|
|
100
|
+
Savage","card_number":"512345XXXXXX2346","card_expiry":"2030-02-28","card_type":"MasterCard","transaction_id":"071-R-8X6FX1DM","reference":"cf7c1df45da6ef4d2d13554f3e1cf469","currency":"AUD","successful":true,"transaction_date":"2019-04-29T19:20:28+10:00","response_code":"00","settlement_date":"2019-04-30","metadata":{},"standalone":false,"rrn":"071R8X6FX1DM"},"errors":[],"test":true}'
|
|
101
|
+
http_version:
|
|
102
|
+
recorded_at: Mon, 29 Apr 2019 09:20:29 GMT
|
|
103
|
+
recorded_with: VCR 3.0.3
|