-
Notifications
You must be signed in to change notification settings - Fork 1
/
adyen_payment.json
6255 lines (6255 loc) · 284 KB
/
adyen_payment.json
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",
"servers": [
{
"url": "https://pal-test.adyen.com/pal/servlet/Payment/v64"
}
],
"info": {
"contact": {
"email": "[email protected]",
"name": "Adyen Developer Experience team",
"url": "https://www.adyen.help/hc/en-us/community/topics",
"x-twitter": "Adyen"
},
"description": "A set of API endpoints that allow you to initiate, settle, and modify payments on the Adyen payments platform. You can use the API to accept card payments (including One-Click and 3D Secure), bank transfers, ewallets, and many other payment methods.\n\nTo learn more about the API, visit [Classic integration](https://docs.adyen.com/classic-integration).\n\n## Authentication\nTo connect to the Payments API, you must use your basic authentication credentials. For this, create your web service user, as described in [How to get the WS user password](https://docs.adyen.com/development-resources/api-credentials). Then use its credentials to authenticate your request, for example:\n\n```\ncurl\n-U \"[email protected]\":\"YourWsPassword\" \\\n-H \"Content-Type: application/json\" \\\n...\n```\nNote that when going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nPayments API supports versioning of its endpoints through a version suffix in the endpoint URL. This suffix has the following format: \"vXX\", where XX is the version number.\n\nFor example:\n```\nhttps://pal-test.adyen.com/pal/servlet/Payment/v64/authorise\n```",
"termsOfService": "https://www.adyen.com/legal/terms-and-conditions",
"title": "Adyen Payment API",
"version": "64",
"x-apisguru-categories": [
"payment"
],
"x-logo": {
"url": "https://api.apis.guru/v2/cache/logo/https_adyen.com_.resources_adyen-website_themes_images_apple-icon-180x180.png"
},
"x-origin": [
{
"format": "openapi",
"url": "https://raw.githubusercontent.com/Adyen/adyen-openapi/master/json/PaymentService-v64.json",
"version": "3.1"
}
],
"x-preferred": true,
"x-providerName": "adyen.com",
"x-publicVersion": true,
"x-serviceName": "PaymentService"
},
"paths": {
"/adjustAuthorisation": {
"post": {
"description": "Allows you to increase or decrease the authorised amount after the initial authorisation has taken place. This functionality enables for example tipping, improving the chances your authorisation will be valid, or charging the shopper when they have already left the merchant premises.\n\n> This endpoint is part of our [classic API integration](https://docs.adyen.com/online-payments/classic-integrations/api-integration-ecommerce).\n> If you have a [newer integration](https://docs.adyen.com/online-payments), and are doing:\n> * [Asynchronous adjustments](https://docs.adyen.com/online-payments/adjust-authorisation#asynchronous-or-synchronous-adjustment), use the [`/payments/{paymentPspReference}/amountUpdates`](https://docs.adyen.com/api-explorer/#/CheckoutService/v67/post/payments/{paymentPspReference}/amountUpdates) endpoint on Checkout API.\n> * [Synchronous adjustments](https://docs.adyen.com/online-payments/adjust-authorisation#asynchronous-or-synchronous-adjustment), use this endpoint.",
"operationId": "post-adjustAuthorisation",
"requestBody": {
"content": {
"application/json": {
"examples": {
"adjustAuthorisation": {
"$ref": "#/components/examples/post-adjustAuthorisation-adjustAuthorisation"
}
},
"schema": {
"$ref": "#/components/schemas/AdjustAuthorisationRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"examples": {
"adjustAuthorisation": {
"$ref": "#/components/examples/post-adjustAuthorisation-adjustAuthorisation-200"
}
},
"schema": {
"$ref": "#/components/schemas/ModificationResult"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Bad Request - a problem reading or understanding the request."
},
"401": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-401"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unauthorized - authentication required."
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Forbidden - insufficient permissions to process the request."
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unprocessable Entity - a request validation error."
},
"500": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-500"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Internal Server Error - the server could not process the request."
}
},
"security": [
{
"BasicAuth": []
},
{
"ApiKeyAuth": []
}
],
"summary": "Increases or decreases the authorised amount.",
"tags": [
"Modifications"
],
"x-addedInVersion": "30",
"x-groupName": "Modifications",
"x-sortIndex": 6
}
},
"/authorise": {
"post": {
"description": "Creates a payment with a unique reference (`pspReference`) and attempts to obtain an authorisation hold. For cards, this amount can be captured or cancelled later. Non-card payment methods typically don't support this and will automatically capture as part of the authorisation.\n> This endpoint is part of our [classic API integration](https://docs.adyen.com/online-payments/classic-integrations/api-integration-ecommerce). If using a [newer integration](https://docs.adyen.com/online-payments), use the [`/payments`](https://docs.adyen.com/api-explorer/#/CheckoutService/payments) endpoint under Checkout API instead.",
"operationId": "post-authorise",
"requestBody": {
"content": {
"application/json": {
"examples": {
"authorise-3d-secure-2": {
"$ref": "#/components/examples/post-authorise-authorise-3d-secure-2"
},
"authorise-3dsecure": {
"$ref": "#/components/examples/post-authorise-authorise-3dsecure"
},
"authorise-card": {
"$ref": "#/components/examples/post-authorise-authorise-card"
},
"authorise-recurringcontauth": {
"$ref": "#/components/examples/post-authorise-authorise-recurringcontauth"
},
"authorise-recurringoneclick": {
"$ref": "#/components/examples/post-authorise-authorise-recurringoneclick"
},
"authorise-recurringstore": {
"$ref": "#/components/examples/post-authorise-authorise-recurringstore"
},
"authorise-split": {
"$ref": "#/components/examples/post-authorise-authorise-split"
}
},
"schema": {
"$ref": "#/components/schemas/PaymentRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentResult"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Bad Request - a problem reading or understanding the request."
},
"401": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-401"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unauthorized - authentication required."
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Forbidden - insufficient permissions to process the request."
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unprocessable Entity - a request validation error."
},
"500": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-500"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Internal Server Error - the server could not process the request."
}
},
"security": [
{
"BasicAuth": []
},
{
"ApiKeyAuth": []
}
],
"summary": "Creates a payment authorisation.",
"tags": [
"General"
],
"x-groupName": "General",
"x-sortIndex": 1
}
},
"/authorise3d": {
"post": {
"description": "For an authenticated 3D Secure session, completes the payment authorisation. This endpoint must receive the `md` and `paResponse` parameters that you get from the card issuer after a shopper pays via 3D Secure.\n\n> This endpoint is part of our [classic API integration](https://docs.adyen.com/online-payments/classic-integrations/api-integration-ecommerce/3d-secure). If using a [newer integration](https://docs.adyen.com/online-payments), use the [`/payments/details`](https://docs.adyen.com/api-explorer/#/CheckoutService/payments/details) endpoint under Checkout API instead.",
"operationId": "post-authorise3d",
"requestBody": {
"content": {
"application/json": {
"examples": {
"authorise3d": {
"$ref": "#/components/examples/post-authorise3d-authorise3d"
}
},
"schema": {
"$ref": "#/components/schemas/PaymentRequest3d"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentResult"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Bad Request - a problem reading or understanding the request."
},
"401": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-401"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unauthorized - authentication required."
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Forbidden - insufficient permissions to process the request."
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unprocessable Entity - a request validation error."
},
"500": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-500"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Internal Server Error - the server could not process the request."
}
},
"security": [
{
"BasicAuth": []
},
{
"ApiKeyAuth": []
}
],
"summary": "Completes a 3D Secure payment authorisation.",
"tags": [
"General"
],
"x-groupName": "General",
"x-sortIndex": 2
}
},
"/authorise3ds2": {
"post": {
"description": "For an authenticated 3D Secure 2 session, completes the payment authorisation. This endpoint must receive the `threeDS2Token` and `threeDS2Result` parameters.\n\n> This endpoint is part of our [classic API integration](https://docs.adyen.com/online-payments/classic-integrations/api-integration-ecommerce/3d-secure). If using a [newer integration](https://docs.adyen.com/online-payments), use the [`/payments/details`](https://docs.adyen.com/api-explorer/#/CheckoutService/payments/details) endpoint under Checkout API instead.",
"operationId": "post-authorise3ds2",
"requestBody": {
"content": {
"application/json": {
"examples": {
"authorise3ds2": {
"$ref": "#/components/examples/post-authorise3ds2-authorise3ds2"
}
},
"schema": {
"$ref": "#/components/schemas/PaymentRequest3ds2"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PaymentResult"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Bad Request - a problem reading or understanding the request."
},
"401": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-401"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unauthorized - authentication required."
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Forbidden - insufficient permissions to process the request."
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unprocessable Entity - a request validation error."
},
"500": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-500"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Internal Server Error - the server could not process the request."
}
},
"security": [
{
"BasicAuth": []
},
{
"ApiKeyAuth": []
}
],
"summary": "Completes a 3D Secure 2 payment authorisation.",
"tags": [
"General"
],
"x-addedInVersion": "37",
"x-groupName": "General",
"x-sortIndex": 3
}
},
"/cancel": {
"post": {
"description": "Cancels the authorisation hold on a payment, returning a unique reference for this request. You can cancel payments after authorisation only for payment methods that support distinct authorisations and captures.\n\nFor more information, refer to [Cancel](https://docs.adyen.com/online-payments/classic-integrations/modify-payments/cancel).\n\n> This endpoint is part of our [classic API integration](https://docs.adyen.com/online-payments/classic-integrations/api-integration-ecommerce). If using a [newer integration](https://docs.adyen.com/online-payments), use the [`/payments/{paymentPspReference}/cancels`](https://docs.adyen.com/api-explorer/#/CheckoutService/payments/{paymentPspReference}/cancels) endpoint under Checkout API instead.",
"operationId": "post-cancel",
"requestBody": {
"content": {
"application/json": {
"examples": {
"cancel": {
"$ref": "#/components/examples/post-cancel-cancel"
}
},
"schema": {
"$ref": "#/components/schemas/CancelRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ModificationResult"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Bad Request - a problem reading or understanding the request."
},
"401": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-401"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unauthorized - authentication required."
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Forbidden - insufficient permissions to process the request."
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unprocessable Entity - a request validation error."
},
"500": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-500"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Internal Server Error - the server could not process the request."
}
},
"security": [
{
"BasicAuth": []
},
{
"ApiKeyAuth": []
}
],
"summary": "Cancels an authorised payment.",
"tags": [
"Modifications"
],
"x-groupName": "Modifications",
"x-sortIndex": 2
}
},
"/cancelOrRefund": {
"post": {
"description": "Cancels a payment if it has not been captured yet, or refunds it if it has already been captured. This is useful when it is not certain if the payment has been captured or not (for example, when using auto-capture).\n\nDo not use this endpoint for payments that involve:\n * [Multiple partial captures](https://docs.adyen.com/online-payments/capture).\n * [Split data](https://docs.adyen.com/platforms/processing-payments#providing-split-information) either at time of payment or capture for Adyen for Platforms.\n\n Instead, check if the payment has been captured and make a corresponding [`/refund`](https://docs.adyen.com/api-explorer/#/Payment/refund) or [`/cancel`](https://docs.adyen.com/api-explorer/#/Payment/cancel) call.\n\nFor more information, refer to [Cancel or refund](https://docs.adyen.com/online-payments/classic-integrations/modify-payments/cancel-or-refund).\n\n> This endpoint is part of our [classic API integration](https://docs.adyen.com/online-payments/classic-integrations/api-integration-ecommerce). If using a [newer integration](https://docs.adyen.com/online-payments), use the [`/payments/{paymentPspReference}/reversals`](https://docs.adyen.com/api-explorer/#/CheckoutService/payments/{paymentPspReference}/reversals) endpoint under Checkout API instead.",
"operationId": "post-cancelOrRefund",
"requestBody": {
"content": {
"application/json": {
"examples": {
"cancelOrRefund": {
"$ref": "#/components/examples/post-cancelOrRefund-cancelOrRefund"
}
},
"schema": {
"$ref": "#/components/schemas/CancelOrRefundRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"examples": {
"cancelOrRefund": {
"$ref": "#/components/examples/post-cancelOrRefund-cancelOrRefund-200"
}
},
"schema": {
"$ref": "#/components/schemas/ModificationResult"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Bad Request - a problem reading or understanding the request."
},
"401": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-401"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unauthorized - authentication required."
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Forbidden - insufficient permissions to process the request."
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unprocessable Entity - a request validation error."
},
"500": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-500"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Internal Server Error - the server could not process the request."
}
},
"security": [
{
"BasicAuth": []
},
{
"ApiKeyAuth": []
}
],
"summary": "Cancels or refunds a payment.",
"tags": [
"Modifications"
],
"x-groupName": "Modifications",
"x-sortIndex": 4
}
},
"/capture": {
"post": {
"description": "Captures the authorisation hold on a payment, returning a unique reference for this request. Usually the full authorisation amount is captured, however it's also possible to capture a smaller amount, which results in cancelling the remaining authorisation balance.\n\nPayment methods that are captured automatically after authorisation don't need to be captured. However, submitting a capture request on these transactions will not result in double charges. If immediate or delayed auto-capture is enabled, calling the capture method is not neccessary.\n\nFor more information refer to [Capture](https://docs.adyen.com/online-payments/classic-integrations/modify-payments/capture).\n\n> This endpoint is part of our [classic API integration](https://docs.adyen.com/online-payments/classic-integrations/api-integration-ecommerce). If using a [newer integration](https://docs.adyen.com/online-payments), use the [`/payments/{paymentPspReference}/captures`](https://docs.adyen.com/api-explorer/#/CheckoutService/v67/post/payments/{paymentPspReference}/captures) endpoint on Checkout API instead.\n\n",
"operationId": "post-capture",
"requestBody": {
"content": {
"application/json": {
"examples": {
"capture": {
"$ref": "#/components/examples/post-capture-capture"
}
},
"schema": {
"$ref": "#/components/schemas/CaptureRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"examples": {
"capture": {
"$ref": "#/components/examples/post-capture-capture-200"
}
},
"schema": {
"$ref": "#/components/schemas/ModificationResult"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Bad Request - a problem reading or understanding the request."
},
"401": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-401"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unauthorized - authentication required."
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Forbidden - insufficient permissions to process the request."
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unprocessable Entity - a request validation error."
},
"500": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-500"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Internal Server Error - the server could not process the request."
}
},
"security": [
{
"BasicAuth": []
},
{
"ApiKeyAuth": []
}
],
"summary": "Captures an authorised payment.",
"tags": [
"Modifications"
],
"x-groupName": "Modifications",
"x-sortIndex": 1
}
},
"/donate": {
"post": {
"description": "Schedules a new payment to be created (including a new authorisation request) for the specified donation using the payment details of the original payment.\n\n> This endpoint is part of our [classic API integration](https://docs.adyen.com/online-payments/classic-integrations/api-integration-ecommerce). If using a [newer integration](https://docs.adyen.com/online-payments), use the [`/donations`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/donations) endpoint under Checkout API instead.",
"operationId": "post-donate",
"requestBody": {
"content": {
"application/json": {
"examples": {
"donate": {
"$ref": "#/components/examples/post-donate-donate"
}
},
"schema": {
"$ref": "#/components/schemas/DonationRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ModificationResult"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Bad Request - a problem reading or understanding the request."
},
"401": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-401"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unauthorized - authentication required."
},
"403": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Forbidden - insufficient permissions to process the request."
},
"422": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Unprocessable Entity - a request validation error."
},
"500": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-500"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"
}
}
},
"description": "Internal Server Error - the server could not process the request."
}
},
"security": [
{
"BasicAuth": []
},
{
"ApiKeyAuth": []
}
],
"summary": "Creates a payment for the specified donation.",
"tags": [
"Modifications"
],
"x-addedInVersion": "40",
"x-groupName": "Modifications",
"x-sortIndex": 6
}
},
"/getAuthenticationResult": {
"post": {
"description": "Return the authentication result after doing a 3D Secure authentication only.",
"operationId": "post-getAuthenticationResult",
"requestBody": {
"content": {
"application/json": {
"examples": {
"getAuthenticationResult": {
"$ref": "#/components/examples/post-getAuthenticationResult-getAuthenticationResult"
}
},
"schema": {
"$ref": "#/components/schemas/AuthenticationResultRequest"
}
}
}
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AuthenticationResultResponse"
}
}
},
"description": "OK - the request has succeeded."
},
"400": {
"content": {
"application/json": {
"examples": {
"generic": {
"$ref": "#/components/examples/generic-400"
}
},
"schema": {
"$ref": "#/components/schemas/ServiceError"