---
title: Card Errors
slug: developer-tools/error-codes/card
excerpt: >-
  Learn more about the error codes associated with card payments, including
  brief descriptions and their causes.
hidden: false
sidebar_order: 3
metadata:
  title: Card Error Codes — Decline Reasons & Failures | Pine Labs Gateway
  description: >-
    Complete card payment error codes with reasons and descriptions. Includes AMOUNT_LIMIT_EXCEEDED, CARD_EXPIRED, CVV failures, 3DS authentication errors, and decline reasons categorized by 4XX/5XX.
  image: []
  keywords: card errors, card decline codes, payment failure, card authentication, CVV error, 3DS error, card payment issues
  robots: index
---
The list below is the top error codes associated with **Card** payments, along with their corresponding reasons and descriptions.

[block:html]
{
  "html": "<style>\n\n/* Container */\n.container {\n    max-width: 900px;\n    }\n\n/* Header */\n.header {\n    text-align: flex-start;\n    margin-bottom: 3rem;\n}\n\n.header h1 {\n    font-size: 2.5rem;\n    color: #1e293b;\n    margin-bottom: 0.75rem;\n}\n\n.header p {\n    font-size: 1.125rem;\n    color: #64748b;\n}\n\n/* Category Filter */\n.category-filter {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 0.5rem;\n    margin-bottom: 2rem;\n}\n\n.category-label {\n    display: inline-block;\n    padding: 0.5rem 1rem;\n    background: #f1f5f9;\n    color: #475569;\n    border-radius: 9999px;\n    font-size: 0.875rem;\n    cursor: pointer;\n    transition: all 0.3s ease;\n    border: 2px solid transparent;\n}\n\n.category-label:hover {\n    background: #e2e8f0;\n}\n\n.category-input {\n    display: none;\n}\n\n/* Category Filtering Logic */\n/* Show all FAQs by default */\n.faq-item {\n    display: block;\n}\n\n/* Category filtering using radio buttons */\n#cat-all:checked ~ .faq-list .faq-item {\n    display: block;\n}\n\n#cat-4XX:checked ~ .faq-list .faq-item:not([data-category~=\"4XX\"]) {\n    display: none;\n}\n\n#cat-5XX:checked ~ .faq-list .faq-item:not([data-category~=\"5XX\"]) {\n    display: none;\n}\n\n/* Active category styling */\n#cat-all:checked ~ .category-filter label[for=\"cat-all\"],\n#cat-4XX:checked ~ .category-filter label[for=\"cat-4XX\"],\n#cat-5XX:checked ~ .category-filter label[for=\"cat-5XX\"] {\n    background: #003434;\n    color: white;\n    border-color: #002323;\n}\n\n/* FAQ List */\n.faq-list {\n    display: flex;\n    flex-direction: column;\n    gap: 1rem;\n}\n\n/* FAQ Item */\n.faq-item {\n    background: white;\n    border: 1px solid #e2e8f0;\n    border-radius: 0.5rem;\n    overflow: hidden;\n    transition: box-shadow 0.3s ease;\n}\n\n.faq-item:hover {\n    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n}\n\n.faq-checkbox {\n    display: none;\n}\n\n/* FAQ Question */\n.faq-question {\n    display: block;\n    padding: 1rem;\n    cursor: pointer;\n    user-select: none;\n    position: relative;\n    font-weight: 500;\n    font-size: 1.063rem;\n    color: #003434;\n    transition: background-color 0.3s ease;\n}\n\n.faq-question:hover {\n    background: #f8fafc;\n}\n\n/* Plus/Minus Icon */\n.faq-question::after {\n    content: '+';\n    position: absolute;\n    right: 1.5rem;\n    top: 50%;\n    transform: translateY(-50%);\n    font-size: 1.5rem;\n    font-weight: 300;\n    color: #2563eb;\n    transition: transform 0.3s ease;\n}\n\n.faq-checkbox:checked + .faq-question::after {\n    content: '−';\n    transform: translateY(-50%) rotate(180deg);\n}\n\n/* Category Tag */\n.faq-category-tag {\n    display: inline-block;\n    margin-top: 0.5rem;\n    font-size: 0.75rem;\n    color: #2563eb;\n    font-weight: 500;\n}\n\n/* FAQ Answer */\n.faq-answer {\n    max-height: 0;\n    overflow: hidden;\n    transition: max-height 0.4s ease, padding 0.4s ease;\n    padding: 0 1.5rem;\n    border-top: 1px solid transparent;\n}\n\n.faq-checkbox:checked ~ .faq-answer {\n    max-height: 1000px;\n    padding: 1.5rem;\n    border-top-color: #f1f5f9;\n}\n\n/* Answer Content Styling */\n.faq-answer p {\n    margin-bottom: 1rem;\n    color: #475569;\n}\n\n.faq-answer p:last-child {\n    margin-bottom: 0;\n}\n\n.faq-answer ul {\n    margin: 1rem 0;\n    padding-left: 1.5rem;\n}\n\n.faq-answer li {\n    margin-bottom: 0.5rem;\n    color: #475569;\n}\n\n.faq-answer strong {\n    color: #1e293b;\n}\n\n.faq-answer code {\n    background: #f1f5f9;\n    padding: 0.125rem 0.5rem;\n    border-radius: 0.25rem;\n    font-family: 'Courier New', monospace;\n    font-size: 0.875rem;\n    color: #dc2626;\n}\n\n/* Help Section */\n.help-section {\n    margin-top: 3rem;\n    padding: 2rem;\n    background: #dbeafe;\n    border-radius: 0.5rem;\n    text-align: center;\n}\n\n.help-section h3 {\n    font-size: 1.5rem;\n    margin-bottom: 0.5rem;\n    color: #1e293b;\n}\n\n.help-section p {\n    color: #475569;\n    margin-bottom: 1.5rem;\n}\n\n.help-button {\n    display: inline-block;\n    padding: 0.75rem 1.5rem;\n    background: #2563eb;\n    color: white;\n    text-decoration: none;\n    border-radius: 0.5rem;\n    font-weight: 500;\n    transition: background 0.3s ease;\n}\n\n.help-button:hover {\n    background: #1d4ed8;\n}\n\n/* Responsive Design */\n@media (max-width: 768px) {\n    .header h1 {\n        font-size: 2rem;\n    }\n\n    .faq-question {\n        padding: 1rem;\n        padding-right: 3rem;\n    }\n\n    .faq-checkbox:checked ~ .faq-answer {\n        padding: 1rem;\n    }\n\n    .help-section {\n        padding: 1.5rem;\n    }\n}\n\n</style>\n<div class=\"container\">\n\n        <!-- Category filter using radio buttons -->\n        <input type=\"radio\" id=\"cat-all\" name=\"category\" class=\"category-input\" checked>\n        <input type=\"radio\" id=\"cat-4XX\" name=\"category\" class=\"category-input\">\n        <input type=\"radio\" id=\"cat-5XX\" name=\"category\" class=\"category-input\">\n\n        <div class=\"category-filter\">\n            <label for=\"cat-all\" class=\"category-label\">All</label>\n            <label for=\"cat-4XX\" class=\"category-label\">4XX</label>\n            <label for=\"cat-5XX\" class=\"category-label\">5XX</label>\n        </div>\n\n        <div class=\"faq-list\">\n            <!-- Error Code 1 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq1\" class=\"faq-checkbox\">\n                <label for=\"faq1\" class=\"faq-question\">\n                    <strong>AMOUNT_LIMIT_EXCEEDED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The payment was declined as the customer has exceeded the balance or the credit limit available on the card.</li>\n                        <li>The payment was declined because the specified amount exceeds allowed limits.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n\t\t\t\t\t\t\t\t\t\n                </div>\n            </div>\n            <!-- Error Code 2 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq2\" class=\"faq-checkbox\">\n                <label for=\"faq2\" class=\"faq-question\">\n                    <strong>CARD_EXPIRED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Specified card is not allowed for this transaction because it has expired.</li>\n                        <li>Payment Instrument has expired.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n            </div>\n            <!-- Error Code 3 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq3\" class=\"faq-checkbox\">\n                <label for=\"faq3\" class=\"faq-question\">\n                    <strong>CARD_LOST</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Payment Instrument is reported as lost.</li>\n                    </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n            </div>\n            <!-- Error Code 4 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq4\" class=\"faq-checkbox\">\n                <label for=\"faq4\" class=\"faq-question\">\n                    <strong>CARD_NOT_ALLOWED</strong>\n                    <span class=\"faq-category-tag\"><code>400</code></span> <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Transaction declined due to a suspected counterfeit or stolen card.</li>\n                        <li>The payment was declined card issuer does not allow this type of payment on this card/account.</li>\n                        <li>Invalid card number.</li>\n                        <li>Specified card is not allowed for this transaction.</li>\n                        <li>The transaction declined as card was reported lost or stolen.</li>\n                        <li>Transaction was declined as card issuer does not permit the transaction on this card/account.</li>\n                        <li>The payment was declined as card issuer has restricted where the card can be used.</li>\n                        <li>The transaction declined as the card is blocked.</li>\n                        <li>Payment Instrument is reported as picked up.</li>\n                        <li>Payment Instrument is restricted to perform the relevant operation.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n            </div>\n            <!-- Error Code 5 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq5\" class=\"faq-checkbox\">\n                <label for=\"faq5\" class=\"faq-question\">\n                    <strong>CARD_NOT_ENROLLED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Specified card is not allowed for this transaction because it is not enrolled for 3DS.</li>\n                        <li>Card not enrolled in 3D Secure.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n            </div>\n            <!-- Error Code 6 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq6\" class=\"faq-checkbox\">          \n                <label for=\"faq6\" class=\"faq-question\">\n                    <strong>CARD_STOLEN</strong>\n                    <span class=\"faq-category-tag\"><code>400</code></span> <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Payment Instrument is reported as Stolen.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n            </div>\n            <!-- Error Code 7 -->\n            <div class=\"faq-item\" data-category=\"4XX 5XX\">\n                <input type=\"checkbox\" id=\"faq7\" class=\"faq-checkbox\">\n                <label for=\"faq7\" class=\"faq-question\">\n                    <strong>CARD_VERIFICATION_FAILED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span> <span class=\"faq-category-tag\"><code>500</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Invalid CVV specified on the card payment option.</li>\n                        <li>The payment was declined by the acquirer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <ul><li><code>ACQUIRER</code></li><li><code>INTERNAL</code></li></ul></p>\n                </div>\n            </div>\n            <!-- Error Code 8 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq8\" class=\"faq-checkbox\">\n                <label for=\"faq8\" class=\"faq-question\">\n                    <strong>DUPLICATE_REQUEST</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The request has already been processed.</li>\n                        <li>Duplicate Transaction.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <ul><li><code>ACQUIRER</code></li><li><code>INTERNAL</code></li></ul></p>\n                </div>\n            </div>\n            <!-- Error Code 9 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq9\" class=\"faq-checkbox\">\n                <label for=\"faq9\" class=\"faq-question\">\n                    <strong>INSUFFICIENT_FUNDS</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Insufficient funds to proceed with payment using the specified payment option.</li>\n                        <li>Insufficient Funds.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n            </div>\n            <!-- Error Code 10 -->\n            <div class=\"faq-item\" data-category=\"4XX 5XX\">\n                <input type=\"checkbox\" id=\"faq10\" class=\"faq-checkbox\">\n                <label for=\"faq10\" class=\"faq-question\">\n                    <strong>INTERNAL_ERROR</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span> <span class=\"faq-category-tag\"><code>500</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Internal server error. The request cannot be processed at this time.</li>\n                        <li>Internal Technical Issue related to certificate, encryption or signing.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <ul><li><code>ACQUIRER</code></li><li><code>INTERNAL</code></li></ul></p>\n                </div>\n            </div>\n            <!-- Error Code 11 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq11\" class=\"faq-checkbox\">\n                <label for=\"faq11\" class=\"faq-question\">\n                    <strong>INVALID_CARDHOLDER</strong>\n                    <span class=\"faq-category-tag\"><code>400</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Invalid card details.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n            </div>\n            <!-- Error Code 12 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq12\" class=\"faq-checkbox\">\n                <label for=\"faq12\" class=\"faq-question\">\n                    <strong>INVALID_MERCHANT</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The payment was declined by the card issuer on this merchant.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n            </div>\n            <!-- Error Code 13 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq13\" class=\"faq-checkbox\">\n                <label for=\"faq13\" class=\"faq-question\">\n                    <strong>INVALID_REQUEST</strong>\n                    <span class=\"faq-category-tag\"><code>400</code></span> <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The payment was declined by acquirer because of an invalid format or field.</li>\n                        <li>The request does not the expected contract and cannot be processed. This may be due to malformed request, invalid or missing parameters.</li>\n                        <li>Invalid amount.</li>\n                        <li>Invalid Request Parameters.</li>\n                        <li>Verification failed due to an invalid or expired token.</li>\n                        <li>The request does not meet the expected contract and cannot be processed. This may be due to malformed request, invalid or missing parameters.</li>\n                        <li>Invalid Merchant or merchant not permitted related operation.</li>\n                        <li>Original Amount Incorrect.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <ul><li><code>ACQUIRER</code></li><li><code>INTERNAL</code></li></ul></p>\n                </div>\n            </div>\n            <!-- Error Code 14 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq14\" class=\"faq-checkbox\">\n                <label for=\"faq14\" class=\"faq-question\">\n                    <strong>INVALID_USER_ACCOUNT</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Relevant User Account not active/valid.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n\t\t\t</div>\n            <!-- Error Code 15 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq15\" class=\"faq-checkbox\">\n                <label for=\"faq15\" class=\"faq-question\">\n                    <strong>ISSUER_NOT_AVAILABLE</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The payment was declined as issuer was not available.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n                <!-- Error Code 16 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq16\" class=\"faq-checkbox\">\n                <label for=\"faq16\" class=\"faq-question\">\n                    <strong>ISSUER_NOT_SUPPORTED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The specified issuer is not supported for this operation.</li>\n                        <li>Issuer not supported.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n                <!-- Error Code 17 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq17\" class=\"faq-checkbox\">\n                <label for=\"faq17\" class=\"faq-question\">\n                    <strong>OPERATION_NOT_ALLOWED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The specified operation cannot be made because required precondition has failed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 18 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq18\" class=\"faq-checkbox\">\n                <label for=\"faq18\" class=\"faq-question\">\n                    <strong>ORDER_CANCELLED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The order has already been cancelled and cannot be modified further.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n                <!-- Error Code 19 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq19\" class=\"faq-checkbox\">\n                <label for=\"faq19\" class=\"faq-question\">\n                    <strong>ORDER_NOT_FOUND</strong>\n                    <span class=\"faq-category-tag\"><code>404</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>No order with specified order-id exists in the system.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 20 -->\n                <div class=\"faq-item\" data-category=\"4XX 5XX\">\n                <input type=\"checkbox\" id=\"faq20\" class=\"faq-checkbox\">\n                <label for=\"faq20\" class=\"faq-question\">\n                    <strong>PAYMENT_DECLINED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span> <span class=\"faq-category-tag\"><code>500</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The payment was declined by the card issuer.</li>\n                        <li>The payment was declined as payment could not be authorized by the issuer.</li>\n                        <li>The payment was declined by the acquirer.</li>\n                        <li>The transaction was cancelled by the card holder or the acquirer.</li>\n                        <li>Transaction was declined as card issuer does not permit the transaction on this card/account.</li>\n                        <li>The payment was declined by the Issuer.</li>\n                        <li>The payment was declined as it requires a user PIN.</li>\n                        <li>The payment was declined due to connection issue at the acquirer.</li>\n                        <li>The payment was declined due to a policy reason of the card issuer.</li>\n                        <li>The payment was declined by the acquirer due to invalied terminalID.</li>\n                        <li>The payment was declined as international transaction is not enabled.</li>\n                        <li>The payment was declined by the acquirer.</li>\n                        <li>Transaction declined basis risk checks.</li>\n                        <li>Transaction declined by Acquirer due to unknown reason.</li>\n                        <li>Txn Declined by Issuer</li>\n                        <li>Transaction has been declined due to some problem with card. Please contact the Issuer.</li>\n                        <li>Transaction declined by Acquirer due to unknown reason.</li>\n                        <li>Invalid Merchant or merchant not permitted related operation.</li>\n                        <li>Guest Checkout Token Provisioning Failed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <ul><li><code>ACQUIRER</code></li><li><code>INTERNAL</code></li></ul></p>\n                </div>\n                </div>\n                <!-- Error Code 21 -->\n                    <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq21\" class=\"faq-checkbox\">\n                <label for=\"faq21\" class=\"faq-question\">\n                    <strong>PAYMENT_EXPIRED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Transaction expired.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n                <!-- Error Code 22 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq22\" class=\"faq-checkbox\">\n                <label for=\"faq22\" class=\"faq-question\">\n                    <strong>PAYMENT_NOT_AUTHORIZED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The payment requires authorization before it can be processed.</li>\n                        <li>Transaction not Authorized.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <ul><li><code>ACQUIRER</code></li><li><code>INTERNAL</code></li></ul></p>\n                </div>\n                </div>\n                <!-- Error Code 23 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq23\" class=\"faq-checkbox\">\n                <label for=\"faq23\" class=\"faq-question\">\n                    <strong>PAYMENT_RATE_LIMIT</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The payment was declined because too many payments were attempted using the specified payment option.</li>\n                        <li>Failure due to request velocity or limit checks.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n                <!-- Error Code 24 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq24\" class=\"faq-checkbox\">\n                <label for=\"faq24\" class=\"faq-question\">\n                    <strong>REFUND_LIMIT</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The maximin refund limit rfund reached.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n                <!-- Error Code 25 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq25\" class=\"faq-checkbox\">\n                <label for=\"faq25\" class=\"faq-question\">\n                    <strong>RISK_CHECK_FAILED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The payment was declined after a risk check.</li>\n                        <li>The payment was declined because the card issuer suspects this payment to be fraudulent.</li>\n                        <li>The payment was declined as card issuer indicated a security issue with this card.</li>\n                        <li>Payment Instrument suspected to be used fraudulently</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n                <!-- Error Code 26 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq26\" class=\"faq-checkbox\">\n                <label for=\"faq26\" class=\"faq-question\">\n                    <strong>TIMED_OUT</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>The request timed out. Please try again later.</li>\n                        <li>Transaction Timed out.</li>\n                        <li>Invalid Merchant or merchant not permitted related operation.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n                <!-- Error Code 27 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq27\" class=\"faq-checkbox\">\n                <label for=\"faq27\" class=\"faq-question\">\n                    <strong>USER_AUTHENTICATION_FAILED</strong>\n                    <span class=\"faq-category-tag\"><code>422</code></span>\n                </label>\n                <div class=\"faq-answer\">\n                    <p><strong>Error Message</strong></p>\n                    <ul>\n                        <li>Consumer Authentication failed.</li>\n                        <li>Authentication timed out.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>ACQUIRER</code></p>\n                </div>\n                </div>\n        </div>\n</div>"
}
[/block]
