adyen-ruby-api-library 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +14 -0
- data/Gemfile +12 -0
- data/LICENSE +21 -0
- data/README.md +140 -0
- data/Rakefile +6 -0
- data/adyen-ruby-api-library.gemspec +28 -0
- data/bin/console +13 -0
- data/bin/setup +8 -0
- data/docs/checkout.html +111 -0
- data/docs/index.html +50 -0
- data/docs/install-library.html +61 -0
- data/docs/javascripts/prism.js +5 -0
- data/docs/javascripts/scale.fix.js +17 -0
- data/docs/marketpay.html +169 -0
- data/docs/params.json +1 -0
- data/docs/payment.html +106 -0
- data/docs/payout.html +135 -0
- data/docs/recurring.html +113 -0
- data/docs/stylesheets/github-light.css +115 -0
- data/docs/stylesheets/prism.css +140 -0
- data/docs/stylesheets/styles.css +324 -0
- data/docs/using-library.html +67 -0
- data/lib/adyen-ruby-api-library.rb +21 -0
- data/lib/adyen/client.rb +174 -0
- data/lib/adyen/errors.rb +76 -0
- data/lib/adyen/services/checkout.rb +50 -0
- data/lib/adyen/services/checkout_utility.rb +16 -0
- data/lib/adyen/services/marketpay.rb +92 -0
- data/lib/adyen/services/payments.rb +23 -0
- data/lib/adyen/services/payouts.rb +21 -0
- data/lib/adyen/services/recurring.rb +19 -0
- data/lib/adyen/services/service.rb +19 -0
- data/lib/adyen/version.rb +4 -0
- data/spec/account_spec.rb +27 -0
- data/spec/checkout_spec.rb +94 -0
- data/spec/checkout_utility_spec.rb +27 -0
- data/spec/client_spec.rb +40 -0
- data/spec/fund_spec.rb +19 -0
- data/spec/mocks/requests/Account/close_account.json +3 -0
- data/spec/mocks/requests/Account/close_account_holder.json +3 -0
- data/spec/mocks/requests/Account/create_account.json +3 -0
- data/spec/mocks/requests/Account/create_account_holder.json +15 -0
- data/spec/mocks/requests/Account/delete_bank_accounts.json +6 -0
- data/spec/mocks/requests/Account/delete_shareholders.json +6 -0
- data/spec/mocks/requests/Account/get_account_holder.json +3 -0
- data/spec/mocks/requests/Account/get_uploaded_documents.json +4 -0
- data/spec/mocks/requests/Account/suspend_account_holder.json +3 -0
- data/spec/mocks/requests/Account/un_suspend_account_holder.json +3 -0
- data/spec/mocks/requests/Account/update_account.json +7 -0
- data/spec/mocks/requests/Account/update_account_holder.json +33 -0
- data/spec/mocks/requests/Account/update_account_holder_state.json +6 -0
- data/spec/mocks/requests/Account/upload_document.json +9 -0
- data/spec/mocks/requests/Checkout/payment-details.json +18 -0
- data/spec/mocks/requests/Checkout/payment-result.json +3 -0
- data/spec/mocks/requests/Checkout/payment_methods.json +3 -0
- data/spec/mocks/requests/Checkout/payment_session.json +15 -0
- data/spec/mocks/requests/Checkout/payments.json +17 -0
- data/spec/mocks/requests/Checkout/verify.json +3 -0
- data/spec/mocks/requests/CheckoutUtility/origin_keys.json +7 -0
- data/spec/mocks/requests/Fund/account_holder_balance.json +3 -0
- data/spec/mocks/requests/Fund/account_holder_transaction_list.json +16 -0
- data/spec/mocks/requests/Fund/payout_account_holder.json +10 -0
- data/spec/mocks/requests/Fund/refund_not_paid_out_transfers.json +4 -0
- data/spec/mocks/requests/Fund/setup_beneficiary.json +5 -0
- data/spec/mocks/requests/Fund/transfer_funds.json +9 -0
- data/spec/mocks/requests/Notification/create_notification_configuration.json +20 -0
- data/spec/mocks/requests/Notification/delete_notification_configurations.json +6 -0
- data/spec/mocks/requests/Notification/get_notification_configuration.json +3 -0
- data/spec/mocks/requests/Notification/get_notification_configuration_list.json +1 -0
- data/spec/mocks/requests/Notification/test_notification_configuration.json +4 -0
- data/spec/mocks/requests/Notification/update_notification_configuration.json +26 -0
- data/spec/mocks/requests/Payment/adjust_authorisation.json +12 -0
- data/spec/mocks/requests/Payment/authorise.json +28 -0
- data/spec/mocks/requests/Payment/authorise3d.json +6 -0
- data/spec/mocks/requests/Payment/cancel.json +4 -0
- data/spec/mocks/requests/Payment/cancel_or_refund.json +4 -0
- data/spec/mocks/requests/Payment/capture.json +8 -0
- data/spec/mocks/requests/Payment/refund.json +8 -0
- data/spec/mocks/requests/Payout/confirm_third_party.json +4 -0
- data/spec/mocks/requests/Payout/decline_third_party.json +4 -0
- data/spec/mocks/requests/Payout/store_detail.json +33 -0
- data/spec/mocks/requests/Payout/store_detail_and_submit_third_party.json +33 -0
- data/spec/mocks/requests/Payout/submit_third_party.json +22 -0
- data/spec/mocks/requests/Recurring/disable.json +5 -0
- data/spec/mocks/requests/Recurring/list_recurring_details.json +4 -0
- data/spec/mocks/requests/Recurring/store_token.json +15 -0
- data/spec/mocks/responses/Account/close_account.json +5 -0
- data/spec/mocks/responses/Account/close_account_holder.json +7 -0
- data/spec/mocks/responses/Account/create_account.json +7 -0
- data/spec/mocks/responses/Account/create_account_holder.json +116 -0
- data/spec/mocks/responses/Account/delete_bank_accounts.json +4 -0
- data/spec/mocks/responses/Account/delete_shareholders.json +4 -0
- data/spec/mocks/responses/Account/get_account_holder.json +71 -0
- data/spec/mocks/responses/Account/get_uploaded_documents.json +16 -0
- data/spec/mocks/responses/Account/suspend_account_holder.json +24 -0
- data/spec/mocks/responses/Account/un_suspend_account_holder.json +24 -0
- data/spec/mocks/responses/Account/update_account.json +9 -0
- data/spec/mocks/responses/Account/update_account_holder.json +95 -0
- data/spec/mocks/responses/Account/update_account_holder_state.json +27 -0
- data/spec/mocks/responses/Account/upload_document.json +77 -0
- data/spec/mocks/responses/Checkout/payment-details.json +14 -0
- data/spec/mocks/responses/Checkout/payment-result.json +4 -0
- data/spec/mocks/responses/Checkout/payment_methods.json +66 -0
- data/spec/mocks/responses/Checkout/payment_session.json +572 -0
- data/spec/mocks/responses/Checkout/payments.json +95 -0
- data/spec/mocks/responses/Checkout/verify.json +121 -0
- data/spec/mocks/responses/CheckoutUtility/origin_keys.json +7 -0
- data/spec/mocks/responses/Fund/account_holder_balance.json +47 -0
- data/spec/mocks/responses/Fund/account_holder_transaction_list.json +73 -0
- data/spec/mocks/responses/Fund/payout_account_holder.json +6 -0
- data/spec/mocks/responses/Fund/refund_not_paid_out_transfers.json +5 -0
- data/spec/mocks/responses/Fund/setup_beneficiary.json +5 -0
- data/spec/mocks/responses/Fund/transfer_funds.json +6 -0
- data/spec/mocks/responses/Notification/create_notification_configuration.json +41 -0
- data/spec/mocks/responses/Notification/delete_notification_configurations.json +23 -0
- data/spec/mocks/responses/Notification/get_notification_configuration.json +41 -0
- data/spec/mocks/responses/Notification/get_notification_configuration_list.json +65 -0
- data/spec/mocks/responses/Notification/test_notification_configuration.json +49 -0
- data/spec/mocks/responses/Notification/update_notification_configuration.json +47 -0
- data/spec/mocks/responses/Payment/adjust_authorisation.json +4 -0
- data/spec/mocks/responses/Payment/authorise.json +95 -0
- data/spec/mocks/responses/Payment/authorise3d.json +30 -0
- data/spec/mocks/responses/Payment/cancel.json +4 -0
- data/spec/mocks/responses/Payment/cancel_or_refund.json +4 -0
- data/spec/mocks/responses/Payment/capture.json +4 -0
- data/spec/mocks/responses/Payment/refund.json +4 -0
- data/spec/mocks/responses/Payout/confirm_third_party.json +4 -0
- data/spec/mocks/responses/Payout/decline_third_party.json +4 -0
- data/spec/mocks/responses/Payout/store_detail.json +5 -0
- data/spec/mocks/responses/Payout/store_detail_and_submit_third_party.json +8 -0
- data/spec/mocks/responses/Payout/submit_third_party.json +8 -0
- data/spec/mocks/responses/Recurring/disable.json +30 -0
- data/spec/mocks/responses/Recurring/list_recurring_details.json +62 -0
- data/spec/mocks/responses/Recurring/store_token.json +7 -0
- data/spec/notification_spec.rb +19 -0
- data/spec/payments_spec.rb +20 -0
- data/spec/payouts_spec.rb +18 -0
- data/spec/recurring_spec.rb +17 -0
- data/spec/spec_helper.rb +94 -0
- 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,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
|
+
}
|