Skip to content

Instantly share code, notes, and snippets.

@Visgean
Last active April 21, 2023 11:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Visgean/01346fbad5bf5b384e65 to your computer and use it in GitHub Desktop.
Save Visgean/01346fbad5bf5b384e65 to your computer and use it in GitHub Desktop.
List of serialized paypal errors from https://developer.paypal.com/docs/classic/api/errorcodes/
#!/usr/bin/python
# -*- coding: utf-8 -*-
ERROR_CODES = {
11607: {'long': 'A successful transaction has already been completed for this token.',
'short': 'Duplicate Request'},
12302: {'long': 'This transaction already has a PayPal dispute filed',
'short': 'Dispute Refund Not Allowed'},
81243: {'long': 'RefundType : Invalid parameter',
'short': 'Invalid Parameter'},
81244: {'long': 'StartDate : Invalid parameter',
'short': 'Invalid Parameter'},
10301: {'long': 'The user is not allowed to send money through Mass Pay',
'short': 'User not allowed'},
10303: {'long': 'Account is restricted',
'short': 'Restricted account'},
10304: {'long': 'The user account has unconfirmed email',
'short': 'Unconfirmed email'},
10305: {'long': 'The user account needs to have its sending limit removed in order to make a mass payment.',
'short': 'Limit Exceeded'},
10306: {'long': "The user's international account needs to have its sending limit removed in order to make a mass payment",
'short': 'Limit Exceeded'},
10307: {'long': 'The user account is receive only and therefore cannot send payments out',
'short': 'Receive only account'},
10308: {'long': 'There is some configuration error',
'short': 'Masspay server configuration error'},
10309: {'long': 'The mass pay server is unavailable',
'short': 'Masspay server unavailable'},
10310: {'long': 'Unable to create payments for masspay',
'short': 'Unable to create payment'},
10311: {'long': 'Unable to submit payments for masspay',
'short': 'Unable to submit payment'},
10312: {'long': 'The masspay server has reported errors',
'short': 'Masspay server error'},
10313: {'long': 'The masspay input file includes invalid data',
'short': 'Masspay Invalid Data'},
10314: {'long': 'The input to the masspay server is incorrect. Please make sure that you are using a correctly formatted input.',
'short': 'Masspay input parse error'},
10317: {'long': 'The masspay input file includes invalid Email',
'short': 'Masspay Invalid Email'},
10320: {'long': 'Internal Error', 'short': 'Internal Error'},
10321: {'long': 'The account does not have sufficient funds to do this masspay',
'short': 'Insufficient funds'},
10327: {'long': 'The masspay input file includes invalid UserID',
'short': 'Masspay Invalid UserID'},
10400: {'long': 'Order total is missing.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10401: {'long': 'Order total is invalid.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10402: {'long': 'This merchant account is not permitted to set PaymentAction? to Authorization. Please contact Customer Service.',
'short': 'Authorization only is not allowed for merchant.'},
10404: {'long': 'ReturnURL is missing.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10405: {'long': 'CancelURL is missing.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10406: {'long': 'The PayerID value is invalid.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10407: {'long': 'Invalid buyer email address (BuyerEmail).',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10408: {'long': 'Token is missing', 'short': 'Missing token'},
10409: {'long': 'Express Checkout token was issued for a merchant account other than yours.',
'short': "You're not authorized to access this info."},
10410: {'long': 'Invalid token.', 'short': 'Invalid token'},
10411: {'long': 'This Express Checkout session has expired. Token value is no longer valid.',
'short': 'This Express Checkout session has expired.'},
10412: {'long': 'Payment has already been made for this InvoiceID.',
'short': 'Duplicate invoice'},
10413: {'long': 'The totals of the cart item amounts do not match order amounts.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10414: {'long': 'The amount exceeds the maximum amount for a single transaction.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10415: {'long': 'A successful transaction has already been completed for this token.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10416: {'long': 'You have exceeded the maximum number of payment attempts for this token.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10417: {'long': 'Instruct the customer to retry the transaction using an alternative payment method from the customers PayPal wallet. The transaction did not complete with the customers selected payment method.',
'short': 'Transaction cannot complete.'},
10418: {'long': 'The currencies of the shopping cart amounts must be the same.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10419: {'long': 'Express Checkout PayerID is missing.',
'short': 'Express Checkout PayerID is missing.'},
10420: {'long': 'PaymentAction? tag is missing.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10421: {'long': 'This Express Checkout session belongs to a different customer. Token value mismatch.',
'short': 'This Express Checkout session belongs to a different customer.'},
10422: {'long': 'The customer must return to PayPal to select new funding sources.',
'short': 'Customer must choose new funding sources.'},
10423: {'long': 'This transaction cannot be completed with PaymentAction of Authorization.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10424: {'long': 'Shipping address is invalid.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10425: {'long': 'Express Checkout has been disabled for this merchant. Please contact Customer Service.',
'short': 'Express Checkout has been disabled for this merchant.'},
10426: {'long': 'Item total is invalid.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10427: {'long': 'Shipping total is invalid.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10428: {'long': 'Handling total is invalid.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10429: {'long': 'Item sales tax is invalid',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10430: {'long': 'Item amount is missing.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10431: {'long': 'Item amount is invalid.',
'short': 'Item amount is invalid.'},
10432: {'long': 'Invoice ID value exceeds maximum allowable length.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10433: {'long': 'Value of OrderDescription element has been truncated.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10434: {'long': 'Value of Custom element has been truncated.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10435: {'long': 'The customer has not yet confirmed payment for this Express Checkout session.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10436: {'long': 'PageStyle value exceeds maximum allowable length.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10437: {'long': 'cpp-header-image value exceeds maximum allowable length.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10438: {'long': 'cpp-header-border-color value exceeds maximum allowable length.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10439: {'long': 'cpp-header-back-color value exceeds maximum allowable length.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10440: {'long': 'cpp-payflow-color value exceeds maximum allowable length.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10441: {'long': 'The NotifyURL element value exceeds maximum allowable length.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10442: {'long': 'The ButtonSource element value exceeds maximum allowable length.',
'short': 'ButtonSource value truncated.'},
10443: {'long': 'This transaction cannot be completed with PaymentAction of Order.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10444: {'long': 'The transaction currency specified must be the same as previously specified.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10445: {'long': 'This transaction cannot be processed at this time. Please try again later.',
'short': 'This transaction cannot be processed at this time. Please try again later.'},
10446: {'long': 'Sale is only allowed PaymentAction.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10448: {'long': 'A confirmed email is required to make this API call.',
'short': 'Unconfirmed email'},
10449: {'long': 'Order not found.',
'short': 'Error occurred in communicating to eBay.'},
10452: {'long': 'This transaction cannot be completed with Auction Items.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10457: {'long': 'eBay API creation error.',
'short': 'Error occurred in communicating to eBay.'},
10458: {'long': 'eBay API unknown failure.',
'short': 'Error occurred in communicating to eBay.'},
10459: {'long': 'eBay API failure.',
'short': 'Error occurred in communicating to eBay.'},
10460: {'long': 'Parsing error.',
'short': 'Error occurred in communicating to eBay.'},
10461: {'long': 'Item number invalid, removed, or unavailable.',
'short': 'Error occurred in communicating to eBay.'},
10462: {'long': 'Order not found.',
'short': 'Error occurred in communicating to eBay.'},
10463: {'long': 'eBay user password incorrect.',
'short': 'Error occurred in communicating to eBay.'},
10464: {'long': 'eBay user invalid.',
'short': 'Error occurred in communicating to eBay.'},
10465: {'long': 'Item ID and Transaction ID mismatch.',
'short': 'Error occurred in communicating to eBay.'},
10467: {'long': 'Duplicate Item ID.',
'short': 'Error occurred in communicating to eBay.'},
10468: {'long': 'Duplicate Order ID.',
'short': 'Error occurred in communicating to eBay.'},
10469: {'long': 'Express Auctions is unavailable',
'short': 'PaymentAction of Order Temporarily Unavailable'},
10470: {'long': 'Solution Type passed as Sole while ExpressO feature is turned off',
'short': 'Wowo flag is off for ExpressO feature'},
10471: {'long': 'ReturnURL is invalid.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10472: {'long': 'CancelURL is invalid.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10473: {'long': 'Multiple Order IDs are not supported.',
'short': 'Error occurred in communicating to eBay.'},
10474: {'long': "This transaction cannot be processed. The shipping country is not allowed by the buyer's country of residence.",
'short': 'Invalid Data'},
10475: {'long': 'This transaction cannot be completed with PaymentAction of Sale.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10476: {'long': '',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10477: {'long': '',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10478: {'long': 'Recurring payments profile description must be provided if the billing agreement type is recurring payments.',
'short': 'Invalid Data'},
10479: {'long': 'Billing agreement types cannot be mixed in the same request',
'short': 'Invalid Data'},
10480: {'long': 'Invalid billing agreement type',
'short': 'Invalid Data'},
10481: {'long': 'PaymentAction of Authorization is not allowed with Unilateral and Non-Credentialed authentication.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10482: {'long': 'PaymentAction of Order is not allowed with Unilateral and Non-Credentialed authentication.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10485: {'long': 'Payment has not been authorized by the user.',
'short': 'Payment not authorized'},
10486: {'long': "This transaction couldn't be completed. Please redirect your customer to PayPal.",
'short': "This transaction couldn't be completed."},
10500: {'long': 'This transaction cannot be processed due to an invalid merchant configuration.',
'short': 'Invalid Configuration'},
10501: {'long': 'This transaction cannot be processed due to an invalid merchant configuration.',
'short': 'Invalid Configuration'},
10502: {'long': 'This transaction cannot be processed. Please use a valid credit card.',
'short': 'Invalid Data'},
10504: {'long': 'This transaction cannot be processed. Please enter a valid Credit Card Verification Number.',
'short': 'The cvv2 is invalid.'},
10505: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
10507: {'long': 'This transaction cannot be processed. Please contact PayPal Customer Service.',
'short': 'Invalid Configuration'},
10508: {'long': 'This transaction cannot be processed. Please enter a valid credit card expiration date.',
'short': 'Invalid Data'},
10509: {'long': 'This transaction cannot be processed.',
'short': 'Invalid Data'},
10510: {'long': 'The credit card type is not supported. Try another card type.',
'short': 'Invalid Data'},
10511: {'long': 'This transaction cannot be processed.',
'short': 'Invalid Data'},
10512: {'long': 'This transaction cannot be processed. Please enter a first name.',
'short': 'Invalid Data'},
10513: {'long': 'This transaction cannot be processed. Please enter a last name.',
'short': 'Invalid Data'},
10519: {'long': 'Please enter a credit card.',
'short': 'Invalid Data'},
10520: {'long': 'This transaction cannot be processed.',
'short': 'Invalid Data'},
10521: {'long': 'This transaction cannot be processed. Please enter a valid credit card.',
'short': 'Invalid Data'},
10523: {'long': 'This transaction cannot be processed.',
'short': 'Internal Error'},
10525: {'long': 'This transaction cannot be processed. The amount to be charged is zero.',
'short': 'Invalid Data'},
10526: {'long': 'This transaction cannot be processed. The currency is not supported at this time.',
'short': 'Invalid Data'},
10527: {'long': 'This transaction cannot be processed. Please enter a valid credit card number and type.',
'short': 'Invalid Data'},
10534: {'long': 'This transaction cannot be processed. Please enter a valid credit card number and type.',
'short': 'Gateway Decline'},
10535: {'long': 'This transaction cannot be processed. Please enter a valid credit card number and type.',
'short': 'Gateway decline'},
10536: {'long': 'The transaction was refused as a result of a duplicate invoice ID supplied. Attempt with a new invoice ID.',
'short': 'Invalid Data'},
10537: {'long': 'The transaction was refused because the country was prohibited as a result of your Country Monitor Risk Control Settings.',
'short': 'Risk Control Country Filter Failure'},
10538: {'long': 'The transaction was refused because the maximum amount was exceeded as a result of your Maximum Amount Risk Control Settings.',
'short': 'Risk Control Max Amount Failure'},
10539: {'long': 'Payment declined by your Risk Controls settings: PayPal Risk Model.',
'short': 'Payment declined by your Risk Controls settings: PayPal Risk Model.'},
10540: {'long': 'The transaction cannot be processed due to an invalid address.',
'short': 'Invalid Data'},
10541: {'long': 'Please use a different payment card.',
'short': 'Transaction cannot be processed.'},
10542: {'long': 'This transaction cannot be processed. Please enter a valid email address.',
'short': 'Invalid Email Address.'},
10544: {'long': 'Please use a different payment card.',
'short': 'This transaction cannot be processed.'},
10545: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
10546: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
10547: {'long': 'This transaction cannot be processed.',
'short': 'Internal Error'},
10548: {'long': "This transaction cannot be processed. The merchant's account is not able to process transactions.",
'short': 'Invalid Configuration'},
10549: {'long': "This transaction cannot be processed. The merchant's account is not able to process transactions.",
'short': 'Invalid Configuration'},
10550: {'long': 'This transaction cannot be processed.',
'short': 'Invalid Configuration'},
10552: {'long': 'This transaction cannot be processed.',
'short': 'Invalid Configuration'},
10553: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
10554: {'long': 'This transaction cannot be processed.',
'short': 'Filter Decline'},
10555: {'long': 'This transaction cannot be processed.',
'short': 'Filter Decline'},
10556: {'long': 'This transaction cannot be processed.',
'short': 'Filter Decline'},
10557: {'long': 'A profile preference is set to automatically deny certain transactions.',
'short': 'Profile preference setting.'},
10558: {'long': 'Your processor is unable to process the Card Type in the currency requested. Please try another card type.',
'short': 'Currency Not Supported for Card Type.'},
10560: {'long': 'The issue number of the credit card is invalid.',
'short': 'Invalid Data'},
10561: {'long': "There's an error with this transaction. Please enter complete billing address.",
'short': 'Invalid Data'},
10562: {'long': 'This transaction cannot be processed. Please enter a valid credit card expiration year.',
'short': 'Invalid Data'},
10563: {'long': 'This transaction cannot be processed. Please enter a valid credit card expiration month.',
'short': 'Invalid Data'},
10564: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
10565: {'long': 'The merchant country is not supported.',
'short': 'Merchant country unsupported'},
10566: {'long': 'The credit card type is not supported',
'short': 'Credit card type unsupported'},
10567: {'long': 'A Start Date or Issue Number is required.',
'short': 'Invalid Data'},
10570: {'long': 'Authorization is not supported for this funding source.',
'short': 'Authorization is not supported for this funding source.'},
10571: {'long': 'This transaction was approved, although the Card Security Code (CSC) had too few, too many, or invalid characters. Based on your account profile settings, the invalid CSC was not given to the card issuer for its approval process.',
'short': 'Transaction approved, but with invalid Card Security Code (CSC) format.'},
10574: {'long': 'This card authorization verification is not a payment transaction.',
'short': 'Credit card verified'},
10575: {'long': 'The API Operation is not allowed for the transaction being referenced.',
'short': 'The API Operation is not allowed.'},
10576: {'long': 'A customer service phone number is required to process transactions. Please add a customer service phone number to your PayPal account or contact PayPal for more info.',
'short': 'Invalid configuration.'},
10577: {'long': 'This transaction cannot be processed. The merchant must not attempt payment on this card again for this buyer.',
'short': 'Gateway Decline.'},
10600: {'long': 'Authorization is voided.',
'short': 'Authorization voided.'},
10601: {'long': 'Authorization has expired.',
'short': 'Authorization expired.'},
10602: {'long': 'Authorization has already been completed.',
'short': 'Authorization completed.'},
10603: {'long': 'The buyer account is restricted.',
'short': 'The buyer is restricted.'},
10604: {'long': 'Authorization transaction cannot be unilateral. It must include both buyer and seller to make an auth.',
'short': 'Authorization must include both buyer and seller.'},
10605: {'long': 'Currency is not supported.',
'short': 'Unsupported currency.'},
10606: {'long': 'Transaction cannot be processed.',
'short': 'Transaction cannot be processed.'},
10607: {'long': 'Authorization & Capture feature unavailable.',
'short': 'Auth&Capture unavailable.'},
10608: {'long': 'The funding source is missing.',
'short': 'Funding source missing.'},
10609: {'long': 'Transaction id is invalid.',
'short': 'Invalid transactionID.'},
10610: {'long': 'Amount specified exceeds allowable limit.',
'short': 'Amount limit exceeded.'},
10611: {'long': 'Authorization & Capture feature is not enabled for the merchant. Contact customer service.',
'short': 'Not enabled.'},
10612: {'long': 'Maximum number of allowable settlements has been reached. No more settlement for the authorization.',
'short': 'No more settlement.'},
10613: {'long': 'Currency of capture must be the same as currency of authorization.',
'short': 'Currency mismatch.'},
10614: {'long': 'You can void only the original authorization, not a reauthorization.',
'short': 'Cannot void reauth.'},
10615: {'long': 'You can reauthorize only the original authorization, not a reauthorization.',
'short': 'Cannot reauth reauth.'},
10616: {'long': 'Maximum number of reauthorization allowed for the auth is reached.',
'short': 'Maximum number of reauthorization allowed for the auth is reached.'},
10617: {'long': 'Reauthorization is not allowed inside honor period.',
'short': 'Reauthorization not allowed.'},
10618: {'long': 'Transaction has already been voided or expired.',
'short': 'Transaction already voided or expired.'},
10619: {'long': 'Invoice ID value exceeds maximum allowable length.',
'short': 'Invoice ID value exceeds maximum allowable length.'},
10620: {'long': 'Order has already been voided, expired or completed.',
'short': 'Order has already been voided, expired or completed.'},
10621: {'long': 'Order has expired.',
'short': 'Order has expired.'},
10622: {'long': 'Order is voided.', 'short': 'Order is voided.'},
10623: {'long': 'Maximum number of authorization allowed for the order is reached.',
'short': 'Maximum number of authorization allowed for the order is reached.'},
10624: {'long': 'Payment has already been made for this InvoiceID.',
'short': 'Duplicate invoice'},
10625: {'long': 'The amount exceeds the maximum amount for a single transaction.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10626: {'long': '', 'short': 'Risk'},
10627: {'long': 'The invoice ID field is not supported for basic authorizations',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
10628: {'long': 'This transaction cannot be processed at this time. Please try again later.',
'short': 'This transaction cannot be processed at this time. Please try again later.'},
10629: {'long': 'Reauthorization is not allowed for this type of authorization.',
'short': 'Reauthorization not allowed.'},
10630: {'long': 'Item amount is invalid.',
'short': 'Item amount is invalid.'},
10631: {'long': 'The authorization is being processed.',
'short': 'Processor Warning'},
10632: {'long': 'Currency of authorization must be the same as currency of order.',
'short': 'Currency mismatch.'},
10633: {'long': 'Currency of re-authorization must be the same as currency of authorization.',
'short': 'Currency mismatch.'},
10634: {'long': 'This transaction cannot be processed at this time. Please try again later.',
'short': 'This transaction cannot be processed at this time. Please try again later.'},
10635: {'long': 'This authorization was already reauthorized. Use the reauthorized transaction id to do an update.',
'short': 'Cannot update a reauthorized authorization.'},
10701: {'long': "There's an error with this transaction. Please enter a valid billing address.",
'short': 'Invalid Data'},
10702: {'long': "There's an error with this transaction. Please enter a valid address1 in the billing address.",
'short': 'Invalid Data'},
10703: {'long': "There's an error with this transaction. Please enter a valid address2 in the billing address.",
'short': 'Invalid Data'},
10704: {'long': "There's an error with this transaction. Please enter a valid city in the billing address.",
'short': 'Invalid Data'},
10705: {'long': "There's an error with this transaction. Please enter a valid state in the billing address.",
'short': 'Invalid Data'},
10706: {'long': "There's an error with this transaction. Please enter a valid postal code in the billing address.",
'short': 'Invalid Data'},
10707: {'long': "There's an error with this transaction. Please enter a valid country in the billing address.",
'short': 'Invalid Data'},
10708: {'long': "There's an error with this transaction. Please enter a complete billing address.",
'short': 'Invalid Data'},
10709: {'long': "There's an error with this transaction. Please enter an address1 in the billing address.",
'short': 'Invalid Data'},
10710: {'long': "There's an error with this transaction. Please enter a city in the billing address.",
'short': 'Invalid Data'},
10711: {'long': "There's an error with this transaction. Please enter your state in the billing address.",
'short': 'Invalid Data'},
10712: {'long': "There's an error with this transaction. Please enter your five digit postal code in the billing address.",
'short': 'Invalid Data'},
10713: {'long': "There's an error with this transaction. Please enter a country in the billing address.",
'short': 'Invalid Data'},
10714: {'long': "There's an error with this transaction. Please enter a valid billing address.",
'short': 'Invalid Data'},
10715: {'long': "There's an error with this transaction. Please enter a valid state in the billing address.",
'short': 'Invalid Data'},
10716: {'long': "There's an error with this transaction. Please enter a valid postal code in the billing address.",
'short': 'Invalid Data'},
10717: {'long': "There's an error with this transaction. Please enter a valid postal code in the billing address.",
'short': 'Invalid Data'},
10718: {'long': "There's an error with this transaction. Please enter a valid city and state in the billing address.",
'short': 'Invalid Data'},
10719: {'long': "There's an error with this transaction. Please enter a valid shipping address.",
'short': 'Invalid Data'},
10720: {'long': "There's an error with this transaction. Please enter a valid address1 in the shipping address.",
'short': 'Invalid Data'},
10721: {'long': "There's an error with this transaction. Please enter a valid address2 in the shipping address.",
'short': 'Invalid Data'},
10722: {'long': "There's an error with this transaction. Please enter a valid city in the shipping address.",
'short': 'Invalid Data'},
10723: {'long': "There's an error with this transaction. Please enter a valid state in the shipping address.",
'short': 'Invalid Data'},
10724: {'long': "There's an error with this transaction. Please enter your five digit postal code in the shipping address.",
'short': 'Invalid Data'},
10725: {'long': 'There was an error in the Shipping Address Country field',
'short': 'Shipping Address Country Error'},
10726: {'long': "There's an error with this transaction. Please enter a complete shipping address.",
'short': 'Invalid Data'},
10727: {'long': 'The field Shipping Address1 is required',
'short': 'Shipping Address1 Empty'},
10728: {'long': 'The field Shipping Address City is required',
'short': 'Shipping Address City Empty'},
10729: {'long': 'The field Shipping Address State is required',
'short': 'Shipping Address State Empty'},
10730: {'long': 'The field Shipping Address Postal Code is required',
'short': 'Shipping Address Postal Code Empty'},
10731: {'long': 'The field Shipping Address Country is required',
'short': 'Shipping Address Country Empty'},
10732: {'long': "There's an error with this transaction. Please enter a valid shipping address.",
'short': 'Invalid Data'},
10733: {'long': "There's an error with this transaction. Please enter a valid state in the shipping address.",
'short': 'Invalid Data'},
10734: {'long': "There's an error with this transaction. Please enter your five digit postal code in the shipping address.",
'short': 'Invalid Data'},
10735: {'long': "There's an error with this transaction. Please enter your five digit postal code in the shipping address.",
'short': 'Invalid Data'},
10736: {'long': 'A match of the Shipping Address City, State, and Postal Code failed.',
'short': 'Shipping Address Invalid City State Postal Code'},
10744: {'long': 'This transaction cannot be processed. Please enter a valid country code in the billing address.',
'short': 'Invalid Data'},
10745: {'long': 'This transaction cannot be processed. Please enter a valid country code in the shipping address.',
'short': 'Invalid Data'},
10746: {'long': 'This transaction cannot be processed. Please use a valid country on the billing address.',
'short': 'Invalid Data'},
10747: {'long': 'This transaction cannot be processed without a valid IP address.',
'short': 'Invalid Data'},
10748: {'long': 'This transaction cannot be processed without a Credit Card Verification number.',
'short': 'Invalid Data'},
10750: {'long': "There's an error with this transaction. Please enter a valid state in the shipping address.",
'short': 'Invalid Data'},
10751: {'long': "There's an error with this transaction. Please enter a valid state in the billing address.",
'short': 'Invalid Data'},
10752: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
10754: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
10755: {'long': 'Currency is not supported',
'short': 'Unsupported Currency.'},
10756: {'long': 'The transaction cannot be processed. The country and billing address associated with this credit card do not match.',
'short': 'Gateway Decline'},
10758: {'long': "There's been an error due to invalid API username and/or password.",
'short': 'Invalid Configuration'},
10759: {'long': 'This transaction cannot be processed. Please enter a valid credit card number and type.',
'short': 'Gateway Decline'},
10760: {'long': 'This transaction cannot be processed. The country listed for your business address is not currently supported.',
'short': 'Invalid Configuration'},
10761: {'long': 'This transaction cannot be processed. Please check the status of your first transaction before placing another order.',
'short': 'Gateway Decline'},
10762: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
10763: {'long': 'This transaction cannot be processed.',
'short': 'Invalid Data'},
10764: {'long': 'This transaction cannot be processed at this time. Please try again later.',
'short': 'This transaction cannot be processed at this time. Please try again later.'},
17203: {'long': 'Funding Instrument is invalid.',
'short': 'Invalid funding instrument.'},
10800: {'long': 'Your request is too long. Check URLs and other long strings.',
'short': 'Invalid Data'},
17204: {'long': 'Expired funding instrument.',
'short': 'Funding instrument expired.'},
17004: {'long': 'Your request was refused because of an invalid `LocationType`. Set `LocationType` to `Store` for a BOPIS transaction or `PICKUP_DROP_OFF` for a PUDO transaction.',
'short': 'Invalid Location Type.'},
19065: {'long': 'Invalid Request Parameter: RedeemedOfferAmount',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
15001: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
15002: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
15003: {'long': 'This transaction cannot be processed.',
'short': 'Invalid Configuration'},
15004: {'long': 'This transaction cannot be processed. Please enter a valid Credit Card Verification Number.',
'short': 'Gateway Decline'},
15005: {'long': 'This transaction cannot be processed.',
'short': 'Processor Decline'},
15006: {'long': 'This transaction cannot be processed. Please enter a valid credit card number and type.',
'short': 'Processor Decline'},
15007: {'long': 'This transaction cannot be processed. Please use a valid credit card.',
'short': 'Processor Decline'},
15008: {'long': 'This transaction has been completed, but the total of items in the cart did not match the total of all items.',
'short': 'Invalid Data'},
15009: {'long': 'This transaction cannot be processed. All shopping cart items must be in the same currency.',
'short': 'Invalid Data'},
15010: {'long': 'This authorization can only be handled through the gateway which created it. This authorization must be captured, voided, or reauthorized through the gateway.',
'short': 'This authorization must be captured, voided, or reauthorized through the gateway.'},
15011: {'long': 'This credit card was issued from an unsupported country.',
'short': 'Processor Decline'},
15012: {'long': 'The CE agreement for processing Mastercard is not accepted.',
'short': 'CE agreement is not accepted'},
11616: {'long': 'Merchant is not designated as airline merchant and can not pass airline itinerary data.',
'short': 'Ineligible Merchant Account.'},
11001: {'long': 'Value of NoteText element is truncated.',
'short': 'Exceeds maximum length.'},
11002: {'long': 'The number of results were truncated. Please change your search parameters if you wish to see all your results.',
'short': 'Search warning'},
17200: {'long': 'Funding Instrument is invalid.',
'short': 'Insufficient funds.'},
13100: {'long': 'Parallel payments functionality is not available',
'short': 'Parallel payments functionality is not available'},
13101: {'long': 'Payment action of Order is only supported for parallel payments',
'short': 'Invalid Data'},
13102: {'long': 'Payment Request ID is mandatory for parallel payments',
'short': 'Payment Request ID is missing'},
13103: {'long': 'Payment Request ID must be unique for parallel payments',
'short': 'Duplicate Payment Request ID passed'},
13104: {'long': 'Number of payment requests exceeds maximum number of supported requests.',
'short': 'Transaction refused because of an invalid argument. See Additional error messages for details.'},
13105: {'long': 'Billing Agreement is not supported for parallel payments.',
'short': 'Invalid Data'},
13106: {'long': 'You cannot pass both the new and deprecated PaymentAction parameter.',
'short': 'Invalid Data'},
13107: {'long': 'One or more payment requests failed. Check individual payment responses for more information.',
'short': 'Parallel payments partially successful.'},
13108: {'long': 'Merchant is not eligible for parallel payments.',
'short': 'Merchant is not eligible.'},
13109: {'long': 'The transaction cannot complete successfully. Instruct the customer to use a non AMEX card.',
'short': 'Transaction cannot complete due to Amex Restriction.'},
13110: {'long': 'Due to some technical difficulties the Multi Payments for Sale is not available now please try again later.',
'short': 'Multi Payments Sale is Not allowed'},
13111: {'long': 'The Payment Action passed should be unique, mixed Payment Action not supported',
'short': 'Mixed Payment action not supported'},
13112: {'long': 'The Buyer will not be able to Pay the seller for this transaction',
'short': 'Cannot Pay Seller.'},
13113: {'long': 'The Buyer cannot pay with PayPal for this Transaction.',
'short': 'Buyer Cannot Pay.'},
13114: {'long': 'The Buyer returned without completing the payment',
'short': "Buyer Didn't Complete"},
13115: {'long': 'Seller ID is mandatory for parallel payments',
'short': 'Seller ID Missing'},
11068: {'long': 'All sellers restricted.',
'short': 'Seller restriction.'},
13122: {'long': 'This transaction cannot be completed because it violates the PayPal User Agreement.',
'short': 'Transaction refused'},
11084: {'long': 'User does not have a good funding source with which to pay.',
'short': 'User does not have a good funding source with which to pay.'},
11089: {'long': 'Account is locked or inactive.',
'short': 'Transaction Refused.'},
11091: {'long': 'The transaction was blocked as it would exceed the sending limit for this buyer.',
'short': 'The transaction was blocked as it would exceed the sending limit for this buyer.'},
11094: {'long': 'This authorization can only be handled through the marketplace which created it. It cannot directly be voided, reauthorized, or captured against.',
'short': 'This authorization cannot be voided, reauthorized, or captured against.'},
13116: {'long': 'The transaction is in progress for this token.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
11302: {'long': 'The transaction was refused because you cannot send money to yourself.',
'short': 'Cannot pay self'},
81000: {'long': 'Required Parameter Missing : Unable to identify parameter',
'short': 'Missing Parameter'},
81001: {'long': 'A Parameter is Invalid : Unable to identify parameter',
'short': 'Invalid Parameter'},
81002: {'long': 'Method Specified is not Supported',
'short': 'Unspecified Method'},
81003: {'long': 'No Method Specified',
'short': 'Unspecified Method'},
81004: {'long': 'No Request Received',
'short': 'Unspecified Method'},
11401: {'long': 'The transaction cannot complete successfully due to a failure in UATP number generation.',
'short': 'Internal Error.'},
11403: {'long': 'This transaction cannot be processed. UATP Card expired.',
'short': 'UATP Card Expired.'},
11404: {'long': 'This transaction cannot be processed. No UATP card exist in the system for given card number and expiration.',
'short': 'Invalid UATP Card.'},
11406: {'long': 'This transaction cannot be processed. Merchant is not designated as UATP airline.',
'short': 'Ineligible Merchant Account.'},
11407: {'long': 'Invalid Payment Action for UATP Airlines',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
11451: {'long': 'Billing Agreement Id or transaction Id is not valid',
'short': 'Billing Agreement Id or transaction Id is not valid'},
11452: {'long': 'Merchant not enabled for reference transactions',
'short': 'Merchant not enabled for reference transactions'},
11453: {'long': 'Reference transaction feature not currently available; try again later',
'short': 'Reference transactions temporarily unavailable.'},
11454: {'long': 'Warning: Could not send email to the buyer',
'short': 'Warning: Could not send email to the buyer'},
11455: {'long': 'Buyer did not accept billing agreement',
'short': 'Buyer did not accept billing agreement'},
11456: {'long': 'Transaction refused because of an invalid argument. See additional error messages for details.',
'short': 'A successful Billing Agreement has already been created for this token.'},
11457: {'long': 'The Reference ID refers to a transaction or order that is more than 730 days old',
'short': 'Referenced transaction or order is too old'},
11458: {'long': 'Credit card details section must be empty; you cannot specify credit card information in a non-direct payment (DCC) reference transaction.',
'short': 'Invalid Data'},
11459: {'long': "The shipping address must match the user's address in the PayPal account.",
'short': 'Invalid Data'},
13513: {'long': 'The specified Invoice ID is a duplicate.',
'short': 'Duplicate request for specified Invoice ID.'},
81100: {'long': 'OrderTotal (Amt) : Required parameter missing',
'short': 'Missing Parameter'},
81101: {'long': 'MaxAmt : Required parameter missing',
'short': 'Missing Parameter'},
81102: {'long': 'ReturnURL: Required parameter missing',
'short': 'Missing Parameter'},
81103: {'long': 'NotifyURL : Required parameter missing',
'short': 'Missing Parameter'},
81104: {'long': 'CancelURL : Required parameter missing',
'short': 'Missing Parameter'},
81105: {'long': 'ShipToStreet : Required parameter missing',
'short': 'Missing Parameter'},
81106: {'long': 'ShipToStreet2 : Required parameter missing',
'short': 'Missing Parameter'},
81107: {'long': 'ShipToCity : Required parameter missing',
'short': 'Missing Parameter'},
81108: {'long': 'ShipToState : Required parameter missing',
'short': 'Missing Parameter'},
81109: {'long': 'ShipToZip : Required parameter missing',
'short': 'Missing Parameter'},
81110: {'long': 'Country : Required parameter missing',
'short': 'Missing Parameter'},
81111: {'long': 'ReqConfirmShipping : Required parameter missing',
'short': 'Missing Parameter'},
81112: {'long': 'NoShipping : Required parameter missing',
'short': 'Missing Parameter'},
81113: {'long': 'AddrOverride : Required parameter missing',
'short': 'Missing Parameter'},
81114: {'long': 'LocaleCode : Required parameter missing',
'short': 'Missing Parameter'},
81115: {'long': 'PaymentAction : Required parameter missing',
'short': 'Missing Parameter'},
81116: {'long': 'Email : Required parameter missing',
'short': 'Missing Parameter'},
81117: {'long': 'Token : Required parameter missing',
'short': 'Missing Parameter'},
81118: {'long': 'PayerID : Required parameter missing',
'short': 'Missing Parameter'},
81119: {'long': 'ItemAmt : Required parameter missing',
'short': 'Missing Parameter'},
81120: {'long': 'ShippingAmt : Required parameter missing',
'short': 'Missing Parameter'},
81121: {'long': 'HandlingAmt : Required parameter missing',
'short': 'Missing Parameter'},
81122: {'long': 'TaxAmt : Required parameter missing',
'short': 'Missing Parameter'},
81123: {'long': 'IPAddress : Required parameter missing',
'short': 'Missing Parameter'},
81124: {'long': 'ShipToName : Required parameter missing',
'short': 'Missing Parameter'},
81125: {'long': 'L_Amt : Required parameter missing',
'short': 'Missing Parameter'},
81126: {'long': 'Amt : Required parameter missing',
'short': 'Missing Parameter'},
81127: {'long': 'L_TaxAmt : Required parameter missing',
'short': 'Missing Parameter'},
81128: {'long': 'AuthorizationID : Required parameter missing',
'short': 'Missing Parameter'},
81129: {'long': 'CompleteType : Required parameter missing',
'short': 'Missing Parameter'},
81130: {'long': 'CurrencyCode : Required parameter missing',
'short': 'Missing Parameter'},
81131: {'long': 'TransactionID : Required parameter missing',
'short': 'Missing Parameter'},
81132: {'long': 'TransactionEntity : Required parameter missing',
'short': 'Missing Parameter'},
81133: {'long': 'Acct : Required parameter missing',
'short': 'Missing Parameter'},
81134: {'long': 'ExpDate : Required parameter missing',
'short': 'Missing Parameter'},
81135: {'long': 'FirstName : Required parameter missing',
'short': 'Missing Parameter'},
81136: {'long': 'LastName : Required parameter missing',
'short': 'Missing Parameter'},
81137: {'long': 'Street : Required parameter missing',
'short': 'Missing Parameter'},
81138: {'long': 'Street2 : Required parameter missing',
'short': 'Missing Parameter'},
81139: {'long': 'City : Required parameter missing',
'short': 'Missing Parameter'},
81140: {'long': 'State : Required parameter missing',
'short': 'Missing Parameter'},
81141: {'long': 'Zip : Required parameter missing',
'short': 'Missing Parameter'},
81142: {'long': 'CountryCode : Required parameter missing',
'short': 'Missing Parameter'},
81143: {'long': 'RefundType : Required parameter missing',
'short': 'Missing Parameter'},
81144: {'long': 'StartDate : Required parameter missing',
'short': 'Missing Parameter'},
81145: {'long': 'EndDate : Required parameter missing',
'short': 'Missing Parameter'},
81146: {'long': 'MPID : Required parameter missing',
'short': 'Missing Parameter'},
81147: {'long': 'CreditCardType : Required parameter missing',
'short': 'Missing Parameter'},
81148: {'long': 'User : Required parameter missing',
'short': 'Missing Parameter'},
81149: {'long': 'Pwd : Required parameter missing',
'short': 'Missing Parameter'},
81150: {'long': 'Version : Required parameter missing',
'short': 'Missing Parameter'},
11519: {'long': 'Bill amount must be greater than 0',
'short': 'Invalid amount'},
11520: {'long': 'This currency is currently not supported for amount',
'short': 'Invalid currency for amount'},
11521: {'long': 'Shipping amount must be >= 0',
'short': 'Invalid shipping amount'},
11522: {'long': 'This currency is currently not supported for shipping amount',
'short': 'Invalid currency for shipping amount'},
11523: {'long': 'Tax amount must be >= 0',
'short': 'Invalid tax amount'},
11524: {'long': 'This currency is currently not supported for tax amount',
'short': 'Invalid currency for tax amount'},
11531: {'long': 'The profile status must be one of (A)ctive, (C)ancelled, or e(X)pired',
'short': 'Invalid profile status'},
11543: {'long': "The payer's country is currently not supported",
'short': 'Invalid payer country'},
11544: {'long': 'The trial period status must be one of (A)ctive or (C)ancelled',
'short': 'Invalid period status'},
11545: {'long': "Payer's account is denied", 'short': 'Denied'},
11546: {'long': 'Merchant account is denied', 'short': 'Denied'},
11547: {'long': 'Recurring payments feature is not currently available; try again later',
'short': 'This feature is not available at this time'},
11548: {'long': 'Invalid currency code, all currency codes much match',
'short': 'Invalid currency code'},
11549: {'long': 'Subscription start date is required',
'short': 'Start Date is required'},
11550: {'long': 'Subscription start date should be valid',
'short': 'Start Date should be valid'},
11551: {'long': 'Profile ID is missing from the request',
'short': 'Profile ID is missing from the request'},
11552: {'long': 'The profile ID is invalid',
'short': 'Invalid profile ID'},
13601: {'long': 'Refunds to users without PayPal accounts cannot exceed the transaction amount.',
'short': 'Refund cannot exceed the transaction amount.'},
13602: {'long': 'Refund failed due to insufficient funds in your PayPal account',
'short': 'Insufficient funds'},
13531: {'long': 'The funding source provided for this operation is not supported. Please provide a valid value.',
'short': 'Funding source provided for this operation is not supported'},
11556: {'long': 'Invalid profile status for suspend action; profile should be active',
'short': 'Invalid profile status for cancel action; profile should be active or suspended'},
11557: {'long': 'Invalid profile status for reactivate action; profile should be suspended',
'short': 'Invalid profile status for suspend action; profile should be active'},
13606: {'long': 'You are not enabled for this feature.',
'short': 'Feature Not Enabled.'},
13607: {'long': 'The Funding source provided is not usable. Please provide different funding source.',
'short': 'Funding source provided is not usable.'},
11560: {'long': 'The activation type is invalid',
'short': 'Invalid activation type'},
11561: {'long': 'The initial amount is invalid',
'short': 'Invalid initial amount'},
11562: {'long': 'The auto bill type is invalid',
'short': 'Invalid auto bill type'},
11564: {'long': 'The number of failed payments should be greater than the current number of failed payments',
'short': 'The number of failed payments should be greater than the current number of failed payments'},
11567: {'long': 'The time of the update is too close to the billing date',
'short': 'The time of the update is too close to the billing date'},
81200: {'long': 'Amt : Invalid parameter',
'short': 'Missing Parameter'},
81201: {'long': 'MaxAmt : Invalid parameter',
'short': 'Invalid Parameter'},
11570: {'long': 'The maximum number of failed payments should be greater than the current number of failed payments',
'short': 'The maximum number of failed payments should be greater than the current number of failed payments'},
81203: {'long': 'NotifyURL : Invalid parameter',
'short': 'Invalid Parameter'},
81205: {'long': 'ShipToStreet : Invalid parameter',
'short': 'Invalid Parameter'},
81206: {'long': 'ShipToStreet2 : Invalid parameter',
'short': 'Invalid Parameter'},
81207: {'long': 'ShipToCity : Invalid parameter',
'short': 'Invalid Parameter'},
81208: {'long': 'ShipToState : Invalid parameter',
'short': 'Invalid Parameter'},
81209: {'long': 'ShipToZip : Invalid parameter',
'short': 'Invalid Parameter'},
81210: {'long': 'Country : Invalid parameter',
'short': 'Invalid Parameter'},
81211: {'long': 'ReqConfirmShipping : Invalid parameter',
'short': 'Invalid Parameter'},
81212: {'long': 'Noshipping : Invalid parameter',
'short': 'Invalid Parameter'},
81213: {'long': 'AddrOverride : Invalid parameter',
'short': 'Invalid Parameter'},
81214: {'long': 'LocaleCode : Invalid parameter',
'short': 'Invalid Parameter'},
81215: {'long': 'PaymentAction : Invalid parameter',
'short': 'Invalid Parameter'},
11584: {'long': 'Profile is not active',
'short': 'Inactive profile'},
11585: {'long': 'Missing token or payment source',
'short': 'Missing Token or buyer credit card'},
11586: {'long': 'DPRP is disabled for this merchant.',
'short': 'DPRP is disabled'},
81219: {'long': 'ItemAmt : Invalid parameter',
'short': 'Invalid Parameter'},
81220: {'long': 'ShippingAmt : Invalid parameter',
'short': 'Invalid Parameter'},
81221: {'long': 'HandlingTotal Amt : Invalid parameter',
'short': 'Invalid Parameter'},
81222: {'long': 'TaxAmt : Invalid parameter',
'short': 'Invalid Parameter'},
81223: {'long': 'IPAddress : Invalid parameter',
'short': 'Invalid Parameter'},
81224: {'long': 'ShipToName : Invalid parameter',
'short': 'Invalid Parameter'},
81225: {'long': 'L_Amt : Invalid parameter',
'short': 'Invalid Parameter'},
81226: {'long': 'Amt : Invalid parameter',
'short': 'Invalid Parameter'},
81227: {'long': 'L_TaxAmt : Invalid parameter',
'short': 'Invalid Parameter'},
81229: {'long': 'CompleteType : Invalid parameter',
'short': 'Invalid Parameter'},
81230: {'long': 'CurrencyCode : Invalid parameter',
'short': 'Invalid Parameter'},
81232: {'long': 'TransactionEntity : Invalid parameter',
'short': 'Invalid Parameter'},
11601: {'long': 'Billing address request is not enabled for merchant',
'short': 'Request for billing address failed'},
11602: {'long': 'Feature not yet available',
'short': 'Request for billing address failed'},
81235: {'long': 'FirstName : Invalid parameter',
'short': 'Invalid Parameter'},
81236: {'long': 'LastName : Invalid parameter',
'short': 'Invalid Parameter'},
81237: {'long': 'Street : Invalid parameter',
'short': 'Invalid Parameter'},
81238: {'long': 'Street2 : Invalid parameter',
'short': 'Invalid Parameter'},
81239: {'long': 'City : Invalid parameter',
'short': 'Invalid Parameter'},
11610: {'long': '',
'short': 'Payment Pending your review in Fraud Management Filters'},
11611: {'long': 'Transaction blocked by your settings in FMF',
'short': 'Transaction blocked by your settings in FMF'},
11612: {'long': '',
'short': 'Transaction must be accepted in Fraud Management Filters before capture.'},
81245: {'long': 'EndDate : Invalid parameter',
'short': 'Invalid Parameter'},
11614: {'long': 'The transaction has already been Accepted/Denied and the status cannot be changed',
'short': 'The transaction has already been Accepted/Denied and the status cannot be changed'},
81247: {'long': 'CreditCardType : Invalid parameter',
'short': 'Invalid Parameter'},
81248: {'long': 'Username : Invalid parameter',
'short': 'Invalid Parameter'},
81249: {'long': 'Password : Invalid parameter',
'short': 'Invalid Parameter'},
81250: {'long': 'Version : Invalid parameter',
'short': 'Invalid Parameter'},
81251: {'long': 'Internal Service Error',
'short': 'Internal Error'},
13701: {'long': 'Item Category value is invalid. Only Digital or Physical are allowed.',
'short': 'Invalid Data'},
11501: {'long': "The merchant's country is currently not supported",
'short': 'Invalid merchant country'},
11502: {'long': 'The token is missing or is invalid',
'short': 'The token is missing or is invalid'},
11503: {'long': 'Missing subscription details',
'short': 'Missing subscription details'},
11504: {'long': 'Missing schedule details',
'short': 'Missing schedule details'},
11505: {'long': 'Subscription start date should be greater than current date',
'short': 'Start date should be greater than current date'},
11506: {'long': 'Max failed payments, if supplied, must be >= 0',
'short': 'Invalid max failed payments'},
11507: {'long': 'Trial amount must be >= 0',
'short': 'Invalid trial amount'},
13751: {'long': 'Original transaction completed successfully; however, this response differs from the original response.',
'short': 'Could not provide identical response to original transaction.'},
11508: {'long': 'Trial total billing cycles must be > 0',
'short': 'Invalid trial total billing cycles'},
11509: {'long': 'Trial billing period must be one of Day, Week, Month, SemiMonth, or Year',
'short': 'Invalid trial billing period'},
11510: {'long': 'Trial amount must be >= 0',
'short': 'Invalid trial amount'},
11511: {'long': 'This currency is currently not supported for trial amount.',
'short': 'Invalid currency for trial amount'},
11512: {'long': 'Trial shipping amount must be >= 0',
'short': 'Invalid trial shipping amount'},
11513: {'long': 'This currency is currently not supported for trial shipping amount',
'short': 'Invalid currency for trial shipping amount'},
11514: {'long': 'The profile status is invalid.',
'short': 'Invalid profile status'},
11515: {'long': 'This currency is currently not supported for trial tax amount',
'short': 'Invalid currency for trial tax amount'},
11516: {'long': 'Billing Frequency must be > 0 and be less than or equal to one year',
'short': 'Invalid billing frequency'},
11517: {'long': 'Total billing cycles must be >= 0 (0 means continuous)',
'short': 'Invalid total billing cycles'},
11518: {'long': 'Billing period must be one of Day, Week, Month, SemiMonth, or Year',
'short': 'Invalid billing period'},
11800: {'long': 'FulfillmentReferenceNumber exceeds maximum length.',
'short': 'Exceeds maximum length.'},
11801: {'long': 'You cannot pass both new and deprecated parameter address fields.',
'short': 'Invalid Data'},
11802: {'long': 'You cannot pass both the new and deprecated Custom parameter.',
'short': 'Invalid Data'},
11803: {'long': 'You cannot pass both the new and deprecated Invoice ID parameter.',
'short': 'Invalid Data'},
11804: {'long': 'You cannot pass both the new and deprecated order description.',
'short': 'Invalid Data'},
11805: {'long': 'You cannot pass both the new and deprecated order total or amount parameters.',
'short': 'Invalid Data'},
11806: {'long': 'You cannot pass both the new and deprecated ProfileAddressChangeDate parameter.',
'short': 'Invalid Data'},
11807: {'long': 'You cannot pass both the new and deprecated ShippingMethod parameter.',
'short': 'Invalid Data'},
11810: {'long': 'Invalid Insurance Amount.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
11811: {'long': 'Invalid Shipping Discount.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
11812: {'long': 'The value of Description parameter has been truncated.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
11813: {'long': 'Callback URL is wrong type; you must use the HTTPS',
'short': 'Callback URL is wrong type'},
11814: {'long': 'Invalid value for AllowNote.',
'short': 'Invalid data'},
11815: {'long': 'Item sales tax is invalid',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
11820: {'long': 'Invalid Order URL.',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details'},
11821: {'long': 'Invalid shipping options; you must specify a name and amount for each shipping option type',
'short': 'Invalid shipping options'},
11822: {'long': 'More than one shipping option type is marked as the default; you can only specify one default shipping option at a time',
'short': 'Multiple default shipping options specified'},
11823: {'long': 'You must specify one shipping option type as the default',
'short': 'No default shipping option specified'},
11824: {'long': 'The callback timeout is zero; you must specify a longer timeout value',
'short': 'Invalid callback timeout'},
11825: {'long': 'Flat-rate shipping options are missing; you must specify flat-rate shipping options when you specify a callback URL',
'short': 'Flat-rate shipping options are missing'},
11826: {'long': 'Invalid shipping total; it should equal the shipping amount of the selected shipping option',
'short': 'Invalid shipping total'},
11827: {'long': 'Line items missing; line items are required when you specify a callback URL for flat-rate shipping options',
'short': 'Line items missing'},
11828: {'long': 'Maximum amount of order not specified; you must specify the estimated value of the order when using a flat-rate shipping option',
'short': 'Maximum amount of order not specified'},
11829: {'long': 'Shipping total is missing; you must specify a shipping total when using a flat-rate shipping option',
'short': 'Shipping total is missing'},
11830: {'long': 'Insurance amount is missing; you have offered insurance but have not specified an amount.',
'short': 'Insurance amount is missing'},
11831: {'long': 'Callback URL is too long; it must not exceed 1,024 characters',
'short': 'Callback URL is too long'},
11832: {'long': 'Maximum amount of order is less than itemized amounts; the value of all items, including handling, shipping, tax, and insurance cannot be greater than the maximum amount of the order',
'short': 'Maximum amount of order is less than itemized amounts'},
11578: {'long': 'Recurring payment scheduled within 24 hours, so we are not processing the bill outstanding amount',
'short': 'Bill outstanding amount not processed because of scheduled payment'},
18014: {'long': 'This transaction cannot be processed.',
'short': 'Gateway Decline'},
11900: {'long': 'The transaction was rejected by PayPal because it failed Payment Review',
'short': 'Failed Payment Review'},
99998: {'long': 'Currency is not supported',
'short': 'Transaction refused because of an invalid argument. See additional error messages for details.'},
14001: {'long': 'Internal Error for Installments Transaction',
'short': 'Installments Internal Error'},
14002: {'long': 'Installments not available for seller with Multi-Auth or Multi-Capture enabled',
'short': 'Seller not eligible for Installments'},
11582: {'long': 'No scheduled payment has been found.',
'short': 'No payment in queue'},
11553: {'long': 'Invalid action value provided',
'short': 'Invalid action value provided'},
11554: {'long': 'Note is missing from the request',
'short': 'Note is missing from the request'},
11555: {'long': 'Note length is too long',
'short': 'Note length is too long'},
11996: {'long': 'To do a refund on an Adaptive Payment transaction, please use the Adaptive Payment Refund API',
'short': 'Use Adaptive Payment Refund API'},
12000: {'long': 'Transaction is not compliant due to missing or invalid 3-D Secure authentication values.',
'short': 'Transaction is not compliant due to missing or invalid 3-D Secure authentication values.'},
12001: {'long': 'Transaction is not compliant due to missing or invalid 3-D Secure authentication values.',
'short': 'Transaction is not compliant due to missing or invalid 3-D Secure authentication values.'},
11558: {'long': 'The activation type is invalid',
'short': 'Invalid profile status for reactivate action; profile should be suspended'},
10001: {'long': 'Internal Error', 'short': 'Internal Error'},
10002: {'long': 'Account is locked or inactive',
'short': 'Internal Error'},
10003: {'long': 'Item name, amount and quantity are required if item category is provided.',
'short': 'Missing argument'},
10004: {'long': 'Invalid argument', 'short': 'Internal Error'},
10005: {'long': 'Refund Advice is not supported without TransactionId.',
'short': 'Option not supported'},
10006: {'long': 'Version is not supported',
'short': 'Version error'},
10007: {'long': 'Because this order has either an outstanding order authorization or a recorded capture, it cannot be moved.',
'short': 'Permission denied'},
10008: {'long': 'Security header is not valid',
'short': 'Security error'},
10009: {'long': 'Account is locked or inactive',
'short': 'Transaction refused'},
10010: {'long': 'Non-ASCII invoice id is not supported',
'short': 'Invalid Invoice'},
10011: {'long': 'Transaction refused because of an invalid transaction id value',
'short': 'Invalid transaction id value'},
10014: {'long': 'The API call has been denied as it has exceeded the permissible call rate limit.',
'short': 'API call was rate limited.'},
11568: {'long': 'Invalid currency for delinquent amount',
'short': 'Invalid currency for delinquent amount'},
11569: {'long': 'Cannot increase delinquent amount',
'short': 'Cannot increase delinquent amount'},
11571: {'long': 'The total amount cannot exceed 120 increment per 180 days',
'short': 'The total amount cannot exceed 120 increment per 180 days'},
12109: {'long': 'Seller blocks payments via eBay checkout for all eBay items.',
'short': 'Option not supported.'},
11576: {'long': 'Bill amount is greater than outstanding balance',
'short': 'Bill amount is greater than outstanding balance'},
10069: {'long': 'Payment could not be completed due to a sender account issue. Please notify the user to contact PayPal Customer Support.',
'short': 'Payment refused due to risk; user notification necessary.'},
11577: {'long': 'Another outstanding payment is scheduled',
'short': 'Another outstanding payment is scheduled'},
12124: {'long': 'Express Checkout not supported for you.',
'short': 'Option not supported.'},
12125: {'long': "There's a problem with the redemption code(s) you entered and can't be used at this time. Your payment has not been processed. Please go back to PayPal so that the code(s) can be removed, your order total can be updated and then you'll be able to complete checkout.",
'short': 'PP incentive no longer available.'},
12126: {'long': "We're having problems processing redemption codes at this time. Your payment has not been processed. You can try to check out again at a later time or complete your payment without the discount applied.",
'short': 'Payment could not be processed at this time. Incentive temporarily unavailable.'},
11579: {'long': 'Payment is failing',
'short': 'Payment is failing'},
11581: {'long': 'Profile description is invalid.',
'short': 'Invalid Data'},
10101: {'long': 'Express Checkout temporarily unavailable. Please try later.',
'short': 'Option not supported.'},
10102: {'long': 'PaymentAction of Order is temporarily unavailable. Please try later or use other PaymentAction.',
'short': 'PaymentAction of Order Temporarily Unavailable'},
10103: {'long': 'Your Solution Type is temporarily unavailable. If possible, please use another Solution Type.',
'short': 'Please use another Solution Type.'},
11583: {'long': 'DPRP feature is unavailable',
'short': 'DPRP feature is unavailable'},
11587: {'long': 'Billing Address is Partial',
'short': 'Billing Address is Partial'},
11590: {'long': 'Based on your input request, profile already up to date.',
'short': 'Profile update is not required'},
12200: {'long': 'Buyer ID must be specified to process an Immediate Payment item.',
'short': 'Buyer ID is not present.'},
12201: {'long': 'The item specified is either not valid or is not currently available for purchase as an Immediate Payment item.',
'short': 'Immediate Payment item was not found.'},
12202: {'long': 'Only one Immediate Payment item can be paid for in a single PayPal payment transaction.',
'short': 'More than one eBay item is present.'},
12203: {'long': 'Payment was not created because it would have been in a pending state, which is unacceptable for Immediate Payment items.',
'short': 'Payment rolled back because of pending item.'},
12204: {'long': 'Error occurred causing transaction reversal.',
'short': 'Transaction reversed.'},
12205: {'long': 'Requests for eBay Immediate Payment items should not contain either eBay transaction ID or eBay order ID. If the fields are present, they should contain null values.',
'short': 'eBay Transaction ID and eBay Order ID must be null.'},
12206: {'long': 'Order and Authorization are not acceptable values for PaymentAction when the item is an Immediate Payment',
'short': 'The value of PaymentAction must be Sale for Immediate Payment item.'},
12207: {'long': 'Cart ID is required for Immediate Payment item.',
'short': 'Cart ID is required for Immediate Payment item.'},
12208: {'long': 'eBay item amount does not match Express Checkout API item amount.',
'short': 'eBay item amount does not match Express Checkout API item amount.'},
11592: {'long': 'Subscription profiles are not supported for recurring payments',
'short': 'Subscription profiles are not supported for recurring payments'},
10201: {'long': 'Billing Agreement was cancelled',
'short': 'Agreement canceled'},
10202: {'long': "Transaction would exceed user's monthly maximum",
'short': 'Exceed max'},
10203: {'long': 'Transaction failed, action required by user',
'short': 'Action required'},
10204: {'long': "User's account is closed or restricted",
'short': "User's account is closed or restricted"},
10205: {'long': 'Transaction refused due to risk model',
'short': 'Risk'},
10206: {'long': 'Transaction was already processed',
'short': 'Duplicate'},
10207: {'long': 'Transaction failed but user has alternate funding source',
'short': 'Retry'},
10209: {'long': 'Preapproved Payments not enabled.',
'short': 'Disabled'},
10210: {'long': 'Transaction failed because has no funding sources',
'short': 'No Funding'},
10211: {'long': 'Invalid MP ID', 'short': ''},
10212: {'long': 'A profile preference is set to automatically deny certain transactions',
'short': 'Profile preference setting'},
10213: {'long': 'The soft descriptor passed in contains invalid characters',
'short': 'Invalid Soft Descriptor'},
10214: {'long': '', 'short': ''},
10215: {'long': 'The soft descriptor passed in was truncated',
'short': 'Soft Descriptor truncated'},
10216: {'long': 'Transaction refused because a confirmed address is not available',
'short': 'Confirmed address required'},
10217: {'long': 'The SoftDescriptorCity field was truncated',
'short': 'Soft Descriptor City truncated'},
10218: {'long': 'Illegal characters were removed from the SoftDescriptor field',
'short': 'Soft Descriptor modified'},
10219: {'long': 'Illegal characters were removed from the SoftDescriptorCity field',
'short': 'Soft Descriptor City modified'},
10220: {'long': 'The Merchant is not enabled to pass SoftDescriptor or SoftDescriptorCity',
'short': "Soft Descriptor's ignored"},
81234: {'long': 'ExpDate : Invalid parameter',
'short': 'Invalid Parameter'},
11603: {'long': 'One or more critical fields in the request conflict with prior message with the same Message Submission ID (specified in MSGSUBID parameter).',
'short': 'Conflict with prior request with same Message Submission ID.'},
11604: {'long': 'Request for the specified Message Submission ID (specified in MSGSUBID parameter) cannot be started until the previous request finishes.',
'short': 'Request for Message Submission ID already in progress.'},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment