fat_zebra 3.0.10 → 3.2.2

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 (215) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +3 -5
  4. data/.travis.yml +3 -3
  5. data/README.md +5 -5
  6. data/fat_zebra.gemspec +5 -5
  7. data/lib/fat_zebra.rb +8 -0
  8. data/lib/fat_zebra/api_operation/search.rb +1 -1
  9. data/lib/fat_zebra/authenticate.rb +64 -0
  10. data/lib/fat_zebra/batch.rb +3 -1
  11. data/lib/fat_zebra/card.rb +1 -0
  12. data/lib/fat_zebra/direct_credit.rb +1 -1
  13. data/lib/fat_zebra/direct_debit.rb +1 -1
  14. data/lib/fat_zebra/paypal/authorization.rb +49 -0
  15. data/lib/fat_zebra/paypal/billing_agreement.rb +56 -0
  16. data/lib/fat_zebra/paypal/capture.rb +36 -0
  17. data/lib/fat_zebra/paypal/order.rb +22 -0
  18. data/lib/fat_zebra/paypal/refund.rb +22 -0
  19. data/lib/fat_zebra/refund.rb +4 -0
  20. data/lib/fat_zebra/validation.rb +4 -0
  21. data/lib/fat_zebra/version.rb +1 -1
  22. data/spec/cassettes/FatZebra_Authenticate/_authenticate/validations/1_3_5_1.yml +46 -0
  23. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_challenge_response/1_3_3_1.yml +90 -0
  24. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_challenge_response/1_3_3_2.yml +90 -0
  25. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_frictionless_response/1_3_2_1.yml +90 -0
  26. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_frictionless_response/1_3_2_2.yml +90 -0
  27. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_invalid_input/1_3_1_1.yml +90 -0
  28. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_invalid_input/1_3_1_2.yml +87 -0
  29. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_invalid_input/1_3_1_3.yml +92 -0
  30. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_invalid_input/1_3_1_4.yml +91 -0
  31. data/spec/cassettes/FatZebra_Authenticate/_authenticate/with_type_validation/1_3_4_1.yml +46 -0
  32. data/spec/cassettes/FatZebra_Authenticate/_decode_session/when_token_is_invalid/returns_error_when_invalid_token.yml +47 -0
  33. data/spec/cassettes/FatZebra_Authenticate/_decode_session/when_token_is_valid/decodes_JWT.yml +87 -0
  34. data/spec/cassettes/FatZebra_Authenticate/_session/returns_JWT_with_given_params.yml +44 -0
  35. data/spec/cassettes/FatZebra_Authenticate/_session/returns_JWT_with_no_amount.yml +44 -0
  36. data/spec/cassettes/FatZebra_Authenticate/_session/returns_error_when_amount_is_invalid.yml +44 -0
  37. data/spec/cassettes/FatZebra_Authenticate/_session/returns_error_when_currency_is_invalid.yml +46 -0
  38. data/spec/cassettes/FatZebra_BankAccount/_create/1_1_1.yml +7 -9
  39. data/spec/cassettes/FatZebra_BankAccount/_create/1_1_2.yml +7 -9
  40. data/spec/cassettes/FatZebra_BankAccount/_search/1_2_1.yml +32 -38
  41. data/spec/cassettes/FatZebra_BankAccount/_search/1_2_2.yml +32 -38
  42. data/spec/cassettes/FatZebra_BankAccount/_search/1_2_3.yml +32 -38
  43. data/spec/cassettes/FatZebra_Batch/_create/with_file/1_1_1_1.yml +10 -14
  44. data/spec/cassettes/FatZebra_Batch/_create/with_file/1_1_1_2.yml +10 -14
  45. data/spec/cassettes/FatZebra_Batch/_create/with_path/1_1_2_1.yml +10 -14
  46. data/spec/cassettes/FatZebra_Batch/_create/with_path/1_1_2_2.yml +10 -14
  47. data/spec/cassettes/FatZebra_Batch/_find/1_2_1.yml +18 -24
  48. data/spec/cassettes/FatZebra_Batch/_find/1_2_2.yml +18 -24
  49. data/spec/cassettes/FatZebra_Batch/_result/1_4_1.yml +26 -34
  50. data/spec/cassettes/FatZebra_Batch/_search/1_3_1.yml +8 -10
  51. data/spec/cassettes/FatZebra_Batch/_search/1_3_2.yml +8 -10
  52. data/spec/cassettes/FatZebra_Batch/_search/1_3_3.yml +8 -10
  53. data/spec/cassettes/FatZebra_Card/_create/1_1_1.yml +7 -9
  54. data/spec/cassettes/FatZebra_Card/_create/1_1_2.yml +7 -9
  55. data/spec/cassettes/FatZebra_Card/_create/1_1_3.yml +7 -9
  56. data/spec/cassettes/FatZebra_Card/_create/1_1_4.yml +7 -9
  57. data/spec/cassettes/FatZebra_Card/_create/1_1_5.yml +7 -9
  58. data/spec/cassettes/FatZebra_Card/_create/1_1_6.yml +7 -9
  59. data/spec/cassettes/FatZebra_Card/_find/1_3_1.yml +111 -0
  60. data/spec/cassettes/FatZebra_Card/_find/1_3_2.yml +111 -0
  61. data/spec/cassettes/FatZebra_Card/_update/1_2_1.yml +14 -18
  62. data/spec/cassettes/FatZebra_Card/_update/1_2_2.yml +14 -18
  63. data/spec/cassettes/FatZebra_Card/_update/1_2_3.yml +14 -18
  64. data/spec/cassettes/FatZebra_Card/_update/validations/1_2_4_1.yml +7 -9
  65. data/spec/cassettes/FatZebra_Customer/_create/1_1_1.yml +8 -10
  66. data/spec/cassettes/FatZebra_Customer/_create/1_1_2.yml +8 -10
  67. data/spec/cassettes/FatZebra_Customer/_create/1_1_3.yml +8 -10
  68. data/spec/cassettes/FatZebra_Customer/_create/1_1_4.yml +8 -10
  69. data/spec/cassettes/FatZebra_Customer/_create/1_1_5.yml +8 -10
  70. data/spec/cassettes/FatZebra_Customer/_create/1_1_6.yml +8 -10
  71. data/spec/cassettes/FatZebra_Customer/_delete/1_5_1.yml +16 -20
  72. data/spec/cassettes/FatZebra_Customer/_find/1_3_1.yml +17 -21
  73. data/spec/cassettes/FatZebra_Customer/_find/1_3_2.yml +17 -21
  74. data/spec/cassettes/FatZebra_Customer/_search/1_2_1.yml +14 -20
  75. data/spec/cassettes/FatZebra_Customer/_search/1_2_2.yml +14 -20
  76. data/spec/cassettes/FatZebra_Customer/_search/1_2_3.yml +14 -20
  77. data/spec/cassettes/FatZebra_Customer/_update/1_4_1.yml +17 -21
  78. data/spec/cassettes/FatZebra_Customer/_update/1_4_2.yml +17 -21
  79. data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_1.yml +7 -9
  80. data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_2.yml +7 -9
  81. data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_3.yml +7 -9
  82. data/spec/cassettes/FatZebra_DirectCredit/_create/1_1_4.yml +7 -9
  83. data/spec/cassettes/FatZebra_DirectCredit/_create/validations/valid/1_1_5_1_1.yml +6 -8
  84. data/spec/cassettes/FatZebra_DirectCredit/_delete/1_4_1.yml +14 -18
  85. data/spec/cassettes/FatZebra_DirectCredit/_find/1_2_1.yml +15 -19
  86. data/spec/cassettes/FatZebra_DirectCredit/_find/1_2_2.yml +15 -19
  87. data/spec/cassettes/FatZebra_DirectCredit/_find/1_2_3.yml +103 -0
  88. data/spec/cassettes/FatZebra_DirectCredit/_search/1_3_1.yml +22 -28
  89. data/spec/cassettes/FatZebra_DirectCredit/_search/1_3_2.yml +22 -28
  90. data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_1.yml +7 -9
  91. data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_2.yml +7 -9
  92. data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_3.yml +7 -9
  93. data/spec/cassettes/FatZebra_DirectDebit/_create/1_1_4.yml +7 -9
  94. data/spec/cassettes/FatZebra_DirectDebit/_create/validations/valid/1_1_5_1_1.yml +6 -8
  95. data/spec/cassettes/FatZebra_DirectDebit/_delete/1_4_1.yml +14 -18
  96. data/spec/cassettes/FatZebra_DirectDebit/_find/1_2_1.yml +15 -19
  97. data/spec/cassettes/FatZebra_DirectDebit/_find/1_2_2.yml +15 -19
  98. data/spec/cassettes/FatZebra_DirectDebit/_find/1_2_3.yml +103 -0
  99. data/spec/cassettes/FatZebra_DirectDebit/_search/1_3_1.yml +22 -28
  100. data/spec/cassettes/FatZebra_DirectDebit/_search/1_3_2.yml +22 -28
  101. data/spec/cassettes/FatZebra_Information/_ping/1_1_1.yml +7 -9
  102. data/spec/cassettes/FatZebra_Information/_ping/1_1_2.yml +7 -9
  103. data/spec/cassettes/FatZebra_PaymentPlan/_active_/1_8_1.yml +48 -56
  104. data/spec/cassettes/FatZebra_PaymentPlan/_active_/1_8_2.yml +48 -56
  105. data/spec/cassettes/FatZebra_PaymentPlan/_create/1_1_1.yml +20 -24
  106. data/spec/cassettes/FatZebra_PaymentPlan/_create/1_1_2.yml +20 -24
  107. data/spec/cassettes/FatZebra_PaymentPlan/_create/1_1_3.yml +20 -24
  108. data/spec/cassettes/FatZebra_PaymentPlan/_delete/1_5_1.yml +28 -34
  109. data/spec/cassettes/FatZebra_PaymentPlan/_destroy/1_6_1.yml +28 -34
  110. data/spec/cassettes/FatZebra_PaymentPlan/_find/1_2_1.yml +33 -39
  111. data/spec/cassettes/FatZebra_PaymentPlan/_find/1_2_2.yml +33 -39
  112. data/spec/cassettes/FatZebra_PaymentPlan/_find/1_2_3.yml +33 -39
  113. data/spec/cassettes/FatZebra_PaymentPlan/_suspend_/1_7_1.yml +34 -40
  114. data/spec/cassettes/FatZebra_PaymentPlan/_suspend_/1_7_2.yml +34 -40
  115. data/spec/cassettes/FatZebra_PaymentPlan/_update/1_3_1.yml +28 -34
  116. data/spec/cassettes/FatZebra_PaymentPlan/_update/1_3_2.yml +28 -34
  117. data/spec/cassettes/FatZebra_PaymentPlan/_update/1_3_3.yml +28 -34
  118. data/spec/cassettes/FatZebra_PaymentPlan/_update/1_4_1.yml +34 -40
  119. data/spec/cassettes/FatZebra_PaymentPlan/_update/1_4_2.yml +34 -40
  120. data/spec/cassettes/FatZebra_Paypal_Authorization/_capture/returns_a_new_capture_record.yml +45 -0
  121. data/spec/cassettes/FatZebra_Paypal_Authorization/_find/when_found/returns_authorization.yml +46 -0
  122. data/spec/cassettes/FatZebra_Paypal_Authorization/_search/with_date_filter/returns_records_created_after_start_date.yml +46 -0
  123. data/spec/cassettes/FatZebra_Paypal_Authorization/_void/returns_a_voided_capture_record.yml +44 -0
  124. data/spec/cassettes/FatZebra_Paypal_BillingAgreement/_charge/Valid_payload/returns_a_new_order_record.yml +48 -0
  125. data/spec/cassettes/FatZebra_Paypal_BillingAgreement/_find/when_found/returns_billing_agreement.yml +48 -0
  126. data/spec/cassettes/FatZebra_Paypal_BillingAgreement/_search/with_date_filter/returns_records_created_after_start_date.yml +48 -0
  127. data/spec/cassettes/FatZebra_Paypal_Capture/_find/when_found/returns_capture.yml +47 -0
  128. data/spec/cassettes/FatZebra_Paypal_Capture/_refund/returns_a_new_refund_record.yml +45 -0
  129. data/spec/cassettes/FatZebra_Paypal_Capture/_search/with_date_filter/returns_records_created_after_start_date.yml +49 -0
  130. data/spec/cassettes/FatZebra_Paypal_Order/_find/when_found/returns_order.yml +48 -0
  131. data/spec/cassettes/FatZebra_Paypal_Order/_search/with_date_filter/returns_orders_created_after_start_date.yml +55 -0
  132. data/spec/cassettes/FatZebra_Paypal_Refund/_find/when_found/returns_refund.yml +47 -0
  133. data/spec/cassettes/FatZebra_Paypal_Refund/_search/with_date_filter/returns_all_refund_records_created_after_start_date.yml +50 -0
  134. data/spec/cassettes/FatZebra_Purchase/_capture/1_5_1.yml +30 -22
  135. data/spec/cassettes/FatZebra_Purchase/_capture/1_5_2.yml +30 -22
  136. data/spec/cassettes/FatZebra_Purchase/_capture/1_5_3.yml +30 -22
  137. data/spec/cassettes/FatZebra_Purchase/_create/1_1_1.yml +8 -10
  138. data/spec/cassettes/FatZebra_Purchase/_create/1_1_10.yml +8 -10
  139. data/spec/cassettes/FatZebra_Purchase/_create/1_1_11.yml +8 -10
  140. data/spec/cassettes/FatZebra_Purchase/_create/1_1_12.yml +8 -10
  141. data/spec/cassettes/FatZebra_Purchase/_create/1_1_13.yml +8 -10
  142. data/spec/cassettes/FatZebra_Purchase/_create/1_1_2.yml +8 -10
  143. data/spec/cassettes/FatZebra_Purchase/_create/1_1_3.yml +8 -10
  144. data/spec/cassettes/FatZebra_Purchase/_create/1_1_4.yml +8 -10
  145. data/spec/cassettes/FatZebra_Purchase/_create/1_1_5.yml +8 -10
  146. data/spec/cassettes/FatZebra_Purchase/_create/1_1_6.yml +8 -10
  147. data/spec/cassettes/FatZebra_Purchase/_create/1_1_7.yml +8 -10
  148. data/spec/cassettes/FatZebra_Purchase/_create/1_1_8.yml +8 -10
  149. data/spec/cassettes/FatZebra_Purchase/_create/1_1_9.yml +8 -10
  150. data/spec/cassettes/FatZebra_Purchase/_create/bad_request/1_1_14_1.yml +10 -12
  151. data/spec/cassettes/FatZebra_Purchase/_create/bad_request/1_1_14_2.yml +10 -12
  152. data/spec/cassettes/FatZebra_Purchase/_find/1_2_1.yml +31 -23
  153. data/spec/cassettes/FatZebra_Purchase/_find/1_2_2.yml +31 -23
  154. data/spec/cassettes/FatZebra_Purchase/_find/1_2_3.yml +31 -23
  155. data/spec/cassettes/FatZebra_Purchase/_find/1_2_4.yml +31 -23
  156. data/spec/cassettes/FatZebra_Purchase/_refund/1_4_1.yml +30 -22
  157. data/spec/cassettes/FatZebra_Purchase/_refund/1_4_2.yml +30 -22
  158. data/spec/cassettes/FatZebra_Purchase/_refund/1_4_3.yml +30 -22
  159. data/spec/cassettes/FatZebra_Purchase/_search/1_3_1.yml +34 -40
  160. data/spec/cassettes/FatZebra_Purchase/_search/1_3_2.yml +34 -40
  161. data/spec/cassettes/FatZebra_Purchase/_search/1_3_3.yml +34 -40
  162. data/spec/cassettes/FatZebra_Purchase/_settlement/1_8_1.yml +523 -511
  163. data/spec/cassettes/FatZebra_Purchase/_settlement/1_8_2.yml +523 -511
  164. data/spec/cassettes/FatZebra_Purchase/_settlement/1_8_3.yml +523 -511
  165. data/spec/cassettes/FatZebra_Purchase/_void/1_6_1.yml +16 -20
  166. data/spec/cassettes/FatZebra_Purchase/_void/1_6_2.yml +16 -20
  167. data/spec/cassettes/FatZebra_Purchase/_void/1_6_3.yml +16 -20
  168. data/spec/cassettes/FatZebra_Purchase/_void/1_6_4.yml +16 -20
  169. data/spec/cassettes/FatZebra_Purchase/_void/1_7_1.yml +16 -20
  170. data/spec/cassettes/FatZebra_Purchase/_void/1_7_2.yml +16 -20
  171. data/spec/cassettes/FatZebra_Purchase/_void/1_7_3.yml +16 -20
  172. data/spec/cassettes/FatZebra_Purchase/_void/1_7_4.yml +16 -20
  173. data/spec/cassettes/FatZebra_Refund/_create/1_1_1.yml +16 -20
  174. data/spec/cassettes/FatZebra_Refund/_create/1_1_10.yml +16 -20
  175. data/spec/cassettes/FatZebra_Refund/_create/1_1_2.yml +16 -20
  176. data/spec/cassettes/FatZebra_Refund/_create/1_1_3.yml +16 -20
  177. data/spec/cassettes/FatZebra_Refund/_create/1_1_4.yml +16 -20
  178. data/spec/cassettes/FatZebra_Refund/_create/1_1_5.yml +16 -20
  179. data/spec/cassettes/FatZebra_Refund/_create/1_1_6.yml +16 -20
  180. data/spec/cassettes/FatZebra_Refund/_create/1_1_7.yml +16 -20
  181. data/spec/cassettes/FatZebra_Refund/_create/1_1_8.yml +16 -20
  182. data/spec/cassettes/FatZebra_Refund/_create/1_1_9.yml +16 -20
  183. data/spec/cassettes/FatZebra_Refund/_find/1_2_1.yml +25 -31
  184. data/spec/cassettes/FatZebra_Refund/_find/1_2_2.yml +25 -31
  185. data/spec/cassettes/FatZebra_Refund/_find/1_2_3.yml +25 -31
  186. data/spec/cassettes/FatZebra_Refund/_search/responds_with_the_newly-created_refunds.yml +214 -0
  187. data/spec/cassettes/FatZebra_Refund/_void/1_4_1.yml +24 -30
  188. data/spec/cassettes/FatZebra_Refund/_void/1_4_2.yml +24 -30
  189. data/spec/cassettes/FatZebra_Refund/_void/1_4_3.yml +24 -30
  190. data/spec/cassettes/FatZebra_Refund/_void/1_4_4.yml +24 -30
  191. data/spec/cassettes/FatZebra_WebHook/_create/1_1_1.yml +6 -8
  192. data/spec/cassettes/FatZebra_WebHook/_create/1_1_2.yml +6 -8
  193. data/spec/cassettes/FatZebra_WebHook/_create/1_1_3.yml +6 -8
  194. data/spec/cassettes/FatZebra_WebHook/_delete/1_4_1.yml +13 -17
  195. data/spec/cassettes/FatZebra_WebHook/_search/1_2_1.yml +163 -43
  196. data/spec/cassettes/FatZebra_WebHook/_search/1_2_2.yml +165 -45
  197. data/spec/cassettes/FatZebra_WebHook/_update/1_3_1.yml +13 -17
  198. data/spec/cassettes/FatZebra_WebHook/_update/1_3_2.yml +13 -17
  199. data/spec/lib/fat_zebra/authenticate_spec.rb +187 -0
  200. data/spec/lib/fat_zebra/card_spec.rb +8 -0
  201. data/spec/lib/fat_zebra/direct_credit_spec.rb +14 -1
  202. data/spec/lib/fat_zebra/direct_debit_spec.rb +14 -1
  203. data/spec/lib/fat_zebra/payment_plan_spec.rb +1 -1
  204. data/spec/lib/fat_zebra/paypal/authorization_spec.rb +79 -0
  205. data/spec/lib/fat_zebra/paypal/billing_agreement_spec.rb +62 -0
  206. data/spec/lib/fat_zebra/paypal/capture_spec.rb +60 -0
  207. data/spec/lib/fat_zebra/paypal/order_spec.rb +35 -0
  208. data/spec/lib/fat_zebra/paypal/refund_spec.rb +36 -0
  209. data/spec/lib/fat_zebra/purchase_spec.rb +3 -3
  210. data/spec/lib/fat_zebra/refund_spec.rb +37 -17
  211. data/spec/spec_helper.rb +0 -1
  212. data/spec/support/payloads.rb +135 -0
  213. metadata +59 -15
  214. data/spec/cassettes/FatZebra_Refund/_search/1_3_1.yml +0 -275
  215. data/spec/cassettes/FatZebra_Refund/_search/1_3_2.yml +0 -275
