@@ -53,6 +53,7 @@ class ErrorCodes:
5353 MerchantNotConfigured : Final = "93514"
5454 MerchantKeysAlreadyConfigured : Final = "93515"
5555 MerchantKeysNotConfigured : Final = "93516"
56+ NetworkTransactionIdNotAllowed : Final = "93532"
5657 CertificateInvalid : Final = "93517"
5758 CertificateMismatch : Final = "93519"
5859 InvalidToken : Final = "83520"
@@ -61,6 +62,18 @@ class ErrorCodes:
6162 CustomerIdIsInvalid : Final = "93528"
6263 BillingAddressFormatIsInvalid : Final = "93529"
6364
65+ class Options :
66+ class Verification :
67+ AccountTypeIsInvalid : Final = "93538"
68+ AccountTypeNotSupported : Final = "93543"
69+ AmountCannotBeNegative : Final = "93535"
70+ AmountFormatIsInvalid : Final = "93534"
71+ AmountIsTooLarge : Final = "93537"
72+ AmountNotSupportedByProcessor : Final = "93536"
73+ MerchantAccountIdIsInvalid : Final = "93540"
74+ MerchantAccountIsSuspended : Final = "93541"
75+ NotSupportedByProcessor : Final = "93533"
76+
6477 class AuthorizationFingerprint :
6578 MissingFingerprint : Final = "93201"
6679 InvalidFormat : Final = "93202"
@@ -157,6 +170,8 @@ class ErrorCodes:
157170 IdIsNotAllowed : Final = "91611"
158171 IdIsRequired : Final = "91613"
159172 IdIsTooLong : Final = "91612"
173+ InternationalPhoneCountryCodeIsInvalid : Final = "91625"
174+ InternationalPhoneNationalNumberIsInvalid : Final = "91626"
160175 LastNameIsTooLong : Final = "81613"
161176 PhoneIsTooLong : Final = "81614"
162177 VaultedPaymentInstrumentNonceBelongsToDifferentCustomer : Final = "91617"
@@ -478,6 +493,12 @@ class ErrorCodes:
478493 DiscountAmountFormatIsInvalid : Final = "915159"
479494 DiscountAmountIsTooLarge : Final = "915161"
480495 ExchangeRateQuoteIdIsTooLong : Final = "915229"
496+ ApiRequestKeyTooLong : Final = "915230"
497+ ApiRequestKeyNotAllowed : Final = "915231"
498+ ApiRequestKeyCanBeReusedOnlyWithTheSameRequest : Final = "915232"
499+ ApiRequestKeyIsInFlight : Final = "915233"
500+ ApiRequestKeyWithFailedRequest : Final = "915234"
501+ ApiRequestKeyServerError : Final = "915235"
481502 FailedAuthAdjustmentAllowRetry : Final = "95603"
482503 FailedAuthAdjustmentHardDecline : Final = "95602"
483504 FinalAuthSubmitForSettlementForDifferentAmount : Final = "95601"
0 commit comments