fat_zebra 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +3 -1
  3. data/fat_zebra.gemspec +4 -4
  4. data/lib/fat_zebra/api_helper.rb +95 -0
  5. data/lib/fat_zebra/api_operation/find.rb +18 -11
  6. data/lib/fat_zebra/api_operation/save.rb +2 -2
  7. data/lib/fat_zebra/api_operation/search.rb +19 -12
  8. data/lib/fat_zebra/api_operation/void.rb +1 -1
  9. data/lib/fat_zebra/api_resource.rb +7 -73
  10. data/lib/fat_zebra/bank_account.rb +1 -2
  11. data/lib/fat_zebra/batch.rb +5 -3
  12. data/lib/fat_zebra/card.rb +5 -4
  13. data/lib/fat_zebra/config.rb +31 -18
  14. data/lib/fat_zebra/customer.rb +2 -3
  15. data/lib/fat_zebra/direct_credit.rb +2 -3
  16. data/lib/fat_zebra/direct_debit.rb +2 -3
  17. data/lib/fat_zebra/errors.rb +22 -4
  18. data/lib/fat_zebra/fat_zebra_object.rb +4 -115
  19. data/lib/fat_zebra/object_helper.rb +118 -0
  20. data/lib/fat_zebra/payment_plan.rb +1 -2
  21. data/lib/fat_zebra/purchase.rb +3 -6
  22. data/lib/fat_zebra/refund.rb +2 -4
  23. data/lib/fat_zebra/request.rb +12 -8
  24. data/lib/fat_zebra/util.rb +17 -1
  25. data/lib/fat_zebra/version.rb +1 -1
  26. data/lib/fat_zebra/web_hook.rb +1 -2
  27. data/lib/fat_zebra.rb +2 -0
  28. data/spec/cassettes/FatZebra_BankAccount/_create/1_1_3.yml +55 -0
  29. data/spec/cassettes/FatZebra_Batch/_create/with_file/1_1_1_3.yml +65 -0
  30. data/spec/cassettes/FatZebra_Batch/_create/with_path/1_1_2_3.yml +65 -0
  31. data/spec/cassettes/FatZebra_Batch/_find/1_2_3.yml +118 -0
  32. data/spec/cassettes/FatZebra_Card/_create/1_1_7.yml +55 -0
  33. data/spec/cassettes/FatZebra_Card/_update/1_2_4.yml +105 -0
  34. data/spec/cassettes/FatZebra_Card/_update/validations/1_2_5_1.yml +55 -0
  35. data/spec/cassettes/FatZebra_Customer/_create/1_1_7.yml +57 -0
  36. data/spec/cassettes/FatZebra_Customer/_delete/1_5_2.yml +107 -0
  37. data/spec/cassettes/FatZebra_Customer/_find/1_3_3.yml +111 -0
  38. data/spec/cassettes/FatZebra_Customer/_update/1_4_3.yml +108 -0
  39. data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_5.yml +54 -0
  40. data/spec/cassettes/FatZebra_DirectCredit/_delete/1_4_2.yml +103 -0
  41. data/spec/cassettes/FatZebra_DirectCredit/_find/1_2_3.yml +107 -0
  42. data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_5.yml +54 -0
  43. data/spec/cassettes/FatZebra_DirectDebit/_delete/1_4_2.yml +103 -0
  44. data/spec/cassettes/FatZebra_DirectDebit/_find/1_2_3.yml +107 -0
  45. data/spec/cassettes/FatZebra_PaymentPlan/_create/1_1_4.yml +114 -0
  46. data/spec/cassettes/FatZebra_PaymentPlan/_delete/1_5_2.yml +164 -0
  47. data/spec/cassettes/FatZebra_PaymentPlan/_find/1_2_4.yml +173 -0
  48. data/spec/cassettes/FatZebra_PaymentPlan/_update/1_3_4.yml +164 -0
  49. data/spec/cassettes/FatZebra_Purchase/_capture/1_5_3.yml +107 -0
  50. data/spec/cassettes/FatZebra_Purchase/_capture/1_6_3.yml +107 -0
  51. data/spec/cassettes/FatZebra_Purchase/_create/1_1_13.yml +55 -0
  52. data/spec/cassettes/FatZebra_Purchase/_create/bad_request/1_1_14_1.yml +57 -0
  53. data/spec/cassettes/FatZebra_Purchase/_create/bad_request/1_1_14_2.yml +57 -0
  54. data/spec/cassettes/FatZebra_Purchase/_find/1_2_4.yml +109 -0
  55. data/spec/cassettes/FatZebra_Purchase/_find/1_3_1.yml +109 -0
  56. data/spec/cassettes/FatZebra_Purchase/_find/1_3_2.yml +109 -0
  57. data/spec/cassettes/FatZebra_Purchase/_find/1_3_3.yml +109 -0
  58. data/spec/cassettes/FatZebra_Purchase/_find/1_3_4.yml +109 -0
  59. data/spec/cassettes/FatZebra_Purchase/_refund/1_4_3.yml +107 -0
  60. data/spec/cassettes/FatZebra_Purchase/_refund/1_5_3.yml +107 -0
  61. data/spec/cassettes/FatZebra_Purchase/_search/1_3_4.yml +170 -0
  62. data/spec/cassettes/FatZebra_Purchase/_search/1_4_1.yml +170 -0
  63. data/spec/cassettes/FatZebra_Purchase/_search/1_4_2.yml +170 -0
  64. data/spec/cassettes/FatZebra_Purchase/_search/1_4_3.yml +170 -0
  65. data/spec/cassettes/FatZebra_Purchase/_search/1_4_4.yml +170 -0
  66. data/spec/cassettes/FatZebra_Purchase/_settlement/1_8_4.yml +842 -0
  67. data/spec/cassettes/FatZebra_Purchase/_settlement/1_9_1.yml +828 -0
  68. data/spec/cassettes/FatZebra_Purchase/_settlement/1_9_2.yml +830 -0
  69. data/spec/cassettes/FatZebra_Purchase/_settlement/1_9_3.yml +832 -0
  70. data/spec/cassettes/FatZebra_Purchase/_settlement/1_9_4.yml +834 -0
  71. data/spec/cassettes/FatZebra_Purchase/_void/1_6_4.yml +107 -0
  72. data/spec/cassettes/FatZebra_Purchase/_void/1_7_4.yml +107 -0
  73. data/spec/cassettes/FatZebra_Purchase/_void/1_8_1.yml +107 -0
  74. data/spec/cassettes/FatZebra_Purchase/_void/1_8_2.yml +107 -0
  75. data/spec/cassettes/FatZebra_Purchase/_void/1_8_3.yml +107 -0
  76. data/spec/cassettes/FatZebra_Purchase/_void/1_8_4.yml +107 -0
  77. data/spec/cassettes/FatZebra_Refund/_create/1_1_10.yml +107 -0
  78. data/spec/cassettes/FatZebra_Refund/_find/1_2_3.yml +161 -0
  79. data/spec/cassettes/FatZebra_Refund/_void/1_4_4.yml +159 -0
  80. data/spec/cassettes/FatZebra_WebHook/_create/1_1_4.yml +55 -0
  81. data/spec/cassettes/FatZebra_WebHook/_delete/1_4_2.yml +105 -0
  82. data/spec/cassettes/FatZebra_WebHook/_update/1_3_3.yml +106 -0
  83. data/spec/lib/fat_zebra/bank_account_spec.rb +2 -2
  84. data/spec/lib/fat_zebra/batch_spec.rb +4 -4
  85. data/spec/lib/fat_zebra/card_spec.rb +2 -2
  86. data/spec/lib/fat_zebra/config_spec.rb +22 -4
  87. data/spec/lib/fat_zebra/customer_spec.rb +5 -5
  88. data/spec/lib/fat_zebra/direct_credit_spec.rb +4 -4
  89. data/spec/lib/fat_zebra/direct_debit_spec.rb +4 -4
  90. data/spec/lib/fat_zebra/fat_zebra_object_spec.rb +3 -2
  91. data/spec/lib/fat_zebra/payment_plan_spec.rb +4 -4
  92. data/spec/lib/fat_zebra/purchase_spec.rb +16 -3
  93. data/spec/lib/fat_zebra/refund_spec.rb +5 -2
  94. data/spec/lib/fat_zebra/util_spec.rb +5 -0
  95. data/spec/lib/fat_zebra/web_hook_spec.rb +4 -4
  96. data/spec/spec_helper.rb +1 -1
  97. metadata +76 -19