@@ -23,7 +23,7 @@ http_interactions:
23
23
  message: OK
24
24
  headers:
25
25
  Date:
26
- - Wed, 02 May 2018 23:13:39 GMT
26
+ - Mon, 29 Apr 2019 09:20:37 GMT
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Transfer-Encoding:
@@ -32,24 +32,22 @@ http_interactions:
32
32
  - keep-alive
33
33
  Status:
34
34
  - 200 OK
35
- X-Rack-Cache:
36
- - invalidate, pass
37
35
  Cache-Control:
38
36
  - no-store
39
37
  X-Request-Version:
40
- - 1.16.9-3156@6c1a40b
38
+ - 1.16.9-3941@c1d8236
41
39
  X-Runtime:
42
- - '0.023807'
40
+ - '0.034957'
43
41
  Pragma:
44
42
  - no-cache
45
43
  X-Request-Id:
46
- - 2ef03f24856ee7de2d5aa194
44
+ - fb82c94488db127453df2334
47
45
  X-Backend:
48
46
  - sbox-priv-gateway-a
49
47
  body:
50
48
  encoding: UTF-8
51
49
  string: '{"successful":true,"response":{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
52
- hook","id":"071-WH-YO64KR3X"},"errors":[],"test":true}'
50
+ hook","id":"071-WH-VTOHWEW3"},"errors":[],"test":true}'
53
51
  http_version:
