fat_zebra 3.0.0 → 3.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.
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,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":"86dd5b3331f67d20385a500451175f44","customer_ip":"1.2.3.4","capture":false,"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:13 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
+ - d86d2f0ceef6d775b458e1bf13862e0d
43
+ X-Runtime:
44
+ - '0.313234'
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":"672440","id":"071-P-EZLDZ9GV","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":"86dd5b3331f67d20385a500451175f44","currency":"AUD","transaction_id":"071-P-EZLDZ9GV","settlement_date":null,"transaction_date":"2017-07-05T15:45:13+10:00","response_code":"00","captured":false,"captured_amount":0,"rrn":"071PEZLDZ9GV","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:45:13 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/071-P-EZLDZ9GV/capture
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"amount":10000,"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.066126'
95
+ Pragma:
96
+ - no-cache
97
+ X-Request-Id:
98
+ - 780bebb35cdc8256fe2b28881fff3d37
99
+ X-Backend:
100
+ - sbox-priv-gateway-a
101
+ body:
102
+ encoding: UTF-8
103
+ string: '{"successful":true,"response":{"authorization":"672440","id":"071-P-EZLDZ9GV","card_number":"512345XXXXXX2346","card_holder":"Matthew
104
+ 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":"86dd5b3331f67d20385a500451175f44","currency":"AUD","transaction_id":"071-P-EZLDZ9GV","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:45:13+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"88ff10036f3c","cvv_match":"M","metadata":{},"addendum_data":{}},"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":"5109c7d6e71fb485cdbbb5ea92f879ef","customer_ip":"1.2.3.4","capture":false,"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:54 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.320425'
43
+ Pragma:
44
+ - no-cache
45
+ X-Request-Id:
46
+ - 9b897a6964a02e1f3d4f4a913bca8290
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":true,"response":{"authorization":"141314","id":"071-P-CKEYD6CX","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":"5109c7d6e71fb485cdbbb5ea92f879ef","currency":"AUD","transaction_id":"071-P-CKEYD6CX","settlement_date":null,"transaction_date":"2017-07-05T15:43:54+10:00","response_code":"00","captured":false,"captured_amount":0,"rrn":"071PCKEYD6CX","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:43:54 GMT
55
+ - request:
56
+ method: post
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/071-P-CKEYD6CX/capture
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"amount":10000,"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:54 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
+ - f3a1ba8147294335153e5eddd9fba3a7
95
+ X-Runtime:
96
+ - '0.062682'
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":"141314","id":"071-P-CKEYD6CX","card_number":"512345XXXXXX2346","card_holder":"Matthew
104
+ 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":"5109c7d6e71fb485cdbbb5ea92f879ef","currency":"AUD","transaction_id":"071-P-CKEYD6CX","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:54+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"abc31ffa9e31","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
105
+ http_version:
106
+ recorded_at: Wed, 05 Jul 2017 05:43:54 GMT
107
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,55 @@
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":"7bd0b4bbc1a93222070cbf022465fc17","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:43 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
+ - e8c42b481e55081a59ab753065e4eb56
43
+ X-Runtime:
44
+ - '0.330848'
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":"795310","id":"071-P-J2QRN220","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":"7bd0b4bbc1a93222070cbf022465fc17","currency":"AUD","transaction_id":"071-P-J2QRN220","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:43+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PJ2QRN220","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:43:43 GMT
55
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,57 @@
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":"da5d16122b831b468090a7adaf68758e","customer_ip":"1.2.3.4","currency":"XXX","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:10 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
+ - 8cfaaaa019bb509c9f3b5531a78a0a90
43
+ X-Runtime:
44
+ - '0.261157'
45
+ X-Rack-Cache:
46
+ - invalidate, pass
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":false,"response":{"authorization":null,"id":"071-P-QE2I2PCW","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":false,"message":null,"reference":"da5d16122b831b468090a7adaf68758e","currency":"XXX","transaction_id":"071-P-QE2I2PCW","settlement_date":null,"transaction_date":null,"response_code":"99","captured":false,"captured_amount":null,"rrn":null,"cvv_match":"U","metadata":{},"addendum_data":null},"errors":["Currency
53
+ XXX is not valid for this merchant. Permitted currencies: USD, AUD, NZD, GBP,
54
+ EUR, JPY, CHF, CAD, HKD, and SGD"],"test":true}'
55
+ http_version:
56
+ recorded_at: Wed, 05 Jul 2017 05:45:10 GMT
57
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,57 @@
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":"9b14bf3aa2a0b7a92a738cb6e5e40858","customer_ip":"1.2.3.4","currency":"XXX","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:10 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.240029'
43
+ Pragma:
44
+ - no-cache
45
+ X-Request-Id:
46
+ - a7db48f8806286b234eaef0a90e0d0cd
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":false,"response":{"authorization":null,"id":"071-P-K9L4RMKG","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":false,"message":null,"reference":"9b14bf3aa2a0b7a92a738cb6e5e40858","currency":"XXX","transaction_id":"071-P-K9L4RMKG","settlement_date":null,"transaction_date":null,"response_code":"99","captured":false,"captured_amount":null,"rrn":null,"cvv_match":"U","metadata":{},"addendum_data":null},"errors":["Currency
53
+ XXX is not valid for this merchant. Permitted currencies: USD, AUD, NZD, GBP,
54
+ EUR, JPY, CHF, CAD, HKD, and SGD"],"test":true}'
55
+ http_version:
56
+ recorded_at: Wed, 05 Jul 2017 05:45:10 GMT
57
+ 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":"6206092e1947d5828adeebb7f14e8c81","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:11 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
+ - f49257e2e8c87ee3caa5b45b2b6591ad
43
+ X-Runtime:
44
+ - '0.302187'
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":"356983","id":"071-P-23O82NEW","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":"6206092e1947d5828adeebb7f14e8c81","currency":"AUD","transaction_id":"071-P-23O82NEW","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:45:11+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071P23O82NEW","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:45:11 GMT
55
+ - request:
56
+ method: get
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/6206092e1947d5828adeebb7f14e8c81?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:45:11 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.023333'
97
+ Pragma:
98
+ - no-cache
99
+ X-Request-Id:
100
+ - 6371a7c4f1e139530779b5262ca4c212
101
+ X-Backend:
102
+ - sbox-priv-gateway-a
103
+ body:
104
+ encoding: UTF-8
105
+ string: '{"successful":true,"response":{"authorization":"356983","id":"071-P-23O82NEW","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":"6206092e1947d5828adeebb7f14e8c81","currency":"AUD","transaction_id":"071-P-23O82NEW","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:45:11+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071P23O82NEW","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
107
+ http_version:
108
+ recorded_at: Wed, 05 Jul 2017 05:45:11 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":"be97ecc606de99fd9eb7f9866be401eb","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:47 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.324445'
43
+ Pragma:
44
+ - no-cache
45
+ X-Request-Id:
46
+ - fec9954e4fbc603a79fc2a8aea88003a
47
+ X-Backend:
48
+ - sbox-priv-gateway-a
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"successful":true,"response":{"authorization":"951998","id":"071-P-MXQ6748P","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":"be97ecc606de99fd9eb7f9866be401eb","currency":"AUD","transaction_id":"071-P-MXQ6748P","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:47+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PMXQ6748P","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
53
+ http_version:
54
+ recorded_at: Wed, 05 Jul 2017 05:43:47 GMT
55
+ - request:
56
+ method: get
57
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/purchases/be97ecc606de99fd9eb7f9866be401eb?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:47 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
+ Cache-Control:
90
+ - no-store, private
91
+ X-Request-Version:
92
+ - 1.19.41
93
+ Pragma:
94
+ - no-cache
95
+ X-Request-Id:
96
+ - 1fbe100e97ce246589a2aaef5082b8b1
97
+ X-Runtime:
98
+ - '0.042195'
99
+ X-Rack-Cache:
100
+ - miss
101
+ X-Backend:
102
+ - sbox-priv-gateway-a
103
+ body:
104
+ encoding: UTF-8
105
+ string: '{"successful":true,"response":{"authorization":"951998","id":"071-P-MXQ6748P","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":"be97ecc606de99fd9eb7f9866be401eb","currency":"AUD","transaction_id":"071-P-MXQ6748P","settlement_date":"2017-07-05","transaction_date":"2017-07-05T15:43:47+10:00","response_code":"00","captured":true,"captured_amount":10000,"rrn":"071PMXQ6748P","cvv_match":"M","metadata":{},"addendum_data":{}},"errors":[],"test":true}'
107
+ http_version:
108
+ recorded_at: Wed, 05 Jul 2017 05:43:47 GMT
109
+ recorded_with: VCR 3.0.3