---
title: EMI Errors
slug: developer-tools/error-codes/emi
excerpt: >-
  Learn more about the error codes associated with EMI payments, including brief
  descriptions and their causes.
hidden: false
sidebar_order: 5
metadata:
  title: "EMI Payment Error Codes — Installment Payment Errors | Pine Labs"
  description: >-
    Complete EMI error code reference for Pine Labs. Troubleshoot credit EMI, debit EMI, and cardless EMI failures with detailed error descriptions and solutions.
  keywords: "EMI errors, EMI error codes, installment payment errors, EMI transaction failures, credit EMI errors, debit EMI errors, cardless EMI issues"
  robots: index
---

The list below is the top error codes associated with **EMI** 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>ACQUIRER_DETAILS_NOT_FOUND</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 acquirer not supported for this transaction.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>AGGREGATED_PRODUCT_AMOUNT_EXCEEDS_LOAN_AMOUNT</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>Total cart value is higher than approved EMI loan.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>AGGREGATED_REFUND_AMOUNT_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>Allowed refund threshold crossed.</li>\n                    </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>AGGREGATED_VOID_AMOUNT_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>Combined refund value is more than original transaction.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>ALLOWED_TOTAL_COMBINED_TXN_COUNT_CONSUMED</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>Multiple offers used already with this card.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>ALLOWED_TOTAL_DISCOUNT_TXN_COUNT_CONSUMED</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>You have reached your discount quota.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n            </div>\n            <!-- Error Code 7 -->\n            <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq7\" class=\"faq-checkbox\">\n                <label for=\"faq7\" class=\"faq-question\">\n                    <strong>ALLOWED_TOTAL_SUBVENTION_TXN_COUNT_CONSUMED</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>Subvention-based transactions exceeded.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></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>ALLOWED_TXN_COUNT_CONSUMED</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>Offer already used with this card/customer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></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>BAD_REQUEST</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>Product Mismatch with the order.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>BIN_NOT_ELIGIBLE_FOR_OFFER</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>This card is not eligible for the selected offer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></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>BIN_NOT_FOUND</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>Card network could not be recognized.</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>BUMPED_UP_CASHBACK_APPLIED</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>Cashback is already applied and can't be combined with this offer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>BUYBACK_NOT_ENABLED</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>Buyback is not available for this product.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></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>CANCEL_LOAN_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>Cancelling the EMI booking failed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>CARDLESS_OFFER_IS_NOT_PRESENT</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>No offers available for the selected mobile number or payment provider.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>CARD_CREDIT_LIMIT_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>Credit card limit verification failed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>CARD_NOT_ELIGIBLE_FOR_EMI</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>This card doesn't support EMI or offer options.</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>CREDIT_LIMIT_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>Credit card balance couldn't be verified.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>CUSTOMER_CARDLESS_BLOCKING_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>Unable to block credit limit for cardless EMI.</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\">\n                <input type=\"checkbox\" id=\"faq20\" class=\"faq-checkbox\">\n                <label for=\"faq20\" class=\"faq-question\">\n                    <strong>CUSTOMER_CARDLESS_UNBLOCKING_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>Unable to release credit hold after cancellation.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></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>CUSTOMER_NOT_ELIGIBLE_FOR_EMI</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>You're not eligible for this EMI or offer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>DC_CREDIT_LIMIT_BLOCKING_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>Your card limit could not be blocked.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></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>DC_CREDIT_LIMIT_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>Couldn't verify debit card limits.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>DC_CREDIT_LIMIT_CHECK_REQUIRED</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>Limit verification incomplete; action needed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>DC_CREDIT_LIMIT_UNBLOCKING_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>Card limit release failed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>DIFFERENT_BRAND_PRESENT</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>EMI transaction supports only one brand in cart.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</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>ELIGIBILITY_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>You're not eligible for the selected EMI/offer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 28 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq28\" class=\"faq-checkbox\">\n                <label for=\"faq28\" class=\"faq-question\">\n                    <strong>EXTERNAL_VELOCITY_RULE_MAPPING_NOT_PRESENT</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>Velocity Rule is not present for this Brand.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 29 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq29\" class=\"faq-checkbox\">\n                <label for=\"faq29\" class=\"faq-question\">\n                    <strong>GRANT_LOAN_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>Couldn't complete EMI booking.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 30 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq30\" class=\"faq-checkbox\">\n                <label for=\"faq30\" class=\"faq-question\">\n                    <strong>IMEI_BLOCKING_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>Imei Blocking can't be performed on REFUNDED/VOIDED state.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 31 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq31\" class=\"faq-checkbox\">\n                <label for=\"faq31\" class=\"faq-question\">\n                    <strong>IMEI_BLOCKING_NOT_ALLOWED_ALL_INSTANCES_PAID_BACK</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>Imei blocking can't be performed as all the instances for the product are REFUNDED/VOIDED.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 32 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq32\" class=\"faq-checkbox\">\n                <label for=\"faq32\" class=\"faq-question\">\n                    <strong>IMEI_BLOCK_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>Unable to secure device for EMI.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 33 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq33\" class=\"faq-checkbox\">\n                <label for=\"faq33\" class=\"faq-question\">\n                    <strong>IMEI_DOES_NOT_BELONG_TO_DEALER</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 entered IMEI does not belong to dealer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 34 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq34\" class=\"faq-checkbox\">\n                <label for=\"faq34\" class=\"faq-question\">\n                    <strong>IMEI_SKIPPING_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>Imei Skipping can't be performed on REFUNDED/VOIDED state.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 35 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq35\" class=\"faq-checkbox\">\n                <label for=\"faq35\" class=\"faq-question\">\n                    <strong>IMEI_UNBLOCK_EXCEPTION_OCCURRED</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>A system issue occurred while unblocking this product.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 36 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq36\" class=\"faq-checkbox\">\n                <label for=\"faq36\" class=\"faq-question\">\n                    <strong>IMEI_UNBLOCK_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 product couldn't be unlocked for new EMI.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 37 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq37\" class=\"faq-checkbox\">\n                <label for=\"faq37\" class=\"faq-question\">\n                    <strong>IMEI_VALIDATION_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>Problem validating device IMEI.</li>\n                        <li>IMEI validation failed for the requested product.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 38 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq38\" class=\"faq-checkbox\">\n                <label for=\"faq38\" class=\"faq-question\">\n                    <strong>IMEI_VALIDATION_NOT_APPLICABLE</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>IMEI validation is not applicable for the requested product.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 39 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq39\" class=\"faq-checkbox\">\n                <label for=\"faq39\" class=\"faq-question\">\n                    <strong>INSUFFICIENT_STOCK</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 requested product is out of stock.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 40 -->\n                <div class=\"faq-item\" data-category=\"5XX\">\n                <input type=\"checkbox\" id=\"faq40\" class=\"faq-checkbox\">\n                <label for=\"faq40\" class=\"faq-question\">\n                    <strong>INTERNAL_ERROR</strong>\n                    <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>A technical error occurred during processing.</li>\n                        <li>Internal Server Error.</li>\n                        <li>Technical Issue.</li>\n                        <li>Failed to parse error response.</li>\n                        <li>Failed to parse response from the server.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 41 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq41\" class=\"faq-checkbox\">\n                <label for=\"faq41\" class=\"faq-question\">\n                    <strong>INVALID_BLOCK_UNBLOCK</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 EMI block/unblock action requested is invalid.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 42 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq42\" class=\"faq-checkbox\">\n                <label for=\"faq42\" class=\"faq-question\">\n                    <strong>INVALID_CARD</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 card number or details entered seem incorrect.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 43 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq43\" class=\"faq-checkbox\">\n                <label for=\"faq43\" class=\"faq-question\">\n                    <strong>INVALID_DEALER_CODE</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>Dealer code is invalid or inactive.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 44 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq44\" class=\"faq-checkbox\">\n                <label for=\"faq44\" class=\"faq-question\">\n                    <strong>INVALID_DOWN_PAYMENT_AMOUNT</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 entered down payment is too high and exceeds the allowed percentage of the total price.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 45 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq45\" class=\"faq-checkbox\">\n                <label for=\"faq45\" class=\"faq-question\">\n                    <strong>INVALID_LOAN_AMOUNT</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>EMI loan amount is not valid.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 46 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq46\" class=\"faq-checkbox\">\n                <label for=\"faq46\" class=\"faq-question\">\n                    <strong>INVALID_ORDER_AMOUNT</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>Total amount is not eligible for EMI.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 47 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq47\" class=\"faq-checkbox\">\n                <label for=\"faq47\" class=\"faq-question\">\n                    <strong>INVALID_PAYMENT_METHOD</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>This payment method is not supported for EMI.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 48 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq48\" class=\"faq-checkbox\">\n                <label for=\"faq48\" class=\"faq-question\">\n                    <strong>INVALID_PAYMENT_TYPE</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 chosen payment type is not supported.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 49 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq49\" class=\"faq-checkbox\">\n                <label for=\"faq49\" class=\"faq-question\">\n                    <strong>INVALID_PRODUCT_AMOUNT</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>One or more products have mismatched prices.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 50 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq50\" class=\"faq-checkbox\">\n                <label for=\"faq50\" class=\"faq-question\">\n                    <strong>INVALID_PRODUCT_BRAND_EMI</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>This brand is not eligible for EMI offers.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 51 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq51\" class=\"faq-checkbox\">\n                <label for=\"faq51\" class=\"faq-question\">\n                    <strong>INVALID_PRODUCT_DETAILS</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>Product info is missing or incorrect.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 52 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq52\" class=\"faq-checkbox\">\n                <label for=\"faq52\" class=\"faq-question\">\n                    <strong>INVALID_REFUND_AMOUNT</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 amount can't be refunded as entered.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 53 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq53\" class=\"faq-checkbox\">\n                <label for=\"faq53\" class=\"faq-question\">\n                    <strong>INVALID_REQUEST</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>Something seems wrong with your request.</li>\n                        <li>Token transaction not supported for this offer/Card.</li>\n                        <li>Token transaction is not allowed for DEBIT_EMI.</li>\n                        <li>Merchant ID is missing.</li>\n                        <li>card last4digits is required.</li>\n                        <li>Registered mobile number is required for UPI payment mode.</li>\n                        <li>Offer not applicable for payment method.</li>\n                        <li>Transaction not supported for PGATPOS validation.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 54 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq54\" class=\"faq-checkbox\">\n                <label for=\"faq54\" class=\"faq-question\">\n                    <strong>INVALID_REQUEST_TYPE</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 type is not supported for this endpoint.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 55 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq55\" class=\"faq-checkbox\">\n                <label for=\"faq55\" class=\"faq-question\">\n                    <strong>INVALID_RESPONSE_FROM_BRAND</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>We received an invalid response from the brand.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 56 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq56\" class=\"faq-checkbox\">\n                <label for=\"faq56\" class=\"faq-question\">\n                    <strong>INVALID_RESPONSE_RECEIVED_FOR_PRODUCT_BLOCK</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>Couldn't lock the product on selection.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 57 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq57\" class=\"faq-checkbox\">\n                <label for=\"faq57\" class=\"faq-question\">\n                    <strong>INVALID_SERIAL_NUMBER</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>This Serial number is invalid.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 58 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq58\" class=\"faq-checkbox\">\n                <label for=\"faq58\" class=\"faq-question\">\n                    <strong>INVALID_SETTLE_AMOUNT</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>Issue with transaction amount.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 59 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq59\" class=\"faq-checkbox\">\n                <label for=\"faq59\" class=\"faq-question\">\n                    <strong>INVALID_SKU_CODE</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 SKU code provided seems incorrect.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 60 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq60\" class=\"faq-checkbox\">\n                <label for=\"faq60\" class=\"faq-question\">\n                    <strong>INVALID_STORE_ID</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>Store ID is invalid or inactive.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 61 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq61\" class=\"faq-checkbox\">\n                <label for=\"faq61\" class=\"faq-question\">\n                    <strong>INVALID_TXN_AMOUNT</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>Order amount doesn't qualify for EMI.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 62 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq62\" class=\"faq-checkbox\">\n                <label for=\"faq62\" class=\"faq-question\">\n                    <strong>INVALID_VOID_AMOUNT</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>Cancellation amount exceeds or doesn't match original value.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 63 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq63\" class=\"faq-checkbox\">\n                <label for=\"faq63\" class=\"faq-question\">\n                    <strong>ISSUER_ID_NOT_FOUND</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>Bank or issuer doesn't support this offer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 64 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq64\" class=\"faq-checkbox\">\n                <label for=\"faq64\" class=\"faq-question\">\n                    <strong>MAPPING_ERROR</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>Error occurred while mapping the response.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 65 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq65\" class=\"faq-checkbox\">\n                <label for=\"faq65\" class=\"faq-question\">\n                    <strong>MINIMUM_ONE_FIELD_REQUIRED_UNDER_CONVENIENCE</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>Convenience fee is not present in the system.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 66 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq66\" class=\"faq-checkbox\">\n                <label for=\"faq66\" class=\"faq-question\">\n                    <strong>MISSING_REQUIRED_PARAMETER</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>The transaction request is incomplete.</li>\n                        <li>product_details are required for this offer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 67 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq67\" class=\"faq-checkbox\">\n                <label for=\"faq67\" class=\"faq-question\">\n                    <strong>MOBILE_NUMBER_NOT_PRESENT</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>Mobile number needed for EMI/payment.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 68 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq68\" class=\"faq-checkbox\">\n                <label for=\"faq68\" class=\"faq-question\">\n                    <strong>MULTIPLE_CONVENIENCE_FEE_ON_ISSUER_TYPE_FOUND</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 system found more than one fee setup for the selected card type, which is not allowed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 69 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq69\" class=\"faq-checkbox\">\n                <label for=\"faq69\" class=\"faq-question\">\n                    <strong>OFFER_BUDGET_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>Offer budget exceeded for the requested offer. Please try again with different offer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 70 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq70\" class=\"faq-checkbox\">\n                <label for=\"faq70\" class=\"faq-question\">\n                    <strong>OFFER_DETAILS_NOT_VALID</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>Offer details issuer parameters are invalid.</li>\n                        <li>Offer details tenure is invalid.</li>\n                        <li>Offer details are invalid.</li>\n                        <li>Offer details issuer name is invalid.</li>\n                        <li>Offer details issuer id is invalid.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 71 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq71\" class=\"faq-checkbox\">\n                <label for=\"faq71\" class=\"faq-question\">\n                    <strong>OFFER_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>The selected offer has expired.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 72 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq72\" class=\"faq-checkbox\">\n                <label for=\"faq72\" class=\"faq-question\">\n                    <strong>OFFER_EXPIRED_OR_INVALID</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 selected offer is no longer valid.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 73 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq73\" class=\"faq-checkbox\">\n                <label for=\"faq73\" class=\"faq-question\">\n                    <strong>OFFER_NOT_CONFIGURED</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>Merchant has no active offers set.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 74 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq74\" class=\"faq-checkbox\">\n                <label for=\"faq74\" class=\"faq-question\">\n                    <strong>OFFER_VALIDATION_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>Invalid offer selected.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 75 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq75\" class=\"faq-checkbox\">\n                <label for=\"faq75\" 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>This transaction step isn't allowed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 76 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq76\" class=\"faq-checkbox\">\n                <label for=\"faq76\" class=\"faq-question\">\n                    <strong>ORDER_ALREADY_BLOCKED</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>This product is already blocked.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 77 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq77\" class=\"faq-checkbox\">\n                <label for=\"faq77\" class=\"faq-question\">\n                    <strong>ORDER_ALREADY_UNBLOCKED</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 product is already unblocked.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 78 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq78\" class=\"faq-checkbox\">\n                <label for=\"faq78\" class=\"faq-question\">\n                    <strong>ORDER_NOT_FOUND</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>We couldn't find the referenced order.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 79 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq79\" class=\"faq-checkbox\">\n                <label for=\"faq79\" class=\"faq-question\">\n                    <strong>ORDER_UNBLOCK_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>Unblocking this order is not permitted for the requested action.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 80 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq80\" class=\"faq-checkbox\">\n                <label for=\"faq80\" class=\"faq-question\">\n                    <strong>OTHER_ISSUER_NOT_ALLOWED_WITH_CARDLESS_ISSUER_TYPE</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>You cannot combine cardless EMI with another card-based EMI in one transaction.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 81 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq81\" class=\"faq-checkbox\">\n                <label for=\"faq81\" class=\"faq-question\">\n                    <strong>OTP_VALIDATION_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>Incorrect OTP entered.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 82 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq82\" class=\"faq-checkbox\">\n                <label for=\"faq82\" class=\"faq-question\">\n                    <strong>PAR_NOT_FOUND</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>Card token couldn't be matched to a card.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 83 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq83\" class=\"faq-checkbox\">\n                <label for=\"faq83\" class=\"faq-question\">\n                    <strong>PAYMENT_OPTION_DETAILS</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 method info is invalid or incomplete.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 84 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq84\" class=\"faq-checkbox\">\n                <label for=\"faq84\" class=\"faq-question\">\n                    <strong>PERFORM_IMEI_NOT_APPLICABLE</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>Perform-imei not applicable as one of the requested product is not present in the system.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 85 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq85\" class=\"faq-checkbox\">\n                <label for=\"faq85\" class=\"faq-question\">\n                    <strong>PHONE_NUMBER_IS_NOT_PRESENT</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>A valid mobile number is required to check eligibility for EMI offers in Cardless schemes.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 86 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq86\" class=\"faq-checkbox\">\n                <label for=\"faq86\" class=\"faq-question\">\n                    <strong>PRODUCT_ALREADY_BLOCKED</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>This product is already sold or tied to a prior EMI.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 87 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq87\" class=\"faq-checkbox\">\n                <label for=\"faq87\" class=\"faq-question\">\n                    <strong>PRODUCT_ALREADY_SKIPPED</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>Product is already skipped.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 88 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq88\" class=\"faq-checkbox\">\n                <label for=\"faq88\" class=\"faq-question\">\n                    <strong>PRODUCT_ALREADY_SOLD</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>Product not available for this transaction.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 89 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq89\" class=\"faq-checkbox\">\n                <label for=\"faq89\" class=\"faq-question\">\n                    <strong>PRODUCT_ALREADY_UNBLOCKED</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 product is already released and available for EMI.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 90 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq90\" class=\"faq-checkbox\">\n                <label for=\"faq90\" class=\"faq-question\">\n                    <strong>PRODUCT_AMOUNT_NOT_PRESENT</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>Something wrong with product pricing.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 91 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq91\" class=\"faq-checkbox\">\n                <label for=\"faq91\" class=\"faq-question\">\n                    <strong>PRODUCT_BLOCKING_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>Product is unavailable or already linked to another transaction.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 92 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq92\" class=\"faq-checkbox\">\n                <label for=\"faq92\" class=\"faq-question\">\n                    <strong>PRODUCT_CODE_NOT_PRESENT</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>Product is missing or not linked to EMI/offer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 93 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq93\" class=\"faq-checkbox\">\n                <label for=\"faq93\" class=\"faq-question\">\n                    <strong>PRODUCT_DETAILS_NOT_PRESENT</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>Product details are incomplete or invalid.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 94 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq94\" class=\"faq-checkbox\">\n                <label for=\"faq94\" class=\"faq-question\">\n                    <strong>PRODUCT_INSTANCE_EXHAUSTED</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>Product has been used maximum allowed times for EMI/offers.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 95 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq95\" class=\"faq-checkbox\">\n                <label for=\"faq95\" class=\"faq-question\">\n                    <strong>PRODUCT_NOT_BLOCKED</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>This product was never locked for EMI and can't be unblocked.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 96 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq96\" class=\"faq-checkbox\">\n                <label for=\"faq96\" class=\"faq-question\">\n                    <strong>PRODUCT_SERIAL_NUMBER_MISMATCH</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>Product serial number mismatch/not-present for one of the requested product id.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 97 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq97\" class=\"faq-checkbox\">\n                <label for=\"faq97\" class=\"faq-question\">\n                    <strong>PRODUCT_VALIDATION_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>Product info seems incorrect.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 98 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq98\" class=\"faq-checkbox\">\n                <label for=\"faq98\" class=\"faq-question\">\n                    <strong>PROGRAM_TYPE_NOT_ENABLED</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>EMI or Offer program type is inactive.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 99 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq99\" class=\"faq-checkbox\">\n                <label for=\"faq99\" class=\"faq-question\">\n                    <strong>PROGRAM_TYPE_NOT_PRESENT</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 required EMI/offer type is not configured for this merchant.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 100 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq100\" class=\"faq-checkbox\">\n                <label for=\"faq100\" class=\"faq-question\">\n                    <strong>REFUND_DURATION_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>Time limit for refund has passed.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 101 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq101\" class=\"faq-checkbox\">\n                <label for=\"faq101\" class=\"faq-question\">\n                    <strong>REFUND_LOAN_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>Refund wasn't processed successfully.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 102 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq102\" class=\"faq-checkbox\">\n                <label for=\"faq102\" class=\"faq-question\">\n                    <strong>REFUND_NOT_ALLOWED_FOR_ISSUER</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>Refund can't be done on this card.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 103 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq103\" class=\"faq-checkbox\">\n                <label for=\"faq103\" class=\"faq-question\">\n                    <strong>SEND_OTP_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>Couldn't send OTP.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 104 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq104\" class=\"faq-checkbox\">\n                <label for=\"faq104\" class=\"faq-question\">\n                    <strong>SEND_PAYMENT_LINK_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>We couldn't send you the payment link.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 105 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq105\" class=\"faq-checkbox\">\n                <label for=\"faq105\" class=\"faq-question\">\n                    <strong>SERIAL_NUMBER_MODEL_MISMATCH</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 serial number does not match the product model provided.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 106 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq106\" class=\"faq-checkbox\">\n                <label for=\"faq106\" class=\"faq-question\">\n                    <strong>SERIAL_NUMBER_NOT_VALIDATED</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>Serial number validation could not be completed for this product.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 107 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq107\" class=\"faq-checkbox\">\n                <label for=\"faq107\" class=\"faq-question\">\n                    <strong>SKIP_IMEI_NOT_APPLICABLE</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>Skip-imei not applicable as the requested product is not present in the system.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 108 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq108\" class=\"faq-checkbox\">\n                <label for=\"faq108\" class=\"faq-question\">\n                    <strong>SKU_NOT_FOUND</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 requested SKU is not present in inventory.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 109 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq109\" class=\"faq-checkbox\">\n                <label for=\"faq109\" class=\"faq-question\">\n                    <strong>TOKEN_NOT_FOUND</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 provided token could not be found.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 110 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq110\" class=\"faq-checkbox\">\n                <label for=\"faq110\" class=\"faq-question\">\n                    <strong>TXN_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>Your transaction session expired due to inactivity.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 111 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq111\" class=\"faq-checkbox\">\n                <label for=\"faq111\" class=\"faq-question\">\n                    <strong>UNBLOCK_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>Unblocking this product isn't allowed in its current state.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 112 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq112\" class=\"faq-checkbox\">\n                <label for=\"faq112\" class=\"faq-question\">\n                    <strong>UNPROCESSABLE_ENTITY</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 transaction couldn't be processed.</li>\n                        <li>Refunds are not allowed for this issuer.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 113 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq113\" class=\"faq-checkbox\">\n                <label for=\"faq113\" class=\"faq-question\">\n                    <strong>UPI_VPA_FETCH_FAILURE</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>There is an issue in VPA fetch service. Please try again later.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 114 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq114\" class=\"faq-checkbox\">\n                <label for=\"faq114\" class=\"faq-question\">\n                    <strong>UPI_VPA_NOT_FOUND</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>VPA not found for provided registered mobile number</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 115 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq115\" class=\"faq-checkbox\">\n                <label for=\"faq115\" class=\"faq-question\">\n                    <strong>VELOCITY_BLOCKING_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>Card or account spending limits exceeded.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 116 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq116\" class=\"faq-checkbox\">\n                <label for=\"faq116\" class=\"faq-question\">\n                    <strong>VELOCITY_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>Too many transactions or volume used.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 117 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq117\" class=\"faq-checkbox\">\n                <label for=\"faq117\" class=\"faq-question\">\n                    <strong>VELOCITY_CHECK_REQUIRED</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>Spend/transaction monitoring required.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 118 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq118\" class=\"faq-checkbox\">\n                <label for=\"faq118\" class=\"faq-question\">\n                    <strong>VELOCITY_RULE_NOT_APPLICABLE_ON_PRODUCT</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>Any velocity rule is not applicable on this product.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 119 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq119\" class=\"faq-checkbox\">\n                <label for=\"faq119\" class=\"faq-question\">\n                    <strong>VELOCITY_UNBLOCKING_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>Unable to reset usage limits.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 120 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq120\" class=\"faq-checkbox\">\n                <label for=\"faq120\" class=\"faq-question\">\n                    <strong>VOID_TRANSACTION_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>We couldn't cancel this transaction.</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n                <!-- Error Code 121 -->\n                <div class=\"faq-item\" data-category=\"4XX\">\n                <input type=\"checkbox\" id=\"faq121\" class=\"faq-checkbox\">\n                <label for=\"faq121\" class=\"faq-question\">\n                    <strong>VPA_MISMATCH</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>Provided VPA does not match with registered VPA</li>\n                  </ul>\n                  <p><strong>Source</strong>: <code>INTERNAL</code></p>\n                </div>\n                </div>\n            </div>\n        </div>"
}
[/block]