54
- recorded_at: Wed, 02 May 2018 23:13:38 GMT
52
+ recorded_at: Mon, 29 Apr 2019 09:20:37 GMT
55
53
  recorded_with: VCR 3.0.3
@@ -23,7 +23,7 @@ http_interactions:
23
23
  message: OK
24
24
  headers:
25
25
  Date:
26
- - Wed, 02 May 2018 23:13:39 GMT
26
+ - Mon, 29 Apr 2019 09:20:37 GMT
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Transfer-Encoding:
@@ -32,24 +32,22 @@ http_interactions:
32
32
  - keep-alive
33
33
  Status:
34
34
  - 200 OK
35
- X-Rack-Cache:
36
- - invalidate, pass
37
35
  Cache-Control:
38
36
  - no-store
39
37
  X-Request-Version:
40
- - 1.16.9-3156@6c1a40b
38
+ - 1.16.9-3941@c1d8236
41
39
  X-Runtime:
42
- - '0.024426'
40
+ - '0.035576'
43
41
  Pragma:
44
42
  - no-cache
45
43
  X-Request-Id:
46
- - 146d56207592a07ae5aa31cc
44
+ - 492b3c5118d0b96892ed0ffa
47
45
  X-Backend:
48
46
  - sbox-priv-gateway-a
