adyen-ruby-api-library 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.travis.yml +14 -0
  4. data/Gemfile +12 -0
  5. data/LICENSE +21 -0
  6. data/README.md +140 -0
  7. data/Rakefile +6 -0
  8. data/adyen-ruby-api-library.gemspec +28 -0
  9. data/bin/console +13 -0
  10. data/bin/setup +8 -0
  11. data/docs/checkout.html +111 -0
  12. data/docs/index.html +50 -0
  13. data/docs/install-library.html +61 -0
  14. data/docs/javascripts/prism.js +5 -0
  15. data/docs/javascripts/scale.fix.js +17 -0
  16. data/docs/marketpay.html +169 -0
  17. data/docs/params.json +1 -0
  18. data/docs/payment.html +106 -0
  19. data/docs/payout.html +135 -0
  20. data/docs/recurring.html +113 -0
  21. data/docs/stylesheets/github-light.css +115 -0
  22. data/docs/stylesheets/prism.css +140 -0
  23. data/docs/stylesheets/styles.css +324 -0
  24. data/docs/using-library.html +67 -0
  25. data/lib/adyen-ruby-api-library.rb +21 -0
  26. data/lib/adyen/client.rb +174 -0
  27. data/lib/adyen/errors.rb +76 -0
  28. data/lib/adyen/services/checkout.rb +50 -0
  29. data/lib/adyen/services/checkout_utility.rb +16 -0
  30. data/lib/adyen/services/marketpay.rb +92 -0
  31. data/lib/adyen/services/payments.rb +23 -0
  32. data/lib/adyen/services/payouts.rb +21 -0
  33. data/lib/adyen/services/recurring.rb +19 -0
  34. data/lib/adyen/services/service.rb +19 -0
  35. data/lib/adyen/version.rb +4 -0
  36. data/spec/account_spec.rb +27 -0
  37. data/spec/checkout_spec.rb +94 -0
  38. data/spec/checkout_utility_spec.rb +27 -0
  39. data/spec/client_spec.rb +40 -0
  40. data/spec/fund_spec.rb +19 -0
  41. data/spec/mocks/requests/Account/close_account.json +3 -0
  42. data/spec/mocks/requests/Account/close_account_holder.json +3 -0
  43. data/spec/mocks/requests/Account/create_account.json +3 -0
  44. data/spec/mocks/requests/Account/create_account_holder.json +15 -0
  45. data/spec/mocks/requests/Account/delete_bank_accounts.json +6 -0
  46. data/spec/mocks/requests/Account/delete_shareholders.json +6 -0
  47. data/spec/mocks/requests/Account/get_account_holder.json +3 -0
  48. data/spec/mocks/requests/Account/get_uploaded_documents.json +4 -0
  49. data/spec/mocks/requests/Account/suspend_account_holder.json +3 -0
  50. data/spec/mocks/requests/Account/un_suspend_account_holder.json +3 -0
  51. data/spec/mocks/requests/Account/update_account.json +7 -0
  52. data/spec/mocks/requests/Account/update_account_holder.json +33 -0
  53. data/spec/mocks/requests/Account/update_account_holder_state.json +6 -0
  54. data/spec/mocks/requests/Account/upload_document.json +9 -0
  55. data/spec/mocks/requests/Checkout/payment-details.json +18 -0
  56. data/spec/mocks/requests/Checkout/payment-result.json +3 -0
  57. data/spec/mocks/requests/Checkout/payment_methods.json +3 -0
  58. data/spec/mocks/requests/Checkout/payment_session.json +15 -0
  59. data/spec/mocks/requests/Checkout/payments.json +17 -0
  60. data/spec/mocks/requests/Checkout/verify.json +3 -0
  61. data/spec/mocks/requests/CheckoutUtility/origin_keys.json +7 -0
  62. data/spec/mocks/requests/Fund/account_holder_balance.json +3 -0
  63. data/spec/mocks/requests/Fund/account_holder_transaction_list.json +16 -0
  64. data/spec/mocks/requests/Fund/payout_account_holder.json +10 -0
  65. data/spec/mocks/requests/Fund/refund_not_paid_out_transfers.json +4 -0
  66. data/spec/mocks/requests/Fund/setup_beneficiary.json +5 -0
  67. data/spec/mocks/requests/Fund/transfer_funds.json +9 -0
  68. data/spec/mocks/requests/Notification/create_notification_configuration.json +20 -0
  69. data/spec/mocks/requests/Notification/delete_notification_configurations.json +6 -0
  70. data/spec/mocks/requests/Notification/get_notification_configuration.json +3 -0
  71. data/spec/mocks/requests/Notification/get_notification_configuration_list.json +1 -0
  72. data/spec/mocks/requests/Notification/test_notification_configuration.json +4 -0
  73. data/spec/mocks/requests/Notification/update_notification_configuration.json +26 -0
  74. data/spec/mocks/requests/Payment/adjust_authorisation.json +12 -0
  75. data/spec/mocks/requests/Payment/authorise.json +28 -0
  76. data/spec/mocks/requests/Payment/authorise3d.json +6 -0
  77. data/spec/mocks/requests/Payment/cancel.json +4 -0
  78. data/spec/mocks/requests/Payment/cancel_or_refund.json +4 -0
  79. data/spec/mocks/requests/Payment/capture.json +8 -0
  80. data/spec/mocks/requests/Payment/refund.json +8 -0
  81. data/spec/mocks/requests/Payout/confirm_third_party.json +4 -0
  82. data/spec/mocks/requests/Payout/decline_third_party.json +4 -0
  83. data/spec/mocks/requests/Payout/store_detail.json +33 -0
  84. data/spec/mocks/requests/Payout/store_detail_and_submit_third_party.json +33 -0
  85. data/spec/mocks/requests/Payout/submit_third_party.json +22 -0
  86. data/spec/mocks/requests/Recurring/disable.json +5 -0
  87. data/spec/mocks/requests/Recurring/list_recurring_details.json +4 -0
  88. data/spec/mocks/requests/Recurring/store_token.json +15 -0
  89. data/spec/mocks/responses/Account/close_account.json +5 -0
  90. data/spec/mocks/responses/Account/close_account_holder.json +7 -0
  91. data/spec/mocks/responses/Account/create_account.json +7 -0
  92. data/spec/mocks/responses/Account/create_account_holder.json +116 -0
  93. data/spec/mocks/responses/Account/delete_bank_accounts.json +4 -0
  94. data/spec/mocks/responses/Account/delete_shareholders.json +4 -0
  95. data/spec/mocks/responses/Account/get_account_holder.json +71 -0
  96. data/spec/mocks/responses/Account/get_uploaded_documents.json +16 -0
  97. data/spec/mocks/responses/Account/suspend_account_holder.json +24 -0
  98. data/spec/mocks/responses/Account/un_suspend_account_holder.json +24 -0
  99. data/spec/mocks/responses/Account/update_account.json +9 -0
  100. data/spec/mocks/responses/Account/update_account_holder.json +95 -0
  101. data/spec/mocks/responses/Account/update_account_holder_state.json +27 -0
  102. data/spec/mocks/responses/Account/upload_document.json +77 -0
  103. data/spec/mocks/responses/Checkout/payment-details.json +14 -0
  104. data/spec/mocks/responses/Checkout/payment-result.json +4 -0
  105. data/spec/mocks/responses/Checkout/payment_methods.json +66 -0
  106. data/spec/mocks/responses/Checkout/payment_session.json +572 -0
  107. data/spec/mocks/responses/Checkout/payments.json +95 -0
  108. data/spec/mocks/responses/Checkout/verify.json +121 -0
  109. data/spec/mocks/responses/CheckoutUtility/origin_keys.json +7 -0
  110. data/spec/mocks/responses/Fund/account_holder_balance.json +47 -0
  111. data/spec/mocks/responses/Fund/account_holder_transaction_list.json +73 -0
  112. data/spec/mocks/responses/Fund/payout_account_holder.json +6 -0
  113. data/spec/mocks/responses/Fund/refund_not_paid_out_transfers.json +5 -0
  114. data/spec/mocks/responses/Fund/setup_beneficiary.json +5 -0
  115. data/spec/mocks/responses/Fund/transfer_funds.json +6 -0
  116. data/spec/mocks/responses/Notification/create_notification_configuration.json +41 -0
  117. data/spec/mocks/responses/Notification/delete_notification_configurations.json +23 -0
  118. data/spec/mocks/responses/Notification/get_notification_configuration.json +41 -0
  119. data/spec/mocks/responses/Notification/get_notification_configuration_list.json +65 -0
  120. data/spec/mocks/responses/Notification/test_notification_configuration.json +49 -0
  121. data/spec/mocks/responses/Notification/update_notification_configuration.json +47 -0
  122. data/spec/mocks/responses/Payment/adjust_authorisation.json +4 -0
  123. data/spec/mocks/responses/Payment/authorise.json +95 -0
  124. data/spec/mocks/responses/Payment/authorise3d.json +30 -0
  125. data/spec/mocks/responses/Payment/cancel.json +4 -0
  126. data/spec/mocks/responses/Payment/cancel_or_refund.json +4 -0
  127. data/spec/mocks/responses/Payment/capture.json +4 -0
  128. data/spec/mocks/responses/Payment/refund.json +4 -0
  129. data/spec/mocks/responses/Payout/confirm_third_party.json +4 -0
  130. data/spec/mocks/responses/Payout/decline_third_party.json +4 -0
  131. data/spec/mocks/responses/Payout/store_detail.json +5 -0
  132. data/spec/mocks/responses/Payout/store_detail_and_submit_third_party.json +8 -0
  133. data/spec/mocks/responses/Payout/submit_third_party.json +8 -0
  134. data/spec/mocks/responses/Recurring/disable.json +30 -0
  135. data/spec/mocks/responses/Recurring/list_recurring_details.json +62 -0
  136. data/spec/mocks/responses/Recurring/store_token.json +7 -0
  137. data/spec/notification_spec.rb +19 -0
  138. data/spec/payments_spec.rb +20 -0
  139. data/spec/payouts_spec.rb +18 -0
  140. data/spec/recurring_spec.rb +17 -0
  141. data/spec/spec_helper.rb +94 -0
  142. metadata +246 -0
