-
-
Notifications
You must be signed in to change notification settings - Fork 578
/
openapi.yaml
3769 lines (3721 loc) · 144 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
contact:
name: Adyen Developer Experience team
url: https://github.com/Adyen/adyen-openapi
x-twitter: Adyen
description: |-
This API is used for the classic integration. If you are just starting your implementation, refer to our [new integration guide](https://docs.adyen.com/marketplaces-and-platforms) instead.
The Notification API sends notifications to the endpoints specified in a given subscription.
Subscriptions are managed through the Notification Configuration API. The API specifications listed here detail the format of each notification.
For more information, refer to our [documentation](https://docs.adyen.com/marketplaces-and-platforms/classic/notifications).
termsOfService: https://www.adyen.com/legal/terms-and-conditions
title: Classic Platforms - Notifications
version: "3"
x-apisguru-categories:
- payment
x-logo:
url: https://twitter.com/Adyen/profile_image?size=original
x-origin:
- converter:
url: https://github.com/mermade/oas-kit
version: 7.0.4
format: openapi
url: https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/MarketPayNotificationService-v3.json
version: "3.1"
x-preferred: false
x-providerName: adyen.com
x-publicVersion: true
x-serviceName: MarketPayNotificationService
x-timestamp: 2023-06-02T11:23:47Z
tags: []
components:
examples:
WebhookAck:
summary: Acknowledge Webhook
value: "[accepted]"
post-ACCOUNT_CLOSED-accountClosed:
summary: ACCOUNT_CLOSED example
value:
content:
pspReference: TSTPSPR0001
resultCode: Success
status: Closed
submittedAsync: false
eventType: ACCOUNT_CLOSED
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_CREATED-accountCreated:
summary: ACCOUNT_CREATED example
value:
content:
accountCode: AC0000000001
accountHolderCode: AHC00000001
payoutSchedule:
nextScheduledPayout: 2023-01-01T01:00:00+01:00
schedule: DAILY
pspReference: TSTPSPR0001
resultCode: Success
status: Active
submittedAsync: false
eventType: ACCOUNT_CREATED
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_HOLDER_CREATED-accountHolderCreated-businesses:
summary: ACCOUNT_HOLDER_CREATED for businesses example
value:
content:
accountCode: AC0000000001
accountHolderCode: AHC00000001
accountHolderDetails:
address:
city: Amsterdam
country: NL
houseNumberOrName: 96/A
postalCode: 1000AA
stateOrProvince: NH
street: Street
bankAccountDetails:
- accountNumber: "00000000"
accountType: checking
bankAccountName: Account name
bankAccountUUID: 00000000-0000-0000-0000-000000000000
bankBicSwift: BSWFT
bankCity: Amsterdam
bankCode: "00000000"
bankName: Bank Name Co
branchCode: "00000000"
checkCode: "1234"
countryCode: NL
currencyCode: EUR
iban: NL00NONE1234123412
ownerCity: Amsterdam
ownerCountryCode: NL
ownerDateOfBirth: 1981-02-27
ownerHouseNumberOrName: 32/B
ownerName: Owner Name
ownerNationality: NL
ownerPostalCode: 1000AA
ownerState: NH
ownerStreet: Owner Street
primaryAccount: false
taxId: OT#12345
urlForVerification: http://adyen.com
businessDetails:
doingBusinessAs: Business name
legalBusinessName: Legal Business Co
shareholders:
- address:
city: Amsterdam
country: NL
houseNumberOrName: 96/A
postalCode: 1000AA
stateOrProvince: NH
street: Street
email: [email protected]
fullPhoneNumber: "+31858888138"
name:
firstName: Firstname
gender: UNKNOWN
infix: infix
lastName: Lastname
personalData:
dateOfBirth: 1981-02-27
documentData:
- expirationDate: 2030-12-31
issuerCountry: NL
issuerState: NH
number: ID#123456
type: ID
idNumber: ID#123456
nationality: NL
phoneNumber:
phoneCountryCode: NL
phoneNumber: "858888138"
phoneType: Landline
shareholderCode: SH00001
webAddress: https://www.adyen.com/
taxId: TaxID#1234
email: [email protected]
fullPhoneNumber: "+31858888138"
individualDetails:
name:
firstName: Firstname
gender: UNKNOWN
infix: infix
lastName: Lastname
personalData:
dateOfBirth: 1981-02-27
documentData:
- expirationDate: 2030-12-31
issuerCountry: NL
issuerState: NH
number: ID#123456
type: ID
idNumber: ID#123456
nationality: NL
merchantCategoryCode: "1212"
metadata:
MetaKey: MetaValue
phoneNumber:
phoneCountryCode: NL
phoneNumber: "858888138"
phoneType: Landline
webAddress: https://adyen.com
accountHolderStatus:
events:
- event: InactivateAccount
executionDate: 1970-01-01T01:00:00+01:00
reason: Reason of event
payoutState:
allowPayout: false
disableReason: Reason for disabled status
disabled: true
payoutLimit:
currency: EUR
value: 1000
tierNumber: 2
processingState:
disableReason: Reason for disabled status
disabled: true
processedFrom:
currency: EUR
value: 10
processedTo:
currency: EUR
value: 100
tierNumber: 2
status: Active
statusReason: Reason of status
invalidFields:
- errorCode: 1
errorDescription: Field is missing
fieldType:
field: AccountHolderDetails.BusinessDetails.Shareholders.unknown
fieldName: unknown
shareholderCode: SH00001
pspReference: TSTPSPR0001
resultCode: Success
submittedAsync: false
verification:
accountHolder:
checks:
- requiredFields:
- field.missing
status: PENDING
summary:
code: 100
description: KYC check summary description
type: IDENTITY_VERIFICATION
bankAccounts:
- bankAccountUUID: 00000000-0000-0000-0000-000000000000
checks:
- requiredFields:
- field.missing
status: PENDING
summary:
code: 100
description: KYC check summary description
type: IDENTITY_VERIFICATION
shareholders:
- checks:
- requiredFields:
- field.missing
status: PENDING
summary:
code: 100
description: KYC check summary description
type: IDENTITY_VERIFICATION
shareholderCode: SH000001
eventType: ACCOUNT_HOLDER_CREATED
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_HOLDER_CREATED-accountHolderCreated-failed:
summary: ACCOUNT_HOLDER_CREATED failed example
value:
content:
accountHolderCode: AH000001
accountState:
allowPayout: false
allowProcessing: false
disableReason: Reason for disabled status
disabled: true
stateDeadline: 1970-01-01T01:00:00+01:00
stateLimit:
amount: 100
currency: EUR
stateType: Processing
tierNumber: 2
amount:
currency: EUR
value: 10
totalAmountBeforeLimit:
currency: EUR
value: 100
transactionDate: 1970-01-01T01:00:00+01:00
transactionFailed: false
eventType: ACCOUNT_HOLDER_CREATED
executingUserKey: executing-user-key
live: false
mimeType: genericNotification
pspReference: TSTPSPR0001
post-ACCOUNT_HOLDER_CREATED-accountHolderCreated-individuals:
summary: ACCOUNT_HOLDER_CREATED for individuals example
value:
content:
accountCode: AC0000000001
accountHolderCode: AHC00000001
accountHolderDetails:
address:
city: Amsterdam
country: NL
houseNumberOrName: 96/A
postalCode: 1000AA
stateOrProvince: NH
street: Street
bankAccountDetails:
- accountNumber: "00000000"
accountType: checking
bankAccountName: Account name
bankAccountUUID: 00000000-0000-0000-0000-000000000000
bankBicSwift: BSWFT
bankCity: Amsterdam
bankCode: "00000000"
bankName: Bank Name Co
branchCode: "00000000"
checkCode: "1234"
countryCode: NL
currencyCode: EUR
iban: NL00NONE1234123412
ownerCity: Amsterdam
ownerCountryCode: NL
ownerDateOfBirth: 1981-02-27
ownerHouseNumberOrName: 32/B
ownerName: Owner Name
ownerNationality: NL
ownerPostalCode: 1000AA
ownerState: NH
ownerStreet: Owner Street
primaryAccount: false
taxId: OT#12345
urlForVerification: http://adyen.com
email: [email protected]
fullPhoneNumber: "+31858888138"
individualDetails:
name:
firstName: Firstname
gender: UNKNOWN
infix: infix
lastName: Lastname
personalData:
dateOfBirth: 1981-02-27
documentData:
- expirationDate: 2030-12-31
issuerCountry: NL
issuerState: NH
number: ID#123456
type: ID
idNumber: ID#123456
nationality: NL
merchantCategoryCode: "1212"
metadata:
MetaKey: MetaValue
phoneNumber:
phoneCountryCode: NL
phoneNumber: "858888138"
phoneType: Landline
webAddress: https://adyen.com
accountHolderStatus:
events:
- event: InactivateAccount
executionDate: 1970-01-01T01:00:00+01:00
reason: Reason of event
payoutState:
allowPayout: false
disableReason: Reason for disabled status
disabled: true
payoutLimit:
currency: EUR
value: 1000
tierNumber: 2
processingState:
disableReason: Reason for disabled status
disabled: true
processedFrom:
currency: EUR
value: 10
processedTo:
currency: EUR
value: 100
tierNumber: 2
status: Active
statusReason: Reason of status
invalidFields:
- errorCode: 1
errorDescription: Field is missing
fieldType:
field: AccountHolderDetails.BusinessDetails.Shareholders.unknown
fieldName: unknown
shareholderCode: SH00001
pspReference: TSTPSPR0001
resultCode: Success
submittedAsync: false
verification:
accountHolder:
checks:
- requiredFields:
- field.missing
status: PENDING
summary:
code: 100
description: KYC check summary description
type: IDENTITY_VERIFICATION
bankAccounts:
- bankAccountUUID: 00000000-0000-0000-0000-000000000000
checks:
- requiredFields:
- field.missing
status: PENDING
summary:
code: 100
description: KYC check summary description
type: IDENTITY_VERIFICATION
eventType: ACCOUNT_HOLDER_CREATED
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_HOLDER_PAYOUT-accountHolderPayout-failed:
summary: ACCOUNT_HOLDER_PAYOUT failed example
value:
content:
accountCode: AC00000001
accountHolderCode: AH00000001
amount:
currency: EUR
value: 100
amounts:
- currency: EUR
value: 10
bankAccountDetail:
accountNumber: "00000000"
accountType: checking
bankAccountName: Account name
bankAccountUUID: 00000000-0000-0000-0000-000000000000
bankBicSwift: BSWFT
bankCity: Amsterdam
bankCode: "00000000"
bankName: Bank Name Co
branchCode: "00000000"
checkCode: "1234"
countryCode: NL
currencyCode: EUR
iban: NL00NONE1234123412
ownerCity: Amsterdam
ownerCountryCode: NL
ownerDateOfBirth: 1981-02-27
ownerHouseNumberOrName: 32/B
ownerName: Owner Name
ownerNationality: NL
ownerPostalCode: 1000AA
ownerState: NH
ownerStreet: Owner Street
primaryAccount: false
taxId: OT#12345
urlForVerification: http://adyen.com
description: description of payout
merchantReference: MRef#00000001
status:
message:
code: 10_069
text: "Payout has been failed for account seller1. Details: Payout has been rejected by the beneficiary bank."
statusCode: Failed
eventType: ACCOUNT_HOLDER_PAYOUT
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_HOLDER_PAYOUT-accountHolderPayout-initiated:
summary: ACCOUNT_HOLDER_PAYOUT initiated example
value:
content:
accountCode: AC00000001
accountHolderCode: AH00000001
amount:
currency: EUR
value: 100
amounts:
- currency: EUR
value: 10
bankAccountDetail:
accountNumber: "00000000"
accountType: checking
bankAccountName: Account name
bankAccountUUID: 00000000-0000-0000-0000-000000000000
bankBicSwift: BSWFT
bankCity: Amsterdam
bankCode: "00000000"
bankName: Bank Name Co
branchCode: "00000000"
checkCode: "1234"
countryCode: NL
currencyCode: EUR
iban: NL00NONE1234123412
ownerCity: Amsterdam
ownerCountryCode: NL
ownerDateOfBirth: 1981-02-27
ownerHouseNumberOrName: 32/B
ownerName: Owner Name
ownerNationality: NL
ownerPostalCode: 1000AA
ownerState: NH
ownerStreet: Owner Street
primaryAccount: false
taxId: OT#12345
urlForVerification: http://adyen.com
description: description of payout
merchantReference: MRef#00000001
status:
statusCode: Initiated
eventType: ACCOUNT_HOLDER_PAYOUT
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_HOLDER_STATUS_CHANGE-accountHolderStatusChange:
summary: ACCOUNT_HOLDER_STATUS_CHANGE example
value:
content:
accountHolderCode: AH000001
newStatus:
events:
- event: InactivateAccount
executionDate: 1970-01-01T01:00:00+01:00
reason: Reason of event
payoutState:
allowPayout: false
disableReason: Reason for disabled status
disabled: true
payoutLimit:
currency: EUR
value: 1000
tierNumber: 2
processingState:
disableReason: Reason for disabled status
disabled: true
processedFrom:
currency: EUR
value: 10
processedTo:
currency: EUR
value: 100
tierNumber: 2
status: Active
statusReason: Reason of status
oldStatus:
events:
- event: InactivateAccount
executionDate: 1970-01-01T01:00:00+01:00
reason: Reason of event
payoutState:
allowPayout: false
disableReason: Reason for disabled status
disabled: true
payoutLimit:
currency: EUR
value: 1000
tierNumber: 2
processingState:
disableReason: Reason for disabled status
disabled: true
processedFrom:
currency: EUR
value: 10
processedTo:
currency: EUR
value: 100
tierNumber: 2
status: Active
statusReason: Reason of status
reason: status change reason
eventType: ACCOUNT_HOLDER_STATUS_CHANGE
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_HOLDER_STORE_STATUS_CHANGE-accountHolderStoreStatusChange:
summary: ACCOUNT_HOLDER_STORE_STATUS_CHANGE example
value:
content:
accountHolderCode: YOUR_UNIQUE_ACCOUNT_HOLDER_CODE
newStatus: Active
oldStatus: Pending
reason: YOUR_REASON
store: UNIQUE_SUBMERCHANT_STORE_ID
storeReference: YOUR_SUBMERCHANT_STORE_ID
eventDate: 2018-04-23T13:13:44+02:00
eventType: ACCOUNT_HOLDER_STORE_STATUS_CHANGE
executingUserKey: ws
live: true
pspReference: "1313642467023511"
post-ACCOUNT_HOLDER_UPDATED-accountHolderUpdated:
summary: ACCOUNT_HOLDER_UPDATED example
value:
content:
accountHolderCode: AHC00000001
accountHolderDetails:
address:
city: Amsterdam
country: NL
houseNumberOrName: 96/A
postalCode: 1000AA
stateOrProvince: NH
street: Street
bankAccountDetails:
- accountNumber: "00000000"
accountType: checking
bankAccountName: Account name
bankAccountUUID: 00000000-0000-0000-0000-000000000000
bankBicSwift: BSWFT
bankCity: Amsterdam
bankCode: "00000000"
bankName: Bank Name Co
branchCode: "00000000"
checkCode: "1234"
countryCode: NL
currencyCode: EUR
iban: NL00NONE1234123412
ownerCity: Amsterdam
ownerCountryCode: NL
ownerDateOfBirth: 1981-02-27
ownerHouseNumberOrName: 32/B
ownerName: Owner Name
ownerNationality: NL
ownerPostalCode: 1000AA
ownerState: NH
ownerStreet: Owner Street
primaryAccount: false
taxId: OT#12345
urlForVerification: http://adyen.com
businessDetails:
doingBusinessAs: Business name
legalBusinessName: Legal Business Co
shareholders:
- address:
city: Amsterdam
country: NL
houseNumberOrName: 96/A
postalCode: 1000AA
stateOrProvince: NH
street: Street
email: [email protected]
fullPhoneNumber: "+31858888138"
name:
firstName: Firstname
gender: UNKNOWN
infix: infix
lastName: Lastname
personalData:
dateOfBirth: 1981-02-27
documentData:
- expirationDate: 2030-12-31
issuerCountry: NL
issuerState: NH
number: ID#123456
type: ID
idNumber: ID#123456
nationality: NL
phoneNumber:
phoneCountryCode: NL
phoneNumber: "858888138"
phoneType: Landline
shareholderCode: SH00001
webAddress: https://www.adyen.com/
taxId: TaxID#1234
email: [email protected]
fullPhoneNumber: "+31858888138"
individualDetails:
name:
firstName: Firstname
gender: UNKNOWN
infix: infix
lastName: Lastname
personalData:
dateOfBirth: 1981-02-27
documentData:
- expirationDate: 2030-12-31
issuerCountry: NL
issuerState: NH
number: ID#123456
type: ID
idNumber: ID#123456
nationality: NL
merchantCategoryCode: "1212"
metadata:
MetaKey: MetaValue
phoneNumber:
phoneCountryCode: NL
phoneNumber: "858888138"
phoneType: Landline
webAddress: https://adyen.com
accountHolderStatus:
events:
- event: InactivateAccount
executionDate: 1970-01-01T01:00:00+01:00
reason: Reason of event
payoutState:
allowPayout: false
disableReason: Reason for disabled status
disabled: true
payoutLimit:
currency: EUR
value: 1000
tierNumber: 2
processingState:
disableReason: Reason for disabled status
disabled: true
processedFrom:
currency: EUR
value: 10
processedTo:
currency: EUR
value: 100
tierNumber: 2
status: Active
statusReason: Reason of status
invalidFields:
- errorCode: 1
errorDescription: Field is missing
fieldType:
field: AccountHolderDetails.BusinessDetails.Shareholders.unknown
fieldName: unknown
shareholderCode: SH00001
pspReference: TSTPSPR0001
resultCode: Success
submittedAsync: false
updatedFields:
- field: AccountHolderDetails.BusinessDetails.Shareholders.unknown
fieldName: unknown
shareholderCode: SH00001
verification:
accountHolder:
checks:
- requiredFields:
- field.missing
status: PENDING
summary:
code: 100
description: KYC check summary description
type: IDENTITY_VERIFICATION
bankAccounts:
- bankAccountUUID: 00000000-0000-0000-0000-000000000000
checks:
- requiredFields:
- field.missing
status: PENDING
summary:
code: 100
description: KYC check summary description
type: IDENTITY_VERIFICATION
shareholders:
- checks:
- requiredFields:
- field.missing
status: PENDING
summary:
code: 100
description: KYC check summary description
type: IDENTITY_VERIFICATION
shareholderCode: SH000001
eventType: ACCOUNT_HOLDER_UPDATED
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_HOLDER_VERIFICATION-accountHolderVerification:
summary: ACCOUNT_HOLDER_VERIFICATION example
value:
content:
accountHolderCode: AH0000001
bankAccountUUID: 00000000-0000-0000-0000-000000000000
shareholderCode: SH00000001
statusSummaryItems:
- itemCode: 100
itemDescription: test item description
verificationStatus: PENDING
verificationType: IDENTITY_VERIFICATION
eventType: ACCOUNT_HOLDER_VERIFICATION
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-ACCOUNT_UPDATED-accountUpdated:
summary: ACCOUNT_UPDATED example
value:
content:
accountCode: AC0000000001
payoutSchedule:
nextScheduledPayout: 2023-01-01T01:00:00+01:00
schedule: DAILY
pspReference: TSTPSPR0001
resultCode: Success
submittedAsync: false
eventType: ACCOUNT_UPDATED
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-BENEFICIARY_SETUP-beneficiarySetup:
summary: BENEFICIARY_SETUP example
value:
content:
destinationAccountCode: AC00000001D
destinationAccountHolderCode: AH00000001D
merchantReference: MRef#000000001
sourceAccountCode: AC0000001S
sourceAccountHolderCode: AH000000001S
transferDate: 1970-01-01T01:00:00+01:00
transferredTransactionCount: 3
eventType: BENEFICIARY_SETUP
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-COMPENSATE_NEGATIVE_BALANCE-compensateNegativeBalance:
summary: COMPENSATE_NEGATIVE_BALANCE example
value:
content:
records:
- accountCode: AC000001
amount:
currency: EUR
value: 10
transferDate: 1970-01-01T01:00:00+01:00
eventType: COMPENSATE_NEGATIVE_BALANCE
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-DIRECT_DEBIT_INITIATED-directDebitInitiated:
summary: DIRECT_DEBIT_INITIATED example
value:
content:
accountCode: "8825579787887769"
amount:
currency: USD
value: 6200
debitInitiationDate: 2021-02-01
splits:
- account: "8535516988037431"
amount:
currency: EUR
value: 6000
reference: YOUR_SPLIT_REFERENCE_1
type: MarketPlace
- amount:
currency: EUR
value: 200
reference: YOUR_SPLIT_REFERENCE_2
type: Commission
status:
statusCode: Initiated
eventDate: 2021-02-01T14:19:14-08:00
eventType: DIRECT_DEBIT_INITIATED
executingUserKey: executing-user-key
live: "false"
pspReference: "8515681150749298"
post-DIRECT_DEBIT_INITIATED-directDebitInitiated-failed:
summary: DIRECT_DEBIT_INITIATED failed example
value:
content:
accountCode: "8825579787887769"
amount:
currency: EUR
value: 500000
debitInitiationDate: 2021-07-07
merchantAccountCode: YOUR_MERCHANT_ACCOUNT
splits:
- account: "8535516988037431"
amount:
currency: EUR
value: 490000
reference: YOUR_SPLIT_REFERENCE_1
type: MarketPlace
- amount:
currency: EUR
value: 10000
reference: YOUR_SPLIT_REFERENCE_2
type: Commission
status:
message:
code: 10_145
text: Failed to initiate the direct debit for account holder.
statusCode: Failed
eventDate: 2021-02-01T14:19:14-08:00
eventType: DIRECT_DEBIT_INITIATED
executingUserKey: executing-user-key
live: "false"
pspReference: "8315659584588245"
post-PAYMENT_FAILURE-paymentFailure:
summary: PAYMENT_FAILURE example
value:
content:
errorFields:
- errorCode: 52
errorDescription: "Amount is negative or zero. value: <empty>"
fieldType:
field: AccountHolderDetails.BusinessDetails.Shareholders.unknown
fieldName: unknown
shareholderCode: SH00001
errorMessage:
code: "100"
text: test error message
eventType: PAYMENT_FAILURE
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-REPORT_AVAILABLE-reportAvailable:
summary: REPORT_AVAILABLE example
value:
content:
accountCode: AC000001
accountType: account-type
eventDate: 2019-01-01T01:00:00+01:00
remoteAccessUrl: http://adyen.com/
success: false
eventDate: 2019-01-01T01:00:00+01:00
eventType: REPORT_AVAILABLE
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-SCHEDULED_REFUNDS-scheduledRefunds:
summary: SCHEDULED_REFUNDS example
value:
content:
accountCode: AC000001
accountHolderCode: AH000001
lastPayout:
amount:
currency: EUR
value: 10
bankAccountDetail:
accountNumber: "00000000"
accountType: checking
bankAccountName: Account name
bankAccountUUID: 00000000-0000-0000-0000-000000000000
bankBicSwift: BSWFT
bankCity: Amsterdam
bankCode: "00000000"
bankName: Bank Name Co
branchCode: "00000000"
checkCode: "1234"
countryCode: NL
currencyCode: EUR
iban: NL00NONE1234123412
ownerCity: Amsterdam
ownerCountryCode: NL
ownerDateOfBirth: 1981-02-27
ownerHouseNumberOrName: 32/B
ownerName: Owner Name
ownerNationality: NL
ownerPostalCode: 1000AA
ownerState: NH
ownerStreet: Owner Street
primaryAccount: false
taxId: OT#12345
urlForVerification: http://adyen.com
captureMerchantReference: MRef0000001C
capturePspReference: TSTPSPR00000001C
creationDate: 1970-01-01T01:00:00+01:00
description: transaction description
destinationAccountCode: AC0000001D
disputePspReference: TSTPSPR00000000D
disputeReasonCode: DRC001
merchantReference: MRef#00000001
paymentPspReference: TSTPSPR0000000PO
payoutPspReference: TSTPSPR000000PI
pspReference: TSTPSPR000000001
sourceAccountCode: AC00000001S
transactionStatus: Debited
transferCode: TC0001
refundResults:
- originalTransaction:
amount:
currency: EUR
value: 10
bankAccountDetail:
accountNumber: "00000000"
accountType: checking
bankAccountName: Account name
bankAccountUUID: 00000000-0000-0000-0000-000000000000
bankBicSwift: BSWFT
bankCity: Amsterdam
bankCode: "00000000"
bankName: Bank Name Co
branchCode: "00000000"
checkCode: "1234"
countryCode: NL
currencyCode: EUR
iban: NL00NONE1234123412
ownerCity: Amsterdam
ownerCountryCode: NL
ownerDateOfBirth: 1981-02-27
ownerHouseNumberOrName: 32/B
ownerName: Owner Name
ownerNationality: NL
ownerPostalCode: 1000AA
ownerState: NH
ownerStreet: Owner Street
primaryAccount: false
taxId: OT#12345
urlForVerification: http://adyen.com
captureMerchantReference: MRef0000001C
capturePspReference: TSTPSPR00000001C
creationDate: 1970-01-01T01:00:00+01:00
description: transaction description
destinationAccountCode: AC0000001D
disputePspReference: TSTPSPR00000000D
disputeReasonCode: DRC001
merchantReference: MRef#00000001
paymentPspReference: TSTPSPR0000000PO
payoutPspReference: TSTPSPR000000PI
pspReference: TSTPSPR000000001
sourceAccountCode: AC00000001S
transactionStatus: Debited
transferCode: TC0001
pspReference: TSTPSPR00000001
response: response
eventType: SCHEDULED_REFUNDS
executingUserKey: executing-user-key
live: false
pspReference: TSTPSPR0001
post-TRANSFER_FUNDS-transferFunds:
summary: TRANSFER_FUNDS example
value:
content:
amount:
currency: EUR
value: 10
destinationAccountCode: AC0000001D
merchantReference: MRef#000001
sourceAccountCode: AC0000001S
status:
message:
code: "100"