49
47
  body:
50
48
  encoding: UTF-8
51
49
  string: '{"successful":true,"response":{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
52
- hook","id":"071-WH-HBWDF8EM"},"errors":[],"test":true}'
50
+ hook","id":"071-WH-5W9QOBWP"},"errors":[],"test":true}'
53
51
  http_version:
54
- recorded_at: Wed, 02 May 2018 23:13:38 GMT
52
+ recorded_at: Mon, 29 Apr 2019 09:20:37 GMT
55
53
  recorded_with: VCR 3.0.3
@@ -23,7 +23,7 @@ http_interactions:
23
23
  message: OK
24
24
  headers:
25
25
  Date:
26
- - Wed, 02 May 2018 23:13:40 GMT
26
+ - Mon, 29 Apr 2019 09:20:38 GMT
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Transfer-Encoding:
@@ -32,29 +32,27 @@ http_interactions:
32
32
  - keep-alive
33
33
  Status:
34
34
  - 200 OK
35
- X-Rack-Cache:
36
- - invalidate, pass
37
35
  Cache-Control:
38
36
  - no-store
39
37
  X-Request-Version:
40
- - 1.16.9-3156@6c1a40b
38
+ - 1.16.9-3941@c1d8236
41
39
  X-Runtime:
42
- - '0.025146'
40
+ - '0.051374'
43
41
  Pragma:
44
42
  - no-cache
45
43
  X-Request-Id:
46
- - a1787f9cf4d03a2a19e35034
44
+ - 2aec3a7c1f41ef842932cfd4
47
45
  X-Backend:
48
46
  - sbox-priv-gateway-a
49
47
  body:
50
48
  encoding: UTF-8
51
49
  string: '{"successful":true,"response":{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
52
- hook","id":"071-WH-ZZL5KHM1"},"errors":[],"test":true}'
50
+ hook","id":"071-WH-U9R794DT"},"errors":[],"test":true}'
53
51
  http_version:
54
- recorded_at: Wed, 02 May 2018 23:13:39 GMT
52
+ recorded_at: Mon, 29 Apr 2019 09:20:38 GMT
55
53
  - request:
56
54
  method: delete
57
- uri: https://gateway.sandbox.fatzebra.com.au/v1.0/web_hooks/071-WH-ZZL5KHM1
55
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/web_hooks/071-WH-U9R794DT
58
56
  body:
59
57
  encoding: UTF-8
60
58
  string: '{"test":true}'
@@ -73,7 +71,7 @@ http_interactions:
73
71
  message: OK
74
72
  headers:
75
73
  Date:
76
- - Wed, 02 May 2018 23:13:40 GMT
74
+ - Mon, 29 Apr 2019 09:20:38 GMT
77
75
  Content-Type:
78
76
  - application/json; charset=utf-8
79
77
  Transfer-Encoding:
@@ -82,24 +80,22 @@ http_interactions:
82
80
  - keep-alive
83
81
  Status:
84
82
  - 200 OK
85
- X-Rack-Cache:
86
- - invalidate, pass
87
83
  Cache-Control:
88
84
  - no-store
89
85
  X-Request-Version:
90
- - 1.16.9-3156@6c1a40b
86
+ - 1.16.9-3941@c1d8236
91
87
  X-Runtime:
92
- - '0.014171'
88
+ - '0.021461'
93
89
  Pragma:
94
90
  - no-cache
95
91
  X-Request-Id:
96
- - a6f7125ae83190e0d0ec4078
92
+ - f56105245c62f13863c074e8
97
93
  X-Backend:
98
94
  - sbox-priv-gateway-a
99
95
  body:
100
96
  encoding: UTF-8
101
97
  string: '{"successful":true,"response":{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
102
- hook","id":"071-WH-ZZL5KHM1"},"errors":[],"test":true}'
98
+ hook","id":"071-WH-U9R794DT"},"errors":[],"test":true}'
103
99
  http_version:
104
- recorded_at: Wed, 02 May 2018 23:13:39 GMT
100
+ recorded_at: Mon, 29 Apr 2019 09:20:38 GMT
105
101
  recorded_with: VCR 3.0.3
@@ -23,7 +23,7 @@ http_interactions:
23
23
  message: OK
24
24
  headers:
25
25
  Date:
26
- - Wed, 02 May 2018 23:13:40 GMT
26
+ - Mon, 29 Apr 2019 09:20:37 GMT
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Transfer-Encoding:
@@ -32,26 +32,24 @@ http_interactions:
32
32
  - keep-alive
33
33
  Status:
34
34
  - 200 OK
35
- X-Rack-Cache:
36
- - invalidate, pass
37
35
  Cache-Control:
38
36
  - no-store
39
37
  X-Request-Version:
40
- - 1.16.9-3156@6c1a40b
38
+ - 1.16.9-3941@c1d8236
41
39
  X-Runtime:
42
- - '0.043523'
40
+ - '0.036300'
43
41
  Pragma:
44
42
  - no-cache
45
43
  X-Request-Id:
46
- - 5df7f5b565877fab43fc824c
44
+ - b8971d99786309886bf6c324
47
45
  X-Backend:
48
46
  - sbox-priv-gateway-a
49
47
  body:
50
48
  encoding: UTF-8
51
49
  string: '{"successful":true,"response":{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
52
- hook","id":"071-WH-4U0O3LQ3"},"errors":[],"test":true}'
50
+ hook","id":"071-WH-AJDNL1B9"},"errors":[],"test":true}'
53
51
  http_version:
54
- recorded_at: Wed, 02 May 2018 23:13:38 GMT
52
+ recorded_at: Mon, 29 Apr 2019 09:20:37 GMT
55
53
  - request:
56
54
  method: post
57
55
  uri: https://gateway.sandbox.fatzebra.com.au/v1.0/web_hooks
@@ -75,7 +73,7 @@ http_interactions:
75
73
  message: OK
76
74
  headers:
77
75
  Date:
78
- - Wed, 02 May 2018 23:13:40 GMT
76
+ - Mon, 29 Apr 2019 09:20:37 GMT
79
77
  Content-Type:
80
78
  - application/json; charset=utf-8
81
79
  Transfer-Encoding:
@@ -84,29 +82,27 @@ http_interactions:
84
82
  - keep-alive
85
83
  Status:
86
84
  - 200 OK
87
- X-Rack-Cache:
88
- - invalidate, pass
89
85
  Cache-Control:
90
86
  - no-store
91
87
  X-Request-Version:
92
- - 1.16.9-3156@6c1a40b
88
+ - 1.16.9-3941@c1d8236
93
89
  X-Runtime:
94
- - '0.023739'
90
+ - '0.035056'
95
91
  Pragma:
96
92
  - no-cache
97
93
  X-Request-Id:
98
- - a2088e29e08ec867905df3d2
94
+ - 53d64f88105ff5b8b777934c
99
95
  X-Backend:
100
96
  - sbox-priv-gateway-a
101
97
  body:
102
98
  encoding: UTF-8
103
99
  string: '{"successful":true,"response":{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