@@ -0,0 +1,109 @@
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":"eb5e102aa89d2e6b0f8a7d9cf5494efb","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
+ - Wed, 05 Jul 2017 05:43:48 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.19.41
39
+ Pragma:
40
+ - no-cache
41
+ X-Request-Id:
42
+ - ab9c157c34516651be2ca6c71403ded1
43
+ X-Runtime:
44
+ - '0.348905'
45
+ X-Rack-Cache:
46
+ - invalidate, pass
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":true,"response":{"authorization":"600897","id":"071-P-IKUN727G","card_number":"512345XXXXXX2346","card_holder":"Matthew
52
+ Savage","card_expiry":"2030-02-28","card_token":"fke86c5u","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"eb5e102aa89d2e6b0f8a7d9cf5494efb","currency":"AUD","transaction_id":"071-P-IKUN727G","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:47+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PIKUN727G","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:43:48 GMT
55
+ - request:
56
+ method: get
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/eb5e102aa89d2e6b0f8a7d9cf5494efb?test=true
58
+ body:
59
+ encoding: US-ASCII
60
+ string: ''
61
+ headers:
62
+ Accept-Encoding:
63
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
64
+ Accept:
65
+ - application/json
66
+ User-Agent:
67
+ - Ruby
68
+ Host:
69
+ - gateway.sandbox.fatzebra.com.au
70
+ Authorization:
71
+ - Basic VEVTVDpURVNU
72
+ Content-Type:
73
+ - application/json
74
+ response:
75
+ status:
76
+ code: 200
77
+ message: OK
78
+ headers:
79
+ Date:
80
+ - Wed, 05 Jul 2017 05:43:48 GMT
81
+ Content-Type:
82
+ - application/json; charset=utf-8
83
+ Transfer-Encoding:
84
+ - chunked
85
+ Connection:
86
+ - keep-alive
87
+ Status:
88
+ - 200 OK
89
+ X-Rack-Cache:
90
+ - miss
91
+ Cache-Control:
92
+ - no-store, private
93
+ X-Request-Version:
94
+ - 1.19.41
95
+ X-Runtime:
96
+ - '0.026561'
97
+ Pragma:
98
+ - no-cache
99
+ X-Request-Id:
100
+ - edef6b922ef1435cbfe9f8641e6df1b8
101
+ X-Backend:
102
+ - sbox-priv-gateway-a
103
+ body:
104
+ encoding: UTF-8
105
+ string: '{"successful":true,"response":{"authorization":"600897","id":"071-P-IKUN727G","card_number":"512345XXXXXX2346","card_holder":"Matthew
106
+ Savage","card_expiry":"2030-02-28","card_token":"fke86c5u","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"eb5e102aa89d2e6b0f8a7d9cf5494efb","currency":"AUD","transaction_id":"071-P-IKUN727G","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:47+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PIKUN727G","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
107
+ http_version:
108
+ recorded_at: Wed, 05 Jul 2017 05:43:48 GMT
109
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,109 @@
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":"62690132d5c53957f005b12e42663adf","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
+ - Wed, 05 Jul 2017 05:43:48 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.19.41
39
+ Pragma:
40
+ - no-cache
41
+ X-Request-Id:
42
+ - 332fe95f080f4b7a204482a89b932998
43
+ X-Runtime:
44
+ - '0.327480'
45
+ X-Rack-Cache:
46
+ - invalidate, pass
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":true,"response":{"authorization":"572665","id":"071-P-WH42JBGW","card_number":"512345XXXXXX2346","card_holder":"Matthew
52
+ Savage","card_expiry":"2030-02-28","card_token":"fke86c5u","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"62690132d5c53957f005b12e42663adf","currency":"AUD","transaction_id":"071-P-WH42JBGW","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:48+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PWH42JBGW","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:43:48 GMT
55
+ - request:
56
+ method: get
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/62690132d5c53957f005b12e42663adf?test=true
58
+ body:
59
+ encoding: US-ASCII
60
+ string: ''
61
+ headers:
62
+ Accept-Encoding:
63
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
64
+ Accept:
65
+ - application/json
66
+ User-Agent:
67
+ - Ruby
68
+ Host:
69
+ - gateway.sandbox.fatzebra.com.au
70
+ Authorization:
71
+ - Basic VEVTVDpURVNU
72
+ Content-Type:
73
+ - application/json
74
+ response:
75
+ status:
76
+ code: 200
77
+ message: OK
78
+ headers:
79
+ Date:
80
+ - Wed, 05 Jul 2017 05:43:48 GMT
81
+ Content-Type:
82
+ - application/json; charset=utf-8
83
+ Transfer-Encoding:
84
+ - chunked
85
+ Connection:
86
+ - keep-alive
87
+ Status:
88
+ - 200 OK
89
+ X-Rack-Cache:
90
+ - miss
91
+ Cache-Control:
92
+ - no-store, private
93
+ X-Request-Version:
94
+ - 1.19.41
95
+ X-Runtime:
96
+ - '0.024753'
97
+ Pragma:
98
+ - no-cache
99
+ X-Request-Id:
100
+ - 08f61c5be0ebe492ebaa3bd015cd9d60
101
+ X-Backend:
102
+ - sbox-priv-gateway-a
103
+ body:
104
+ encoding: UTF-8
105
+ string: '{"successful":true,"response":{"authorization":"572665","id":"071-P-WH42JBGW","card_number":"512345XXXXXX2346","card_holder":"Matthew
106
+ Savage","card_expiry":"2030-02-28","card_token":"fke86c5u","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"62690132d5c53957f005b12e42663adf","currency":"AUD","transaction_id":"071-P-WH42JBGW","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:48+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PWH42JBGW","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
107
+ http_version:
108
+ recorded_at: Wed, 05 Jul 2017 05:43:48 GMT
109
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,109 @@
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":"e3e7992275f89000f4a79c93c81521e5","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
+ - Wed, 05 Jul 2017 05:43:49 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.19.41
39
+ Pragma:
40
+ - no-cache
41
+ X-Request-Id:
42
+ - 964579ae1335021672625e62fc47c619
43
+ X-Runtime:
44
+ - '0.306395'
45
+ X-Rack-Cache:
46
+ - invalidate, pass
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":true,"response":{"authorization":"906232","id":"071-P-YJ6QOD2J","card_number":"512345XXXXXX2346","card_holder":"Matthew
52
+ Savage","card_expiry":"2030-02-28","card_token":"fke86c5u","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"e3e7992275f89000f4a79c93c81521e5","currency":"AUD","transaction_id":"071-P-YJ6QOD2J","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:49+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PYJ6QOD2J","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:43:49 GMT
55
+ - request:
56
+ method: get
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/e3e7992275f89000f4a79c93c81521e5?test=true
58
+ body:
59
+ encoding: US-ASCII
60
+ string: ''
61
+ headers:
62
+ Accept-Encoding:
63
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
64
+ Accept:
65
+ - application/json
66
+ User-Agent:
67
+ - Ruby
68
+ Host:
69
+ - gateway.sandbox.fatzebra.com.au
70
+ Authorization:
71
+ - Basic VEVTVDpURVNU
72
+ Content-Type:
73
+ - application/json
74
+ response:
75
+ status:
76
+ code: 200
77
+ message: OK
78
+ headers:
79
+ Date:
80
+ - Wed, 05 Jul 2017 05:43:49 GMT
81
+ Content-Type:
82
+ - application/json; charset=utf-8
83
+ Transfer-Encoding:
84
+ - chunked
85
+ Connection:
86
+ - keep-alive
87
+ Status:
88
+ - 200 OK
89
+ X-Rack-Cache:
90
+ - miss
91
+ Cache-Control:
92
+ - no-store, private
93
+ X-Request-Version:
94
+ - 1.19.41
95
+ X-Runtime:
96
+ - '0.036500'
97
+ Pragma:
98
+ - no-cache
99
+ X-Request-Id:
100
+ - b6656f0b559e4ff9af096d76c28c3e04
101
+ X-Backend:
102
+ - sbox-priv-gateway-a
103
+ body:
104
+ encoding: UTF-8
105
+ string: '{"successful":true,"response":{"authorization":"906232","id":"071-P-YJ6QOD2J","card_number":"512345XXXXXX2346","card_holder":"Matthew
106
+ Savage","card_expiry":"2030-02-28","card_token":"fke86c5u","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"e3e7992275f89000f4a79c93c81521e5","currency":"AUD","transaction_id":"071-P-YJ6QOD2J","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:49+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PYJ6QOD2J","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
107
+ http_version:
108
+ recorded_at: Wed, 05 Jul 2017 05:43:49 GMT
109
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,107 @@
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":"46356dedeb880b977f189f0d39b6da9a","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
+ - Wed, 05 Jul 2017 05:45:12 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.19.41
39
+ Pragma:
40
+ - no-cache
41
+ X-Request-Id:
42
+ - c9ed456f679b65a97c2d00a8b0b037db
43
+ X-Runtime:
44
+ - '0.367665'
45
+ X-Rack-Cache:
46
+ - invalidate, pass
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":true,"response":{"authorization":"524708","id":"071-P-1TAA4SK1","card_number":"512345XXXXXX2346","card_holder":"Matthew
52
+ Savage","card_expiry":"2030-02-28","card_token":"fke86c5u","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"46356dedeb880b977f189f0d39b6da9a","currency":"AUD","transaction_id":"071-P-1TAA4SK1","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:45:12+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071P1TAA4SK1","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:45:12 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/refunds
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"transaction_id":"071-P-1TAA4SK1","amount":10000,"reference":"46356dedeb880b977f189f0d39b6da9a","test":true}'
61
+ headers:
62
+ Accept-Encoding:
63
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
64
+ Accept:
65
+ - application/json
66
+ User-Agent:
67
+ - Ruby
68
+ Authorization:
69
+ - Basic VEVTVDpURVNU
70
+ Content-Type:
71
+ - application/json
72
+ response:
73
+ status:
74
+ code: 200
75
+ message: OK
76
+ headers:
77
+ Date:
78
+ - Wed, 05 Jul 2017 05:45:13 GMT
79
+ Content-Type:
80
+ - application/json; charset=utf-8
81
+ Transfer-Encoding:
82
+ - chunked
83
+ Connection:
84
+ - keep-alive
85
+ Status:
86
+ - 200 OK
87
+ X-Rack-Cache:
88
+ - invalidate, pass
89
+ Cache-Control:
90
+ - no-store
91
+ X-Request-Version:
92
+ - 1.19.41
93
+ X-Runtime:
94
+ - '0.181378'
95
+ Pragma:
96
+ - no-cache
97
+ X-Request-Id:
98
+ - dcbdd6cc0f1de6e40b82d039861c0954
99
+ X-Backend:
100
+ - sbox-priv-gateway-a
101
+ body:
102
+ encoding: UTF-8
103
+ string: '{"successful":true,"response":{"authorization":1499233512,"id":"071-R-JB82845G","amount":10000,"refunded":"Approved","message":"Approved","card_holder":"Matthew
104
+ Savage","card_number":"512345XXXXXX2346","card_expiry":"2030-02-28","card_type":"MasterCard","transaction_id":"071-R-JB82845G","reference":"46356dedeb880b977f189f0d39b6da9a","currency":"AUD","successful":true,"transaction_date":"2017-07-05T15:45:12+10:00","response_code":"00","settlement_date":"2017-07-06","metadata":{},"standalone":false,"rrn":"071RJB82845G"},"errors":[],"test":true}'
105
+ http_version:
106
+ recorded_at: Wed, 05 Jul 2017 05:45:13 GMT
107
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,107 @@
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":"fac4baafc0c12c4f5012ccb3e27ed3f1","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
+ - Wed, 05 Jul 2017 05:43:53 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
+ X-Rack-Cache:
36
+ - invalidate, pass
37
+ Cache-Control:
38
+ - no-store
39
+ X-Request-Version:
40
+ - 1.19.41
41
+ X-Runtime:
42
+ - '0.350637'
43
+ Pragma:
44
+ - no-cache
45
+ X-Request-Id:
46
+ - fed6555fd7e8c90decf95f6ffaa3b60a
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":true,"response":{"authorization":"579571","id":"071-P-D6HR85W1","card_number":"512345XXXXXX2346","card_holder":"Matthew
52
+ Savage","card_expiry":"2030-02-28","card_token":"fke86c5u","card_type":"MasterCard","card_category":"Credit","card_subcategory":"Standard","amount":10000,"decimal_amount":100.0,"successful":true,"message":"Approved","reference":"fac4baafc0c12c4f5012ccb3e27ed3f1","currency":"AUD","transaction_id":"071-P-D6HR85W1","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:53+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PD6HR85W1","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:43:53 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/refunds
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"transaction_id":"071-P-D6HR85W1","amount":10000,"reference":"fac4baafc0c12c4f5012ccb3e27ed3f1","test":true}'
61
+ headers:
62
+ Accept-Encoding:
63
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
64
+ Accept:
65
+ - application/json
66
+ User-Agent:
67
+ - Ruby
68
+ Authorization:
69
+ - Basic VEVTVDpURVNU
70
+ Content-Type:
71
+ - application/json
72
+ response:
73
+ status:
74
+ code: 200
75
+ message: OK
76
+ headers:
77
+ Date:
78
+ - Wed, 05 Jul 2017 05:43:53 GMT
79
+ Content-Type:
80
+ - application/json; charset=utf-8
81
+ Transfer-Encoding:
82
+ - chunked
83
+ Connection:
84
+ - keep-alive
85
+ Status:
86
+ - 200 OK
87
+ Cache-Control:
88
+ - no-store
89
+ X-Request-Version:
90
+ - 1.19.41
91
+ Pragma:
92
+ - no-cache
93
+ X-Request-Id:
94
+ - 6178e9074c7c036354ef8c389ffb8301
95
+ X-Runtime:
96
+ - '0.204872'
97
+ X-Rack-Cache:
98
+ - invalidate, pass
99
+ X-Backend:
100
+ - sbox-priv-gateway-a
101
+ body:
102
+ encoding: UTF-8
103
+ string: '{"successful":true,"response":{"authorization":1499233433,"id":"071-R-S79ADKVG","amount":10000,"refunded":"Approved","message":"Approved","card_holder":"Matthew
104
+ Savage","card_number":"512345XXXXXX2346","card_expiry":"2030-02-28","card_type":"MasterCard","transaction_id":"071-R-S79ADKVG","reference":"fac4baafc0c12c4f5012ccb3e27ed3f1","currency":"AUD","successful":true,"transaction_date":"2017-07-05T15:43:53+10:00","response_code":"00","settlement_date":"2017-07-06","metadata":{},"standalone":false,"rrn":"071RS79ADKVG"},"errors":[],"test":true}'
105
+ http_version:
106
+ recorded_at: Wed, 05 Jul 2017 05:43:53 GMT
107
+ recorded_with: VCR 3.0.3