@@ -0,0 +1,95 @@
1
+ {
2
+ "additionalData": {
3
+ "liabilityShift": "true",
4
+ "fraudResultType": "GREEN",
5
+ "authCode": "43733",
6
+ "avsResult": "4 AVS not supported for this card type",
7
+ "cardHolderName": "Holder",
8
+ "cardSummary": "1111",
9
+ "fraudManualReview": "false",
10
+ "threeDOffered": "true",
11
+ "refusalReasonRaw": "AUTHORISED",
12
+ "expiryDate": "8/2018",
13
+ "cvcResult": "1 Matches",
14
+ "cardBin": "411111",
15
+ "avsResultRaw": "4",
16
+ "threeDAuthenticated": "false",
17
+ "paymentMethod": "visa",
18
+ "cvcResultRaw": "1",
19
+ "acquirerCode": "TestPmmAcquirer",
20
+ "acquirerReference": "7F59FSE1M6K"
21
+ },
22
+ "fraudResult": {
23
+ "accountScore": 25,
24
+ "results": [{
25
+ "FraudCheckResult": {
26
+ "accountScore": 8,
27
+ "checkId": 2,
28
+ "name": "CardChunkUsage"
29
+ }
30
+ }, {
31
+ "FraudCheckResult": {
32
+ "accountScore": 5,
33
+ "checkId": 3,
34
+ "name": "PaymentDetailUsage"
35
+ }
36
+ }, {
37
+ "FraudCheckResult": {
38
+ "accountScore": 12,
39
+ "checkId": 4,
40
+ "name": "HolderNameUsage"
41
+ }
42
+ }, {
43
+ "FraudCheckResult": {
44
+ "accountScore": 0,
45
+ "checkId": 1,
46
+ "name": "PaymentDetailRefCheck"
47
+ }
48
+ }, {
49
+ "FraudCheckResult": {
50
+ "accountScore": 0,
51
+ "checkId": 13,
52
+ "name": "IssuerRefCheck"
53
+ }
54
+ }, {
55
+ "FraudCheckResult": {
56
+ "accountScore": 0,
57
+ "checkId": 15,
58
+ "name": "IssuingCountryReferral"
59
+ }
60
+ }, {
61
+ "FraudCheckResult": {
62
+ "accountScore": 0,
63
+ "checkId": 27,
64
+ "name": "PmOwnerRefCheck"
65
+ }
66
+ }, {
67
+ "FraudCheckResult": {
68
+ "accountScore": 0,
69
+ "checkId": 41,
70
+ "name": "PaymentDetailNonFraudRefCheck"
71
+ }
72
+ }, {
73
+ "FraudCheckResult": {
74
+ "accountScore": 0,
75
+ "checkId": 10,
76
+ "name": "HolderNameContainsNumber"
77
+ }
78
+ }, {
79
+ "FraudCheckResult": {
80
+ "accountScore": 0,
81
+ "checkId": 11,
82
+ "name": "HolderNameIsOneWord"
83
+ }
84
+ }, {
85
+ "FraudCheckResult": {
86
+ "accountScore": 0,
87
+ "checkId": 25,
88
+ "name": "CVCAuthResultCheck"
89
+ }
90
+ }]
91
+ },
92
+ "pspReference": "7924835492819808",
93
+ "resultCode": "Authorised",
94
+ "authCode": "69746"
95
+ }
@@ -0,0 +1,121 @@
1
+ {
2
+ "additionalData": {
3
+ "fraudResultType": "GREEN",
4
+ "authCode": "4798",
5
+ "avsResult": "4 AVS not supported for this card type",
6
+ "riskProfile": "ColinRood",
7
+ "fraudManualReview": "false",
8
+ "refusalReasonRaw": "AUTHORISED",
9
+ "cvcResult": "1 Matches",
10
+ "aliasType": "Default",
11
+ "avsResultRaw": "4",
12
+ "alias": "H167852639363479",
13
+ "cvcResultRaw": "1",
14
+ "acquirerCode": "TestPmmAcquirer",
15
+ "acquirerReference": "7F5HKVQO5PN"
16
+ },
17
+ "fraudResult": {
18
+ "accountScore": 73,
19
+ "results": [
20
+ {
21
+ "FraudCheckResult": {
22
+ "accountScore": 0,
23
+ "checkId": 0
24
+ }
25
+ },
26
+ {
27
+ "FraudCheckResult": {
28
+ "accountScore": 0,
29
+ "checkId": 0
30
+ }
31
+ },
32
+ {
33
+ "FraudCheckResult": {
34
+ "accountScore": 0,
35
+ "checkId": 0
36
+ }
37
+ },
38
+ {
39
+ "FraudCheckResult": {
40
+ "accountScore": 0,
41
+ "checkId": 0
42
+ }
43
+ },
44
+ {
45
+ "FraudCheckResult": {
46
+ "accountScore": 0,
47
+ "checkId": 0
48
+ }
49
+ },
50
+ {
51
+ "FraudCheckResult": {
52
+ "accountScore": 0,
53
+ "checkId": 0
54
+ }
55
+ },
56
+ {
57
+ "FraudCheckResult": {
58
+ "accountScore": 0,
59
+ "checkId": 0
60
+ }
61
+ },
62
+ {
63
+ "FraudCheckResult": {
64
+ "accountScore": 0,
65
+ "checkId": 0
66
+ }
67
+ },
68
+ {
69
+ "FraudCheckResult": {
70
+ "accountScore": 0,
71
+ "checkId": 0
72
+ }
73
+ },
74
+ {
75
+ "FraudCheckResult": {
76
+ "accountScore": 0,
77
+ "checkId": 0
78
+ }
79
+ },
80
+ {
81
+ "FraudCheckResult": {
82
+ "accountScore": 0,
83
+ "checkId": 0
84
+ }
85
+ },
86
+ {
87
+ "FraudCheckResult": {
88
+ "accountScore": 0,
89
+ "checkId": 0
90
+ }
91
+ },
92
+ {
93
+ "FraudCheckResult": {
94
+ "accountScore": 0,
95
+ "checkId": 0
96
+ }
97
+ },
98
+ {
99
+ "FraudCheckResult": {
100
+ "accountScore": 0,
101
+ "checkId": 0
102
+ }
103
+ },
104
+ {
105
+ "FraudCheckResult": {
106
+ "accountScore": 0,
107
+ "checkId": 0
108
+ }
109
+ },
110
+ {
111
+ "FraudCheckResult": {
112
+ "accountScore": 0,
113
+ "checkId": 0
114
+ }
115
+ }
116
+ ]
117
+ },
118
+ "pspReference": "8835169145993935",
119
+ "authResponse": "Authorised",
120
+ "merchantReference": "Localhost checkout"
121
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "originKeys": {
3
+ "https://www.your-domain1.com": "pub.v2.7814286629520534.aHR0cHM6Ly93d3cueW91ci1kb21haW4xLmNvbQ.UEwIBmW9-c_uXo5wSEr2w8Hz8hVIpujXPHjpcEse3xI",
4
+ "https://www.your-domain3.com": "pub.v2.7814286629520534.aHR0cHM6Ly93d3cueW91ci1kb21haW4zLmNvbQ.fUvflu-YIdZSsLEH8Qqmr7ksE4ag_NYiiMXK0s6aq_4",
5
+ "https://www.your-domain2.com": "pub.v2.7814286629520534.aHR0cHM6Ly93d3cueW91ci1kb21haW4yLmNvbQ.EP6eXBJKk0t7-QIUl6e_b1qMuMHGepxG_SlUqxAYrfY"
6
+ }
7
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "totalBalance":{
3
+ "pendingBalance":[
4
+ {
5
+ "Amount":{
6
+ "value":42058,
7
+ "currency":"EUR"
8
+ }
9
+ }
10
+ ],
11
+ "balance":[
12
+ {
13
+ "Amount":{
14
+ "currency":"EUR",
15
+ "value":99792
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ "pspReference":"9914719436100053",
21
+ "resultCode":"Success",
22
+ "balancePerAccount":[
23
+ {
24
+ "AccountDetailBalance":{
25
+ "detailBalance":{
26
+ "pendingBalance":[
27
+ {
28
+ "Amount":{
29
+ "value":42058,
30
+ "currency":"EUR"
31
+ }
32
+ }
33
+ ],
34
+ "balance":[
35
+ {
36
+ "Amount":{
37
+ "currency":"EUR",
38
+ "value":99792
39
+ }
40
+ }
41
+ ]
42
+ },
43
+ "accountCode":"118731451"
44
+ }
45
+ }
46
+ ]
47
+ }
@@ -0,0 +1,73 @@
1
+ {
2
+ "pspReference":"9914721175530029",
3
+ "accountTransactionLists":[
4
+ {
5
+ "AccountTransactionList":{
6
+ "accountCode":"118731451",
7
+ "transactions":[
8
+ {
9
+ "Transaction":{
10
+ "amount":{
11
+ "currency":"EUR",
12
+ "value":2300
13
+ },
14
+ "creationDate":"2016-08-19T13:43:35+02:00",
15
+ "description":"12345 - Test",
16
+ "pspReference":"9914716081770032",
17
+ "merchantReference":"testReference",
18
+ "capturePspReference":"9914710081779954",
19
+ "captureMerchantReference":"testCaptureReference",
20
+ "transactionStatus":"PendingCredit"
21
+ }
22
+ },
23
+ {
24
+ "Transaction":{
25
+ "amount":{
26
+ "currency":"EUR",
27
+ "value":2300
28
+ },
29
+ "creationDate":"2016-08-19T13:43:21+02:00",
30
+ "description":"12345 - Test",
31
+ "pspReference":"9914716081760025",
32
+ "merchantReference":"testReference2",
33
+ "capturePspReference":"9914799081779988",
34
+ "captureMerchantReference":"testCaptureReference2",
35
+ "transactionStatus":"Credited"
36
+ }
37
+ },
38
+ {
39
+ "Transaction":{
40
+ "amount":{
41
+ "currency":"EUR",
42
+ "value":2300
43
+ },
44
+ "creationDate":"2016-08-19T13:40:36+02:00",
45
+ "description":"12345 - Test",
46
+ "pspReference":"9914716081730010",
47
+ "merchantReference":"testReference3",
48
+ "capturePspReference":"9914710081111111",
49
+ "captureMerchantReference":"testCaptureReference3",
50
+ "transactionStatus":"Credited"
51
+ }
52
+ },
53
+ {
54
+ "Transaction":{
55
+ "amount":{
56
+ "currency":"EUR",
57
+ "value":2300
58
+ },
59
+ "creationDate":"2016-08-19T11:43:32+02:00",
60
+ "description":"12345 - Test",
61
+ "pspReference":"9914716006590028",
62
+ "merchantReference":"testReference4",
63
+ "capturePspReference":"9914654381771234",
64
+ "captureMerchantReference":"testCaptureReference4",
65
+ "transactionStatus":"Debited"
66
+ }
67
+ }
68
+ ]
69
+ }
70
+ }
71
+ ],
72
+ "resultCode":"Success"
73
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "pspReference": "9915090894325643",
3
+ "submittedAsync": "false",
4
+ "bankAccountUUID": "testbankaccount",
5
+ "merchantReference": "MerchantReference"
6
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "pspReference": "9915090894215323",
3
+ "submittedAsync": "false",
4
+ "resultCode": "Failed"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "pspReference": "9914860354282596",
3
+ "submittedAsync": "false",
4
+ "resultCode": "Success"
5
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "pspReference": "9915090893984580",
3
+ "submittedAsync": "false",
4
+ "merchantReference": "MerchantReference",
5
+ "resultCode": "Received"
6
+ }
@@ -0,0 +1,41 @@
1
+ /*
2
+ * ######
3
+ * ######
4
+ * ############ ####( ###### #####. ###### ############ ############
5
+ * ############# #####( ###### #####. ###### ############# #############
6
+ * ###### #####( ###### #####. ###### ##### ###### ##### ######
7
+ * ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
8
+ * ###### ###### #####( ###### #####. ###### ##### ##### ######
9
+ * ############# ############# ############# ############# ##### ######
10
+ * ############ ############ ############# ############ ##### ######
11
+ * ######
12
+ * #############
13
+ * ############
14
+ *
15
+ *
16
+ * Copyright (c) 2017 Adyen B.V.
17
+ * This file is open source and available under the MIT license.
18
+ * See the LICENSE file for more info.
19
+ */
20
+ {
21
+ "pspReference": "8515077331535427",
22
+ "submittedAsync": "false",
23
+ "configurationDetails": {
24
+ "active": "true",
25
+ "apiVersion": 1,
26
+ "description": "TestBas",
27
+ "eventConfigs": [
28
+ {
29
+ "NotificationEventConfiguration": {
30
+ "eventType": "ACCOUNT_HOLDER_STATUS_CHANGE",
31
+ "includeMode": "INCLUDE"
32
+ }
33
+ }
34
+ ],
35
+ "messageFormat": "SOAP",
36
+ "notificationId": 157,
37
+ "notifyURL": "https://cal-test.adyen.com/cal/services/ViasNotification/handleGenericEvent",
38
+ "sendActionHeader": "true",
39
+ "sslProtocol": "SSLInsecureCiphers"
40
+ }
41
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * ######
3
+ * ######
4
+ * ############ ####( ###### #####. ###### ############ ############
5
+ * ############# #####( ###### #####. ###### ############# #############
6
+ * ###### #####( ###### #####. ###### ##### ###### ##### ######
7
+ * ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
8
+ * ###### ###### #####( ###### #####. ###### ##### ##### ######
9
+ * ############# ############# ############# ############# ##### ######
10
+ * ############ ############ ############# ############ ##### ######
11
+ * ######
12
+ * #############
13
+ * ############
14
+ *
15
+ *
16
+ * Copyright (c) 2017 Adyen B.V.
17
+ * This file is open source and available under the MIT license.
18
+ * See the LICENSE file for more info.
19
+ */
20
+ {
21
+ "pspReference": "8515078085249090",
22
+ "submittedAsync": "false"
23
+ }
@@ -0,0 +1,41 @@
1
+ /*
2
+ * ######
3
+ * ######
4
+ * ############ ####( ###### #####. ###### ############ ############
5
+ * ############# #####( ###### #####. ###### ############# #############
6
+ * ###### #####( ###### #####. ###### ##### ###### ##### ######
7
+ * ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
8
+ * ###### ###### #####( ###### #####. ###### ##### ##### ######
9
+ * ############# ############# ############# ############# ##### ######
10
+ * ############ ############ ############# ############ ##### ######
11
+ * ######
12
+ * #############
13
+ * ############
14
+ *
15
+ *
16
+ * Copyright (c) 2017 Adyen B.V.
17
+ * This file is open source and available under the MIT license.
18
+ * See the LICENSE file for more info.
19
+ */
20
+ {
21
+ "pspReference": "8815078078131377",
22
+ "submittedAsync": "false",
23
+ "configurationDetails": {
24
+ "active": "true",
25
+ "apiVersion": 1,
26
+ "description": "TestBas",
27
+ "eventConfigs": [
28
+ {
29
+ "NotificationEventConfiguration": {
30
+ "eventType": "ACCOUNT_HOLDER_STATUS_CHANGE",
31
+ "includeMode": "INCLUDE"
32
+ }
33
+ }
34
+ ],
35
+ "messageFormat": "SOAP",
36
+ "notificationId": 157,
37
+ "notifyURL": "https://cal-test.adyen.com/cal/services/ViasNotification/handleGenericEvent",
38
+ "sendActionHeader": "true",
39
+ "sslProtocol": "SSLInsecureCiphers"
40
+ }
41
+ }