104
- hook","id":"071-WH-JCLJC427"},"errors":[],"test":true}'
100
+ hook","id":"071-WH-GVPQIPSU"},"errors":[],"test":true}'
105
101
  http_version:
106
- recorded_at: Wed, 02 May 2018 23:13:38 GMT
102
+ recorded_at: Mon, 29 Apr 2019 09:20:37 GMT
107
103
  - request:
108
104
  method: get
109
- uri: https://gateway.sandbox.fatzebra.com.au/v1.0/web_hooks?limit=10&offets=0&test=true
105
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/web_hooks?limit=10&offset=0&test=true
110
106
  body:
111
107
  encoding: US-ASCII
112
108
  string: ''
@@ -129,7 +125,7 @@ http_interactions:
129
125
  message: OK
130
126
  headers:
131
127
  Date:
132
- - Wed, 02 May 2018 23:13:40 GMT
128
+ - Mon, 29 Apr 2019 09:20:37 GMT
133
129
  Content-Type:
134
130
  - application/json; charset=utf-8
135
131
  Transfer-Encoding:
@@ -138,41 +134,165 @@ http_interactions:
138
134
  - keep-alive
139
135
  Status:
140
136
  - 200 OK
141
- X-Rack-Cache:
142
- - miss
143
137
  Cache-Control:
144
- - no-store, private
138
+ - no-store
145
139
  X-Request-Version:
146
- - 1.16.9-3156@6c1a40b
140
+ - 1.16.9-3941@c1d8236
147
141
  X-Runtime:
148
- - '0.019827'
142
+ - '0.042891'
149
143
  Pragma:
150
144
  - no-cache
151
145
  X-Request-Id:
152
- - ef407ffe053347501aa007b0
146
+ - 97be6fe8ef3be29cdf59c390
153
147
  X-Backend:
154
148
  - sbox-priv-gateway-a
155
149
  body:
156
150
  encoding: UTF-8
157
- string: '{"successful":true,"response":[{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
158
- hook","id":"071-WH-JCLJC427"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
159
- hook","id":"071-WH-4U0O3LQ3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
160
- hook","id":"071-WH-HBWDF8EM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
161
- hook","id":"071-WH-YO64KR3X"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
162
- hook","id":"071-WH-1OVBGYE1"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
163
- hook","id":"071-WH-SQ0PZMZE"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
164
- hook","id":"071-WH-W0USUJ2M"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
165
- hook","id":"071-WH-RXF8W7I7"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
166
- hook","id":"071-WH-4LUQFJWC"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
167
- hook","id":"071-WH-QW5S2ZZH"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
168
- hook","id":"071-WH-ID3H5FKN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
169
- hook","id":"071-WH-65P737MQ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
170
- hook","id":"071-WH-SJ5IMZ0O"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
171
- hook","id":"071-WH-5UWU3B16"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
172
- hook","id":"071-WH-1K3BR0FQ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
173
- hook","id":"071-WH-BDGKELWC"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
151
+ string: '{"successful":true,"response":[{"address":"https://nosnch.in/cc300bb516","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":true,"name":"Test","id":"071-WH-3W2KM1L3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
152
+ hook","id":"071-WH-59WBB09S"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
174
153
  hook","id":"071-WH-B4PU09SR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
