forked from vitrixLab/paypal-rest-api-specifications
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreporting_transactions_v1.json
More file actions
1710 lines (1710 loc) · 73.7 KB
/
reporting_transactions_v1.json
File metadata and controls
1710 lines (1710 loc) · 73.7 KB
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.0.3",
"info": {
"title": "Transaction Search",
"description": "Use the Transaction Search API to get the history of transactions for a PayPal account. To use the API on behalf of third parties, you must be part of the PayPal partner network. Reach out to your partner manager for the next steps. To enroll in the partner program, see <a href=\"https://www.paypal.com/my/webapps/mpp/partner-program/global-programs\">Partner with PayPal</a>. For more information about the API, see the <a href=\"/docs/transaction-search/\">Transaction Search API Integration Guide</a>.<blockquote><strong>Note:</strong> To use the API on behalf of third parties, you must be part of the PayPal partner network. Reach out to your partner manager for the next steps. To enroll in the partner program, see <a href=\"https://www.paypal.com/my/webapps/mpp/partner-program/global-programs\">Partner with PayPal</a>.</blockquote>",
"version": "1.9",
"contact": {}
},
"servers": [
{
"url": "https://api-m.sandbox.paypal.com",
"description": "PayPal Sandbox Environment"
},
{
"url": "https://api-m.paypal.com",
"description": "PayPal Live Environment"
}
],
"tags": [
{
"name": "transactions",
"description": "Use the `/transactions` resource to list transactions."
},
{
"name": "partner-transactions",
"description": "Use the `/partner-transactions` resource to list transactions."
},
{
"name": "balances",
"description": "Use the `/balances` resource to list balances."
}
],
"externalDocs": {
"url": "https://developer.paypal.com/docs/api/reporting/v1/"
},
"paths": {
"/v1/reporting/transactions": {
"get": {
"summary": "List transactions",
"description": "Lists transactions. Specify one or more query parameters to filter the transaction that appear in the response.<blockquote><strong>Notes:</strong> <ul><li>If you specify one or more optional query parameters, the <code>ending_balance</code> response field is empty.</li><li>It takes a maximum of three hours for executed transactions to appear in the list transactions call.</li><li>This call lists transaction for the previous three years.</li></ul></blockquote>",
"operationId": "search.get",
"responses": {
"200": {
"description": "A successful request returns the HTTP `200 OK` status code and a JSON response body that lists transactions .",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/search_response"
}
}
}
},
"default": {
"$ref": "#/components/responses/default"
}
},
"parameters": [
{
"$ref": "#/components/parameters/transaction_id"
},
{
"$ref": "#/components/parameters/transaction_type"
},
{
"$ref": "#/components/parameters/transaction_status"
},
{
"$ref": "#/components/parameters/transaction_amount"
},
{
"$ref": "#/components/parameters/transaction_currency"
},
{
"$ref": "#/components/parameters/start_date"
},
{
"$ref": "#/components/parameters/end_date"
},
{
"$ref": "#/components/parameters/payment_instrument_type"
},
{
"$ref": "#/components/parameters/store_id"
},
{
"$ref": "#/components/parameters/terminal_id"
},
{
"$ref": "#/components/parameters/fields"
},
{
"$ref": "#/components/parameters/balance_affecting_records_only"
},
{
"$ref": "#/components/parameters/page_size"
},
{
"$ref": "#/components/parameters/page"
}
],
"security": [
{
"Oauth2": ["https://uri.paypal.com/services/reporting/search/read"]
}
],
"tags": ["transactions"]
}
},
"/v1/reporting/balances": {
"get": {
"summary": "List all balances",
"description": "List all balances. Specify date time to list balances for that time that appear in the response.<blockquote><strong>Notes:</strong> <ul><li>It takes a maximum of three hours for balances to appear in the list balances call.</li><li>This call lists balances upto the previous three years.</li></ul></blockquote>",
"operationId": "balances.get",
"responses": {
"200": {
"description": "A successful request returns the HTTP `200 OK` status code and a JSON response body that lists balances .",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/balances_response"
}
}
}
},
"400": {
"description": "The request is not well-formed, is syntactically incorrect, or violates schema.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error_400"
}
}
}
},
"403": {
"description": "Authorization failed due to insufficient permissions.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error_403"
}
}
}
},
"500": {
"description": "An internal server error occurred.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error_500"
}
}
}
},
"default": {
"$ref": "#/components/responses/default"
}
},
"parameters": [
{
"$ref": "#/components/parameters/as_of_time"
},
{
"$ref": "#/components/parameters/currency_code"
}
],
"security": [
{
"Oauth2": [
"https://uri.paypal.com/services/reporting/balances/read"
]
}
],
"tags": ["balances"]
}
}
},
"components": {
"securitySchemes": {
"Oauth2": {
"type": "oauth2",
"description": "Oauth 2.0 authentication",
"flows": {
"clientCredentials": {
"tokenUrl": "/v1/oauth2/token",
"scopes": {
"https://uri.paypal.com/services/reporting/search/read": "Transactions Search",
"https://uri.paypal.com/services/reporting/balances/read": "List Balances"
}
}
}
}
},
"responses": {
"default": {
"description": "The default response.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error_default"
}
}
}
}
},
"schemas": {
"account_id": {
"type": "string",
"description": "The PayPal payer ID, which is a masked version of the PayPal account number intended for use with third parties. The account number is reversibly encrypted and a proprietary variant of Base32 is used to encode the result.",
"format": "ppaas_payer_id_v3",
"minLength": 13,
"maxLength": 13,
"pattern": "^[2-9A-HJ-NP-Z]{13}$"
},
"address": {
"type": "object",
"title": "Simple Postal Address (Coarse-Grained)",
"description": "A simple postal address with coarse-grained fields. Do not use for an international address. Use for backward compatibility only. Does not contain phone.",
"properties": {
"line1": {
"type": "string",
"description": "The first line of the address. For example, number or street."
},
"line2": {
"type": "string",
"description": "The second line of the address. For example, suite or apartment number."
},
"city": {
"type": "string",
"description": "The city name."
},
"state": {
"type": "string",
"description": "The [code](/docs/api/reference/state-codes/) for a US state or the equivalent for other countries. Required for transactions if the address is in one of these countries: [Argentina](/docs/api/reference/state-codes/#argentina), [Brazil](/docs/api/reference/state-codes/#brazil), [Canada](/docs/api/reference/state-codes/#canada), [China](/docs/api/reference/state-codes/#china), [India](/docs/api/reference/state-codes/#india), [Italy](/docs/api/reference/state-codes/#italy), [Japan](/docs/api/reference/state-codes/#japan), [Mexico](/docs/api/reference/state-codes/#mexico), [Thailand](/docs/api/reference/state-codes/#thailand), or [United States](/docs/api/reference/state-codes/#usa). Maximum length is 40 single-byte characters."
},
"country_code": {
"$ref": "#/components/schemas/country_code"
},
"postal_code": {
"type": "string",
"description": "The postal code, which is the zip code or equivalent. Typically required for countries with a postal code or an equivalent. See [postal code](https://en.wikipedia.org/wiki/Postal_code)."
}
},
"required": ["line1", "city", "country_code"]
},
"auction_info": {
"type": "object",
"title": "Auction Information",
"description": "The auction information.",
"properties": {
"auction_site": {
"type": "string",
"description": "The name of the auction site.",
"minLength": 1,
"maxLength": 200,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"auction_item_site": {
"type": "string",
"description": "The auction site URL.",
"minLength": 1,
"maxLength": 4000,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"auction_buyer_id": {
"type": "string",
"description": "The ID of the buyer who makes the purchase in the auction. This ID might be different from the payer ID provided for the payment.",
"minLength": 1,
"maxLength": 500,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"auction_closing_date": {
"description": "The date and time when the auction closes, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).",
"$ref": "#/components/schemas/date_time"
}
}
},
"balance_detail": {
"type": "object",
"title": "Balance Information",
"description": "The Balance information.",
"properties": {
"currency": {
"description": "Currency Code of the balances listed.",
"$ref": "#/components/schemas/currency_code"
},
"primary": {
"type": "boolean",
"description": "Optional field representing if the currency is primary currency or not."
},
"total_balance": {
"description": "The total amount in PayPal account. It is the sum of all the other balances.",
"$ref": "#/components/schemas/money"
},
"available_balance": {
"description": "The amount of cash in an Account which is at the customer's disposal. This amount is captured at settlement cutoff time in the user's time zone as defined for the user.",
"$ref": "#/components/schemas/money"
},
"withheld_balance": {
"description": "Balance withheld in the account. The portion of funds that PayPal holds for the customer that is not currently at the customer's disposal.",
"$ref": "#/components/schemas/money"
}
},
"required": ["currency", "total_balance"]
},
"balance_detail_list": {
"type": "array",
"description": "An array of balance detail objects.",
"maxItems": 200,
"minItems": 0,
"items": {
"$ref": "#/components/schemas/balance_detail"
}
},
"balances_response": {
"type": "object",
"title": "Balances Response",
"description": "The balances response information.",
"properties": {
"balances": {
"$ref": "#/components/schemas/balance_detail_list"
},
"account_id": {
"$ref": "#/components/schemas/account_id"
},
"as_of_time": {
"description": "The requested date and time or the last date and time when the balances can be served, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).",
"$ref": "#/components/schemas/date_time"
},
"last_refresh_time": {
"description": "The date and time when the balances was last refreshed, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).",
"$ref": "#/components/schemas/date_time"
}
}
},
"cart_info": {
"type": "object",
"title": "Cart Information",
"description": "The cart information.",
"properties": {
"item_details": {
"$ref": "#/components/schemas/item_detail_list"
},
"tax_inclusive": {
"type": "boolean",
"description": "Indicates whether the item amount or the shipping amount already includes tax.",
"default": false
},
"paypal_invoice_id": {
"type": "string",
"description": "The ID of the invoice. Appears for only PayPal-generated invoices.",
"minLength": 1,
"maxLength": 127,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
}
}
},
"checkout_option": {
"type": "object",
"title": "Checkout Option",
"description": "A checkout option as a name-and-value pair.",
"properties": {
"checkout_option_name": {
"type": "string",
"description": "The checkout option name, such as `color` or `texture`.",
"minLength": 1,
"maxLength": 200,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"checkout_option_value": {
"type": "string",
"description": "The checkout option value. For example, the checkout option `color` might be `blue` or `red` while the checkout option `texture` might be `smooth` or `rippled`.",
"minLength": 1,
"maxLength": 200,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
}
}
},
"checkout_option_list": {
"type": "array",
"description": "An array of checkout options. Each option has a name and value.",
"items": {
"$ref": "#/components/schemas/checkout_option"
},
"minItems": 1,
"maxItems": 32767
},
"country_code": {
"type": "string",
"description": "The [two-character ISO 3166-1 code](/docs/integration/direct/rest/country-codes/) that identifies the country or region.<blockquote><strong>Note:</strong> The country code for Great Britain is <code>GB</code> and not <code>UK</code> as used in the top-level domain names for that country. Use the `C2` country code for China worldwide for comparable uncontrolled price (CUP) method, bank card, and cross-border transactions.</blockquote>",
"format": "ppaas_common_country_code_v2",
"maxLength": 2,
"minLength": 2,
"pattern": "^([A-Z]{2}|C2)$"
},
"currency_code": {
"description": "The [three-character ISO-4217 currency code](/docs/integration/direct/rest/currency-codes/) that identifies the currency.",
"type": "string",
"format": "ppaas_common_currency_code_v2",
"minLength": 3,
"maxLength": 3
},
"date_time": {
"type": "string",
"description": "The date and time, in [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6). Seconds are required while fractional seconds are optional.<blockquote><strong>Note:</strong> The regular expression provides guidance but does not reject all invalid dates.</blockquote>",
"format": "ppaas_date_time_v3",
"minLength": 20,
"maxLength": 64,
"pattern": "^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])[T,t]([0-1][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]+)?([Zz]|[+-][0-9]{2}:[0-9]{2})$"
},
"email_address": {
"type": "string",
"description": "The internationalized email address.<blockquote><strong>Note:</strong> Up to 64 characters are allowed before and 255 characters are allowed after the <code>@</code> sign. However, the generally accepted maximum length for an email address is 254 characters. The pattern verifies that an unquoted <code>@</code> sign exists.</blockquote>",
"format": "ppaas_common_email_address_v2",
"minLength": 3,
"maxLength": 254,
"pattern": "^.+@[^\"\\-].+$"
},
"error_400": {
"type": "object",
"title": "Bad Request Error",
"description": "Request is not well-formed, syntactically incorrect, or violates schema.",
"properties": {
"name": {
"type": "string",
"enum": ["INVALID_REQUEST"]
},
"message": {
"type": "string",
"enum": [
"Request is not well-formed, syntactically incorrect, or violates schema."
]
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/error_details"
}
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
}
},
"error_401": {
"type": "object",
"title": "Unauthorized Error",
"description": "Authentication failed due to missing Authorization header, or invalid authentication credentials.",
"properties": {
"name": {
"type": "string",
"enum": ["AUTHENTICATION_FAILURE"]
},
"message": {
"type": "string",
"enum": [
"Authentication failed due to missing authorization header, or invalid authentication credentials."
]
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/error_details"
}
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
}
},
"error_403": {
"type": "object",
"title": "Not Authorized Error",
"description": "The client is not authorized to access this resource, although it may have valid credentials. ",
"properties": {
"name": {
"type": "string",
"enum": ["NOT_AUTHORIZED"]
},
"message": {
"type": "string",
"enum": ["Authorization failed due to insufficient permissions."]
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/error_details"
}
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
}
},
"error_404": {
"type": "object",
"title": "Not found Error",
"description": "The server has not found anything matching the request URI. This either means that the URI is incorrect or the resource is not available.",
"properties": {
"name": {
"type": "string",
"enum": ["RESOURCE_NOT_FOUND"]
},
"message": {
"type": "string",
"enum": ["The specified resource does not exist."]
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/error_details"
}
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
}
},
"error_409": {
"type": "object",
"title": "Resource Conflict Error",
"description": "The server has detected a conflict while processing this request.",
"properties": {
"name": {
"type": "string",
"enum": ["RESOURCE_CONFLICT"]
},
"message": {
"type": "string",
"enum": [
"The server has detected a conflict while processing this request."
]
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/error_details"
}
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
}
},
"error_415": {
"type": "object",
"title": "Unsupported Media Type Error",
"description": "The server does not support the request payload's media type.",
"properties": {
"name": {
"type": "string",
"enum": ["UNSUPPORTED_MEDIA_TYPE"]
},
"message": {
"type": "string",
"enum": [
"The server does not support the request payload's media type."
]
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/error_details"
}
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
}
},
"error_422": {
"type": "object",
"title": "Unprocessable Entity Error",
"description": "The requested action cannot be performed and may require interaction with APIs or processes outside of the current request. This is distinct from a 500 response in that there are no systemic problems limiting the API from performing the request.",
"properties": {
"name": {
"type": "string",
"enum": ["UNPROCESSABLE_ENTITY"]
},
"message": {
"type": "string",
"enum": [
"The requested action could not be performed, semantically incorrect, or failed business validation."
]
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/error_details"
}
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
}
},
"error_500": {
"type": "object",
"title": "Internal Server Error",
"description": "This is either a system or application error, and generally indicates that although the client appeared to provide a correct request, something unexpected has gone wrong on the server.",
"properties": {
"name": {
"type": "string",
"enum": ["INTERNAL_SERVER_ERROR"]
},
"message": {
"type": "string",
"enum": ["An internal server error occurred."]
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
},
"example": {
"name": "INTERNAL_SERVER_ERROR",
"message": "An internal server error occurred.",
"debug_id": "90957fca61718",
"links": [
{
"href": "https://developer.paypal.com/api/orders/v2/#error-INTERNAL_SERVER_ERROR",
"rel": "information_link"
}
]
}
},
"error_503": {
"type": "object",
"title": "Service Unavailable Error",
"description": "The server is temporarily unable to handle the request, for example, because of planned maintenance or downtime.",
"properties": {
"name": {
"type": "string",
"enum": ["SERVICE_UNAVAILABLE"]
},
"message": {
"type": "string",
"enum": ["Service Unavailable."]
},
"debug_id": {
"type": "string",
"description": "The PayPal internal ID. Used for correlation purposes."
},
"links": {
"description": "An array of request-related [HATEOAS links](https://en.wikipedia.org/wiki/HATEOAS).",
"type": "array",
"minItems": 0,
"maxItems": 10000,
"items": {
"$ref": "#/components/schemas/error_link_description"
}
}
},
"example": {
"name": "SERVICE_UNAVAILABLE",
"message": "Service Unavailable.",
"debug_id": "90957fca61718",
"information_link": "https://developer.paypal.com/docs/api/orders/v2/#error-SERVICE_UNAVAILABLE"
}
},
"error_default": {
"description": "The default error response.",
"oneOf": [
{
"$ref": "#/components/schemas/error_400"
},
{
"$ref": "#/components/schemas/error_401"
},
{
"$ref": "#/components/schemas/error_403"
},
{
"$ref": "#/components/schemas/error_404"
},
{
"$ref": "#/components/schemas/error_409"
},
{
"$ref": "#/components/schemas/error_415"
},
{
"$ref": "#/components/schemas/error_422"
},
{
"$ref": "#/components/schemas/error_500"
},
{
"$ref": "#/components/schemas/error_503"
}
]
},
"error_details": {
"title": "Error Details",
"type": "object",
"description": "The error details. Required for client-side `4XX` errors.",
"properties": {
"field": {
"type": "string",
"description": "The field that caused the error. If this field is in the body, set this value to the field's JSON pointer value. Required for client-side errors."
},
"value": {
"type": "string",
"description": "The value of the field that caused the error."
},
"location": {
"$ref": "#/components/schemas/error_location"
},
"issue": {
"type": "string",
"description": "The unique, fine-grained application-level error code."
},
"description": {
"type": "string",
"description": "The human-readable description for an issue. The description can change over the lifetime of an API, so clients must not depend on this value."
}
},
"required": ["issue"]
},
"error_link_description": {
"title": "Link Description",
"description": "The request-related [HATEOAS link](/api/rest/responses/#hateoas-links) information.",
"type": "object",
"required": ["href", "rel"],
"properties": {
"href": {
"description": "The complete target URL. To make the related call, combine the method with this [URI Template-formatted](https://tools.ietf.org/html/rfc6570) link. For pre-processing, include the `$`, `(`, and `)` characters. The `href` is the key HATEOAS component that links a completed call with a subsequent call.",
"type": "string",
"minLength": 0,
"maxLength": 20000,
"pattern": "^.*$"
},
"rel": {
"description": "The [link relation type](https://tools.ietf.org/html/rfc5988#section-4), which serves as an ID for a link that unambiguously describes the semantics of the link. See [Link Relations](https://www.iana.org/assignments/link-relations/link-relations.xhtml).",
"type": "string",
"minLength": 0,
"maxLength": 100,
"pattern": "^.*$"
},
"method": {
"description": "The HTTP method required to make the related call.",
"type": "string",
"minLength": 3,
"maxLength": 6,
"pattern": "^[A-Z]*$",
"enum": ["GET", "POST", "PUT", "DELETE", "PATCH"]
}
}
},
"error_location": {
"type": "string",
"description": "The location of the field that caused the error. Value is `body`, `path`, or `query`.",
"enum": ["body", "path", "query"],
"default": "body"
},
"incentive_detail": {
"type": "object",
"title": "Incentive Details",
"description": "The incentive details.",
"properties": {
"incentive_type": {
"type": "string",
"description": "The type of incentive, such as a special offer or coupon.",
"minLength": 1,
"maxLength": 500,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"incentive_code": {
"type": "string",
"description": "The code that identifies an incentive, such as a coupon.",
"minLength": 1,
"maxLength": 200,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"incentive_amount": {
"$ref": "#/components/schemas/money",
"description": "The incentive amount."
},
"incentive_program_code": {
"type": "string",
"description": "The incentive program code that identifies a merchant loyalty or incentive program.",
"minLength": 1,
"maxLength": 100,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
}
}
},
"incentive_detail_list": {
"type": "array",
"description": "An array of incentive details.",
"items": {
"$ref": "#/components/schemas/incentive_detail"
},
"maxItems": 32767,
"minItems": 1
},
"incentive_info": {
"type": "object",
"title": "Incentive Information",
"description": "The incentive details.",
"properties": {
"incentive_details": {
"$ref": "#/components/schemas/incentive_detail_list"
}
}
},
"item_detail": {
"type": "object",
"title": "Item Details",
"description": "The item details.",
"properties": {
"item_code": {
"type": "string",
"description": "An item code that identifies a merchant's goods or service.",
"minLength": 1,
"maxLength": 1000,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"item_name": {
"type": "string",
"description": "The item name.",
"minLength": 1,
"maxLength": 200,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"item_description": {
"type": "string",
"description": "The item description.",
"minLength": 1,
"maxLength": 2000,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"item_options": {
"type": "string",
"description": "The item options. Describes option choices on the purchase of the item in some detail.",
"minLength": 1,
"maxLength": 4000,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"item_quantity": {
"type": "string",
"description": "The number of purchased units of goods or a service.",
"minLength": 1,
"maxLength": 4000,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"item_unit_price": {
"$ref": "#/components/schemas/money",
"description": "The cost for each instance of goods or a service."
},
"item_amount": {
"$ref": "#/components/schemas/money",
"description": "The amount of the payment for the item."
},
"discount_amount": {
"$ref": "#/components/schemas/money",
"description": "The reduction in price associated with goods or a service."
},
"adjustment_amount": {
"$ref": "#/components/schemas/money",
"description": "An increment or decrement to a purchase amount."
},
"gift_wrap_amount": {
"$ref": "#/components/schemas/money",
"description": "The amount of money charged for gift wrapping an item."
},
"tax_percentage": {
"$ref": "#/components/schemas/percentage",
"description": "A rate, expressed in hundreds, that is used to calculate a levy for the purchase of goods or services.",
"maxLength": 10,
"pattern": "^((-?[0-9]+)|(-?([0-9]+)?[.][0-9]+))$"
},
"tax_amounts": {
"$ref": "#/components/schemas/item_detail_tax_amount_list"
},
"basic_shipping_amount": {
"$ref": "#/components/schemas/money",
"description": "The delivery cost."
},
"extra_shipping_amount": {
"$ref": "#/components/schemas/money",
"description": "The cost for expedited delivery of the goods."
},
"handling_amount": {
"$ref": "#/components/schemas/money",
"description": "A charge for processing the purchase of goods or services."
},
"insurance_amount": {
"$ref": "#/components/schemas/money",
"description": "A charge for guaranteeing the quality of a product or delivery of a product."
},
"total_item_amount": {
"$ref": "#/components/schemas/money",
"description": "The sum of all factors, item cost, discounts, tax, shipping, and so on, that goes into the cost of an item."
},
"invoice_number": {
"type": "string",
"description": "The invoice number. An alphanumeric string that identifies a billing for a merchant.",
"minLength": 1,
"maxLength": 200,
"pattern": "^[a-zA-Z0-9_'\\-., \":;\\!?]*$"
},
"checkout_options": {
"$ref": "#/components/schemas/checkout_option_list"
}
}
},
"item_detail_list": {
"type": "array",
"description": "An array of item details.",
"maxItems": 32767,
"minItems": 1,
"items": {
"$ref": "#/components/schemas/item_detail"
}
},
"item_detail_tax_amount": {
"type": "object",
"title": "Tax Amount",
"description": "The tax levied by a government on the purchase of goods or services.",
"properties": {