175
- hook","id":"071-WH-59WBB09S"},{"address":"https://requestb.in/1jkvbv31","events":"*","mode":"Test","authentication_username":"","authentication_password":"","is_active":true,"name":"Test","id":"071-WH-17G8TV1C"},{"address":"https://nosnch.in/cc300bb516","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":true,"name":"Test","id":"071-WH-3W2KM1L3"}],"errors":[],"test":true}'
154
+ hook","id":"071-WH-BDGKELWC"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
155
+ hook","id":"071-WH-1K3BR0FQ"},{"address":"http://requestbin.pmnts-sandbox.io/15itqsp1","events":"*","mode":"Test","authentication_username":"pmnts","authentication_password":"******","is_active":true,"name":"Test","id":"071-WH-17G8TV1C"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
156
+ hook","id":"071-WH-H4GJOG0N"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
157
+ hook","id":"071-WH-VTOHWEW3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
158
+ hook","id":"071-WH-5W9QOBWP"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
159
+ hook","id":"071-WH-AJDNL1B9"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
160
+ hook","id":"071-WH-GVPQIPSU"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
161
+ hook","id":"071-WH-5UWU3B16"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
162
+ hook","id":"071-WH-SJ5IMZ0O"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
163
+ hook","id":"071-WH-65P737MQ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
164
+ hook","id":"071-WH-ID3H5FKN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
165
+ hook","id":"071-WH-QW5S2ZZH"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
166
+ hook","id":"071-WH-4LUQFJWC"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
167
+ hook","id":"071-WH-RXF8W7I7"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
168
+ hook","id":"071-WH-W0USUJ2M"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
169
+ hook","id":"071-WH-SQ0PZMZE"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
170
+ hook","id":"071-WH-1OVBGYE1"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
171
+ hook","id":"071-WH-YO64KR3X"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
172
+ hook","id":"071-WH-HBWDF8EM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
173
+ hook","id":"071-WH-4U0O3LQ3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
174
+ hook","id":"071-WH-JCLJC427"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
175
+ hook","id":"071-WH-XID631NJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
176
+ hook","id":"071-WH-NVXD7G34"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
177
+ Test hook","id":"071-WH-8I8NRWR1"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
178
+ Test hook","id":"071-WH-H9B1G0OJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
179
+ hook","id":"071-WH-8ZYOZ6R7"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
180
+ hook","id":"071-WH-7H3RDH30"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
181
+ hook","id":"071-WH-78NOPBD3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
182
+ hook","id":"071-WH-HUN8MZFS"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
183
+ hook","id":"071-WH-DK8OHKYJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
184
+ hook","id":"071-WH-GJTNVHDA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
185
+ hook","id":"071-WH-P3A1D3UV"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
186
+ Test hook","id":"071-WH-KJHS8C3I"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
187
+ Test hook","id":"071-WH-1GCPXGEW"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
188
+ hook","id":"071-WH-FB5K3I7L"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
189
+ hook","id":"071-WH-EOCT20ER"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
190
+ hook","id":"071-WH-Y54NGCRI"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
191
+ hook","id":"071-WH-Y6XERW9T"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
192
+ hook","id":"071-WH-BQ6Z8QNN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
193
+ hook","id":"071-WH-FNXJDTHV"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
194
+ hook","id":"071-WH-KY73XCEI"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
195
+ Test hook","id":"071-WH-1IT0ODXR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
196
+ Test hook","id":"071-WH-O3JYYZP6"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"Test
197
+ Hook","id":"071-WH-7RNNJP9T"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"Test
198
+ Hook","id":"071-WH-MJZN06HT"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
199
+ hook","id":"071-WH-CQIOMJQ5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
200
+ hook","id":"071-WH-OBDDB2M5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
201
+ hook","id":"071-WH-5SFTPD5A"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
202
+ hook","id":"071-WH-COB7WARB"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
203
+ hook","id":"071-WH-33N0SGUL"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
204
+ hook","id":"071-WH-7UQ23Z88"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
205
+ hook","id":"071-WH-B3QYERUW"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
206
+ Test hook","id":"071-WH-FH95KX3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
207
+ Test hook","id":"071-WH-BQ53FWKR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
208
+ hook","id":"071-WH-8522IHPY"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
209
+ hook","id":"071-WH-UI4DDPAV"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
210
+ hook","id":"071-WH-51RDNB5C"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
211
+ hook","id":"071-WH-XRI3VWA4"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
212
+ hook","id":"071-WH-OV26VN20"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
213
+ hook","id":"071-WH-JKDV6S0Z"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
214
+ hook","id":"071-WH-IFMCIB5A"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
215
+ Test hook","id":"071-WH-IU6R12ZF"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
216
+ Test hook","id":"071-WH-1H7L5ZCI"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"Test
217
+ Hook","id":"071-WH-L6UDV1UN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
218
+ hook","id":"071-WH-AJRIFECP"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
219
+ hook","id":"071-WH-YJ2WU6RT"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
220
+ hook","id":"071-WH-QRTVX85G"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
221
+ hook","id":"071-WH-1VHTN24O"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
222
+ hook","id":"071-WH-5Y5OZD4L"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
223
+ hook","id":"071-WH-J9NWFUMA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
224
+ hook","id":"071-WH-I2LQBYJD"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
225
+ Test hook","id":"071-WH-1PZF9UFM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
226
+ Test hook","id":"071-WH-HEIB7O0S"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
227
+ hook","id":"071-WH-FE6LDUM5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
228
+ hook","id":"071-WH-Z7N1C7TM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
229
+ Test hook","id":"071-WH-EWSTKQMJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
230
+ Test hook","id":"071-WH-2Y5C9ISE"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
231
+ hook","id":"071-WH-H2P1YLDR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
232
+ hook","id":"071-WH-GYOOIN9F"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
233
+ hook","id":"071-WH-MVMY3652"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
234
+ hook","id":"071-WH-ZWMI68PR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
235
+ hook","id":"071-WH-PXUXHDFB"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
236
+ hook","id":"071-WH-QJ8V4Y6"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
237
+ hook","id":"071-WH-884J1HQH"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
238
+ hook","id":"071-WH-RAAKULZA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
239
+ Test hook","id":"071-WH-S7VL0Z7R"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
240
+ Test hook","id":"071-WH-UQC6KCE4"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
241
+ hook","id":"071-WH-MKHUJAGA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
242
+ hook","id":"071-WH-FERO0FGQ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
243
+ hook","id":"071-WH-ELD916O5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
244
+ hook","id":"071-WH-2633UB4C"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
245
+ hook","id":"071-WH-1GLC38PA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
246
+ hook","id":"071-WH-R04RNU4F"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
247
+ hook","id":"071-WH-9MN33BBJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
248
+ hook","id":"071-WH-VHBY61ZG"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
249
+ hook","id":"071-WH-IWBVZIJL"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
250
+ hook","id":"071-WH-B5RTPW8G"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
251
+ hook","id":"071-WH-5HXRYE8L"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
252
+ hook","id":"071-WH-Y5PVDD7R"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
253
+ Test hook","id":"071-WH-5AR9MJJJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
254
+ Test hook","id":"071-WH-99KJFHBJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
255
+ hook","id":"071-WH-MHJMG09"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
256
+ hook","id":"071-WH-EHA8OUN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
257
+ hook","id":"071-WH-58JFZWN3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
258
+ hook","id":"071-WH-WKML9ZH5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
259
+ hook","id":"071-WH-D2447VN1"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
260
+ hook","id":"071-WH-4N1WLY1Q"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
261
+ hook","id":"071-WH-UERM4052"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
262
+ Test hook","id":"071-WH-SO8DU26D"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
263
+ Test hook","id":"071-WH-MN855CZY"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
264
+ hook","id":"071-WH-MJYI2MPK"},{"address":"http://requestbin.pmnts-sandbox.io/12xf8hq1","events":"chargeback:*","mode":"Test","authentication_username":"pmnts","authentication_password":"******","is_active":true,"name":"Chargebacks","id":"071-WH-IQITZMWZ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
265
+ hook","id":"071-WH-T9GWRGUJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
266
+ hook","id":"071-WH-WNUCMF2J"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
267
+ hook","id":"071-WH-5S8OZVD"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
268
+ hook","id":"071-WH-T6UKNVSE"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
269
+ hook","id":"071-WH-RCOHFEK2"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
270
+ hook","id":"071-WH-GX528GDG"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
271
+ Test hook","id":"071-WH-5LP21F2E"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
272
+ Test hook","id":"071-WH-O46GZKRR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
273
+ hook","id":"071-WH-G2ETIJ26"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
274
+ hook","id":"071-WH-ULA0ZNQ9"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
275
+ hook","id":"071-WH-G34SWHK5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
276
+ hook","id":"071-WH-EW17FI36"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
277
+ hook","id":"071-WH-RTR44MQK"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
278
+ hook","id":"071-WH-2BOHCZUI"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
279
+ hook","id":"071-WH-QASOXU5Z"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
280
+ hook","id":"071-WH-WP9F36IL"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
281
+ hook","id":"071-WH-5T42PXO0"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
282
+ hook","id":"071-WH-JSAWOF8I"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
283
+ Test hook","id":"071-WH-87QV0GRB"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
284
+ Test hook","id":"071-WH-PUTITJDA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
285
+ hook","id":"071-WH-E7I8SRMF"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
286
+ hook","id":"071-WH-VGOVU82W"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
287
+ hook","id":"071-WH-8YHLBVV5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
288
+ hook","id":"071-WH-IOM0BGHY"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
289
+ hook","id":"071-WH-G6SJ9HHZ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
290
+ hook","id":"071-WH-BE8J6WTV"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
291
+ hook","id":"071-WH-N69ITHIM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
292
+ Test hook","id":"071-WH-EVZ6T0YK"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
293
+ Test hook","id":"071-WH-LPN9BZVS"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":"test_user","authentication_password":"*********","is_active":null,"name":"Test
294
+ Hook","id":"071-WH-JGIDLXUF"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":"test_user","authentication_password":"***","is_active":null,"name":"Test
295
+ Hook 123","id":"071-WH-V11EEUW7"}],"errors":[],"test":true}'
176
296
  http_version:
177
- recorded_at: Wed, 02 May 2018 23:13:38 GMT
297
+ recorded_at: Mon, 29 Apr 2019 09:20:37 GMT
178
298
  recorded_with: VCR 3.0.3
@@ -23,7 +23,7 @@ http_interactions:
23
23
  message: OK
24
24
  headers:
25
25
  Date:
26
- - Wed, 02 May 2018 23:13:40 GMT
26
+ - Mon, 29 Apr 2019 09:20:37 GMT
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Transfer-Encoding:
@@ -32,26 +32,24 @@ http_interactions:
32
32
  - keep-alive
33
33
  Status:
34
34
  - 200 OK
35
- X-Rack-Cache:
36
- - invalidate, pass
37
35
  Cache-Control:
38
36
  - no-store
39
37
  X-Request-Version:
40
- - 1.16.9-3156@6c1a40b
38
+ - 1.16.9-3941@c1d8236
41
39
  X-Runtime:
42
- - '0.023336'
40
+ - '0.033894'
43
41
  Pragma:
44
42
  - no-cache
45
43
  X-Request-Id:
46
- - 3f8b77842373d1046aafec8e
44
+ - 40b0bc3f8aff4afaedf1759a
47
45
  X-Backend:
48
46
  - sbox-priv-gateway-a
49
47
  body:
50
48
  encoding: UTF-8
51
49
  string: '{"successful":true,"response":{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
52
- hook","id":"071-WH-XID631NJ"},"errors":[],"test":true}'
50
+ hook","id":"071-WH-DJDYU9ZA"},"errors":[],"test":true}'
53
51
  http_version:
54
- recorded_at: Wed, 02 May 2018 23:13:39 GMT
52
+ recorded_at: Mon, 29 Apr 2019 09:20:37 GMT
55
53
  - request:
56
54
  method: post
57
55
  uri: https://gateway.sandbox.fatzebra.com.au/v1.0/web_hooks
@@ -75,7 +73,7 @@ http_interactions:
75
73
  message: OK
76
74
  headers:
77
75
  Date:
78
- - Wed, 02 May 2018 23:13:40 GMT
76
+ - Mon, 29 Apr 2019 09:20:37 GMT
79
77
  Content-Type:
80
78
  - application/json; charset=utf-8
81
79
  Transfer-Encoding:
@@ -84,29 +82,27 @@ http_interactions:
84
82
  - keep-alive
85
83
  Status:
86
84
  - 200 OK
87
- X-Rack-Cache:
88
- - invalidate, pass
89
85
  Cache-Control:
90
86
  - no-store
91
87
  X-Request-Version:
92
- - 1.16.9-3156@6c1a40b
88
+ - 1.16.9-3941@c1d8236
93
89
  X-Runtime:
94
- - '0.025634'
90
+ - '0.032197'
95
91
  Pragma:
96
92
  - no-cache
97
93
  X-Request-Id:
98
- - 26479fcac602f21061714530
94
+ - 788e194760c63d4a05335f8c
99
95
  X-Backend:
100
96
  - sbox-priv-gateway-a
101
97
  body:
102
98
  encoding: UTF-8
103
99
  string: '{"successful":true,"response":{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
104
- hook","id":"071-WH-NVXD7G34"},"errors":[],"test":true}'
100
+ hook","id":"071-WH-KXDEUD81"},"errors":[],"test":true}'
105
101
  http_version:
106
- recorded_at: Wed, 02 May 2018 23:13:39 GMT
102
+ recorded_at: Mon, 29 Apr 2019 09:20:37 GMT
107
103
  - request:
108
104
  method: get
109
- uri: https://gateway.sandbox.fatzebra.com.au/v1.0/web_hooks?limit=10&offets=0&test=true
105
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/web_hooks?limit=10&offset=0&test=true
110
106
  body:
111
107
  encoding: US-ASCII
112
108
  string: ''
@@ -129,7 +125,7 @@ http_interactions:
129
125
  message: OK
130
126
  headers:
131
127
  Date:
132
- - Wed, 02 May 2018 23:13:40 GMT
128
+ - Mon, 29 Apr 2019 09:20:37 GMT
133
129
  Content-Type:
134
130
  - application/json; charset=utf-8
135
131
  Transfer-Encoding:
@@ -138,43 +134,167 @@ http_interactions:
138
134
  - keep-alive
139
135
  Status:
140
136
  - 200 OK
141
- X-Rack-Cache:
142
- - miss
143
137
  Cache-Control:
144
- - no-store, private
138
+ - no-store
145
139
  X-Request-Version:
146
- - 1.16.9-3156@6c1a40b
140
+ - 1.16.9-3941@c1d8236
147
141
  X-Runtime:
148
- - '0.021724'
142
+ - '0.041893'
149
143
  Pragma:
150
144
  - no-cache
151
145
  X-Request-Id:
152
- - e5c0b6f04d529a5e7e866605
146
+ - 0caf5083d70fb82e8b4e50d7
153
147
  X-Backend:
154
148
  - sbox-priv-gateway-a
155
149
  body:
156
150
  encoding: UTF-8
157
- string: '{"successful":true,"response":[{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
158
- hook","id":"071-WH-NVXD7G34"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
159
- hook","id":"071-WH-XID631NJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
160
- hook","id":"071-WH-JCLJC427"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
161
- hook","id":"071-WH-4U0O3LQ3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
162
- hook","id":"071-WH-HBWDF8EM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
163
- hook","id":"071-WH-YO64KR3X"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
164
- hook","id":"071-WH-1OVBGYE1"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
165
- hook","id":"071-WH-SQ0PZMZE"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
166
- hook","id":"071-WH-W0USUJ2M"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
167
- hook","id":"071-WH-RXF8W7I7"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
168
- hook","id":"071-WH-4LUQFJWC"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
169
- hook","id":"071-WH-QW5S2ZZH"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
170
- hook","id":"071-WH-ID3H5FKN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
171
- hook","id":"071-WH-65P737MQ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
172
- hook","id":"071-WH-SJ5IMZ0O"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
173
- hook","id":"071-WH-5UWU3B16"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
174
- hook","id":"071-WH-1K3BR0FQ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
175
- hook","id":"071-WH-BDGKELWC"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
151
+ string: '{"successful":true,"response":[{"address":"https://nosnch.in/cc300bb516","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":true,"name":"Test","id":"071-WH-3W2KM1L3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
152
+ hook","id":"071-WH-59WBB09S"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
176
153
  hook","id":"071-WH-B4PU09SR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
177
- hook","id":"071-WH-59WBB09S"},{"address":"https://requestb.in/1jkvbv31","events":"*","mode":"Test","authentication_username":"","authentication_password":"","is_active":true,"name":"Test","id":"071-WH-17G8TV1C"},{"address":"https://nosnch.in/cc300bb516","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":true,"name":"Test","id":"071-WH-3W2KM1L3"}],"errors":[],"test":true}'
154
+ hook","id":"071-WH-BDGKELWC"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
155
+ hook","id":"071-WH-1K3BR0FQ"},{"address":"http://requestbin.pmnts-sandbox.io/15itqsp1","events":"*","mode":"Test","authentication_username":"pmnts","authentication_password":"******","is_active":true,"name":"Test","id":"071-WH-17G8TV1C"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
156
+ hook","id":"071-WH-H4GJOG0N"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
157
+ hook","id":"071-WH-VTOHWEW3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
158
+ hook","id":"071-WH-5W9QOBWP"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
159
+ hook","id":"071-WH-AJDNL1B9"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
160
+ hook","id":"071-WH-GVPQIPSU"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
161
+ hook","id":"071-WH-DJDYU9ZA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
162
+ hook","id":"071-WH-KXDEUD81"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
163
+ hook","id":"071-WH-5UWU3B16"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
164
+ hook","id":"071-WH-SJ5IMZ0O"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
165
+ hook","id":"071-WH-65P737MQ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
166
+ hook","id":"071-WH-ID3H5FKN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
167
+ hook","id":"071-WH-QW5S2ZZH"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
168
+ hook","id":"071-WH-4LUQFJWC"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
169
+ hook","id":"071-WH-RXF8W7I7"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
170
+ hook","id":"071-WH-W0USUJ2M"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
171
+ hook","id":"071-WH-SQ0PZMZE"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
172
+ hook","id":"071-WH-1OVBGYE1"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
173
+ hook","id":"071-WH-YO64KR3X"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
174
+ hook","id":"071-WH-HBWDF8EM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
175
+ hook","id":"071-WH-4U0O3LQ3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
176
+ hook","id":"071-WH-JCLJC427"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
177
+ hook","id":"071-WH-XID631NJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
178
+ hook","id":"071-WH-NVXD7G34"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
179
+ Test hook","id":"071-WH-8I8NRWR1"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
180
+ Test hook","id":"071-WH-H9B1G0OJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
181
+ hook","id":"071-WH-8ZYOZ6R7"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
182
+ hook","id":"071-WH-7H3RDH30"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
183
+ hook","id":"071-WH-78NOPBD3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
184
+ hook","id":"071-WH-HUN8MZFS"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
185
+ hook","id":"071-WH-DK8OHKYJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
186
+ hook","id":"071-WH-GJTNVHDA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
187
+ hook","id":"071-WH-P3A1D3UV"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
188
+ Test hook","id":"071-WH-KJHS8C3I"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
189
+ Test hook","id":"071-WH-1GCPXGEW"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
190
+ hook","id":"071-WH-FB5K3I7L"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
191
+ hook","id":"071-WH-EOCT20ER"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
192
+ hook","id":"071-WH-Y54NGCRI"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
193
+ hook","id":"071-WH-Y6XERW9T"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
194
+ hook","id":"071-WH-BQ6Z8QNN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
195
+ hook","id":"071-WH-FNXJDTHV"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
196
+ hook","id":"071-WH-KY73XCEI"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
197
+ Test hook","id":"071-WH-1IT0ODXR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
198
+ Test hook","id":"071-WH-O3JYYZP6"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"Test
199
+ Hook","id":"071-WH-7RNNJP9T"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"Test
200
+ Hook","id":"071-WH-MJZN06HT"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
201
+ hook","id":"071-WH-CQIOMJQ5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
202
+ hook","id":"071-WH-OBDDB2M5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
203
+ hook","id":"071-WH-5SFTPD5A"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
204
+ hook","id":"071-WH-COB7WARB"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
205
+ hook","id":"071-WH-33N0SGUL"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
206
+ hook","id":"071-WH-7UQ23Z88"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
207
+ hook","id":"071-WH-B3QYERUW"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
208
+ Test hook","id":"071-WH-FH95KX3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
209
+ Test hook","id":"071-WH-BQ53FWKR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
210
+ hook","id":"071-WH-8522IHPY"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
211
+ hook","id":"071-WH-UI4DDPAV"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
212
+ hook","id":"071-WH-51RDNB5C"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
213
+ hook","id":"071-WH-XRI3VWA4"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
214
+ hook","id":"071-WH-OV26VN20"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
215
+ hook","id":"071-WH-JKDV6S0Z"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
216
+ hook","id":"071-WH-IFMCIB5A"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
217
+ Test hook","id":"071-WH-IU6R12ZF"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
218
+ Test hook","id":"071-WH-1H7L5ZCI"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"Test
219
+ Hook","id":"071-WH-L6UDV1UN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
220
+ hook","id":"071-WH-AJRIFECP"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
221
+ hook","id":"071-WH-YJ2WU6RT"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
222
+ hook","id":"071-WH-QRTVX85G"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
223
+ hook","id":"071-WH-1VHTN24O"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
224
+ hook","id":"071-WH-5Y5OZD4L"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
225
+ hook","id":"071-WH-J9NWFUMA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
226
+ hook","id":"071-WH-I2LQBYJD"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
227
+ Test hook","id":"071-WH-1PZF9UFM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
228
+ Test hook","id":"071-WH-HEIB7O0S"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
229
+ hook","id":"071-WH-FE6LDUM5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
230
+ hook","id":"071-WH-Z7N1C7TM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
231
+ Test hook","id":"071-WH-EWSTKQMJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
232
+ Test hook","id":"071-WH-2Y5C9ISE"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
233
+ hook","id":"071-WH-H2P1YLDR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
234
+ hook","id":"071-WH-GYOOIN9F"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
235
+ hook","id":"071-WH-MVMY3652"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
236
+ hook","id":"071-WH-ZWMI68PR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
237
+ hook","id":"071-WH-PXUXHDFB"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
238
+ hook","id":"071-WH-QJ8V4Y6"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
239
+ hook","id":"071-WH-884J1HQH"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
240
+ hook","id":"071-WH-RAAKULZA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
241
+ Test hook","id":"071-WH-S7VL0Z7R"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
242
+ Test hook","id":"071-WH-UQC6KCE4"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
243
+ hook","id":"071-WH-MKHUJAGA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
244
+ hook","id":"071-WH-FERO0FGQ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
245
+ hook","id":"071-WH-ELD916O5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
246
+ hook","id":"071-WH-2633UB4C"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
247
+ hook","id":"071-WH-1GLC38PA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
248
+ hook","id":"071-WH-R04RNU4F"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
249
+ hook","id":"071-WH-9MN33BBJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
250
+ hook","id":"071-WH-VHBY61ZG"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
251
+ hook","id":"071-WH-IWBVZIJL"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
252
+ hook","id":"071-WH-B5RTPW8G"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
253
+ hook","id":"071-WH-5HXRYE8L"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
254
+ hook","id":"071-WH-Y5PVDD7R"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
255
+ Test hook","id":"071-WH-5AR9MJJJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
256
+ Test hook","id":"071-WH-99KJFHBJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
257
+ hook","id":"071-WH-MHJMG09"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
258
+ hook","id":"071-WH-EHA8OUN"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
259
+ hook","id":"071-WH-58JFZWN3"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
260
+ hook","id":"071-WH-WKML9ZH5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
261
+ hook","id":"071-WH-D2447VN1"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
262
+ hook","id":"071-WH-4N1WLY1Q"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
263
+ hook","id":"071-WH-UERM4052"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
264
+ Test hook","id":"071-WH-SO8DU26D"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
265
+ Test hook","id":"071-WH-MN855CZY"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
266
+ hook","id":"071-WH-MJYI2MPK"},{"address":"http://requestbin.pmnts-sandbox.io/12xf8hq1","events":"chargeback:*","mode":"Test","authentication_username":"pmnts","authentication_password":"******","is_active":true,"name":"Chargebacks","id":"071-WH-IQITZMWZ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
267
+ hook","id":"071-WH-T9GWRGUJ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
268
+ hook","id":"071-WH-WNUCMF2J"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
269
+ hook","id":"071-WH-5S8OZVD"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
270
+ hook","id":"071-WH-T6UKNVSE"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
271
+ hook","id":"071-WH-RCOHFEK2"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
272
+ hook","id":"071-WH-GX528GDG"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
273
+ Test hook","id":"071-WH-5LP21F2E"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
274
+ Test hook","id":"071-WH-O46GZKRR"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
275
+ hook","id":"071-WH-G2ETIJ26"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
276
+ hook","id":"071-WH-ULA0ZNQ9"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
277
+ hook","id":"071-WH-G34SWHK5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
278
+ hook","id":"071-WH-EW17FI36"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
279
+ hook","id":"071-WH-RTR44MQK"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
280
+ hook","id":"071-WH-2BOHCZUI"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
281
+ hook","id":"071-WH-QASOXU5Z"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
282
+ hook","id":"071-WH-WP9F36IL"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
283
+ hook","id":"071-WH-5T42PXO0"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
284
+ hook","id":"071-WH-JSAWOF8I"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
285
+ Test hook","id":"071-WH-87QV0GRB"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
286
+ Test hook","id":"071-WH-PUTITJDA"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
287
+ hook","id":"071-WH-E7I8SRMF"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
288
+ hook","id":"071-WH-VGOVU82W"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
289
+ hook","id":"071-WH-8YHLBVV5"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
290
+ hook","id":"071-WH-IOM0BGHY"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
291
+ hook","id":"071-WH-G6SJ9HHZ"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
292
+ hook","id":"071-WH-BE8J6WTV"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"test
293
+ hook","id":"071-WH-N69ITHIM"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
294
+ Test hook","id":"071-WH-EVZ6T0YK"},{"address":"http://stage.example.com.au/v1/api/hook_listener","events":"*","mode":"Test","authentication_username":null,"authentication_password":"","is_active":null,"name":"New
295
+ Test hook","id":"071-WH-LPN9BZVS"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":"test_user","authentication_password":"*********","is_active":null,"name":"Test
296
+ Hook","id":"071-WH-JGIDLXUF"},{"address":"https://www.your-server.com/payment/hook","events":"*","mode":"Test","authentication_username":"test_user","authentication_password":"***","is_active":null,"name":"Test
297
+ Hook 123","id":"071-WH-V11EEUW7"}],"errors":[],"test":true}'
178
298
  http_version:
179
- recorded_at: Wed, 02 May 2018 23:13:39 GMT
299
+ recorded_at: Mon, 29 Apr 2019 09:20:37 GMT
180
300
  recorded_with: VCR 3.0.3