CINXE.COM

Reserve Bank of India - Notifications

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <title>Reserve Bank of India - Notifications</title> <meta name="description" content="" /> <meta name="author" content="" /> <meta name="viewport" content="width=device-width" /> <script type="text/javascript" src="/js/libs/modernizr-2.5.3.min.js"></script> </head> <body onload="SetTreeStyles()"> <form method="post" action="./NotificationUser.aspx?Id=12159" id="form1"> <div class="aspNetHidden"> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTU4MTQzMTY5MWRk/vgV8+6xUtAfIR9iKN+In/xe+NioOZoI706P/87B9XY=" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['form1']; if (!theForm) { theForm = document.form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="B1534F13" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEdAAgcNzhunNKjyW1qmj6qCwW+lK+XrsQEVyjeDxQ0A4GYXFBwzdjZXczwplb2HKGyLlqLrBfuDtX7nV3nL+5njT0xZDpy7WJnvc3tgXY08CYLJD+rfdwJAuBoVBISURIXWlx9xf1loRXvygROM/A1O+NHJounKCGGAHd04zzVhBPZz8IZSyUENi2S5L4Re4lJJyjjqUPNow0HRQQ9FfM5OoUF" /> </div> <input type="hidden" name="hdnYear" id="hdnYear" /> <input type="hidden" name="hdnMonth" id="hdnMonth" value="0" /> <link href="/JQuery/css/jquery-ui-1.8.18.custom2.css" rel="stylesheet" type="text/css" /> <link href="/includes/print.css" rel="stylesheet" media="print" type="text/css" /> <link href="/Styles/960.css" rel="stylesheet" type="text/css" /> <link href="/Includes1/rbi.css?v=4.0" rel="Stylesheet" type="text/css" /> <script type="text/javascript" src="/js/libs/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="/JQuery/ui/jquery.ui.revampRBI.js"></script> <script type="text/javascript" src="/js/ImgSaveDisable.js"></script> <!--<script src='//tw.netcore.co.in/smartechclient.js'></script> <script> smartech('create', 'ADGMOT35CHFLVDHBJNIG50K968AU3Q5FOE3L6REE67CQ9HGBQ58G'); smartech('register', '4d6884e503ecf55a3339a37e98b711da'); smartech('identify', ''); smartech('dispatch', 1, { }); </script>--> <script type="text/javascript"> //Redirect to mobile site start function detectmob() { if (screen.width <= 599 || screen.Height <= 975) { return true; } else { return false; } } if (detectmob()) { window.location.href = "https://m.rbi.org.in" + window.location.pathname; } //Redirect to mobile site End $(document).ready(function () { Search(); }); function Search() { highlightTextAutocomplete(); $(".autoSuggest").autocomplete({ source: function (request, response) { var param = { keyWord: document.getElementById('txtSearch').value }; $.ajax({ url: "../Home.aspx/GetKeywords", data: JSON.stringify(param), dataType: "json", type: "POST", contentType: "application/json; charset=utf-8", dataFilter: function (data) { return data; }, success: function (data) { if (data.d.length > 0) { response($.map(data.d, function (item) { return { value: RemoveSpecialChars(item) } })) } else { response([{ label: "No results found", value: ""}]); } }, error: function (XMLHttpRequest, textStatus, errorThrown) { alert(textStatus); } }); }, // select: function (event, ui) { // if (ui.item.value != "") { // window.open("/scripts/SearchResults.aspx?search=" + ui.item.value, '_blank'); // } // }, minLength: 3 }); } function highlightTextAutocomplete() { var oldFn = $.ui.autocomplete.prototype._renderItem; $.ui.autocomplete.prototype._renderItem = function (ul, item) { var t = String(item.value).replace( new RegExp(this.term, "gi"), "<span class='ui-state-highlight'>$&</span>"); if (item.value != "") { return $("<li class='borderAutocomplete'></li>") .data("item.autocomplete", item) .append("<a>" + t + "</a>") .appendTo(ul); } else { return $("<li></li>") .data("item.autocomplete", item) .append("") .appendTo(ul); } }; } function RemoveSpecialChars(inputText) { var filteredString = inputText.replace(/[\*\^\'\!\@\$\.\#\(\)\-\?\<\>\;\"\&\+\{\}\:]/g, ''); //alert(filteredString); return filteredString; } // jQuery(document).ready(function () { // var xmlhttp; // jQuery("#txtSearch").autocomplete( // { // minLength: 3, // delay: 0, // source: function (request, response) { // if (!xmlhttp) { // if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari // xmlhttp = new XMLHttpRequest(); // } // else {// code for IE6, IE5 // xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); // } // } // else if (xmlhttp.readyState != 0) { // xmlhttp.abort(); // } // xmlhttp.onreadystatechange = function () { // if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { // fetchedKeywords = xmlhttp.responseText.split("'"); // // if (fetchedKeywords.length > 10) { // fetchedKeywords.splice(10, fetchedKeywords.length - 10); // } // if (fetchedKeywords != "") response(fetchedKeywords); // else response(null); // } // } // var input = document.getElementById("txtSearch").value; // xmlhttp.open("POST", "/Webservice/KeywordSearch.ashx?q=" + input, true); // xmlhttp.send(); // } // }); // }); function LoadSearchData(id, key) { if (id == "txtSearch") { if (key == 13) { validateSearchText(); return false; } } else validateSearchText(); return true; } function validateSearchText() { if (validation()) { var strloc = new String(document.location.href.toString()); if (strloc.indexOf("SearchResults.aspx") == -1) {// window.open("/scripts/SearchResults.aspx?search=" + document.getElementById("txtSearch").value); } else window.open("/scripts/SearchResults.aspx?search=" + document.getElementById("txtSearch").value, '_parent'); } } function validation() { strSearch = trim(document.getElementById('txtSearch').value); if (strSearch == "") { alert('Please enter the search text'); return false; } else { //var strFilterChars = new RegExp("[~`!@#$%^&*()_+-={}\\[\\]:/\\\\\";|'<>,.?]"); var strFilterChars = new RegExp("^[0-9a-zA-Z ]*$"); if (!strFilterChars.test(strSearch)) { alert("Please remove special characters from search text"); return false; } } return true; } function trim(value) { value = value.replace(/^\s+/, ''); value = value.replace(/\s+$/, ''); return value; } </script> <style type="text/css"> .blink_msm1 { -webkit-animation-name: blinker; -webkit-animation-duration: 3s; -webkit-animation-timing-function: linear; -webkit-animation-iteration-count: infinite; -moz-animation-name: blinker; -moz-animation-duration: 3s; -moz-animation-timing-function: linear; -moz-animation-iteration-count: infinite; animation-name: blinker; animation-duration: 3s; animation-timing-function: linear; animation-iteration-count: infinite; } @-moz-keyframes blinker { 0% { opacity: 1.0; } 50% { opacity: 0.0; } 100% { opacity: 1.0; } } @-webkit-keyframes blinker { 0% { opacity: 1.0; } 50% { opacity: 0.0; } 100% { opacity: 1.0; } } @keyframes blinker { 0% { opacity: 1.0; } 50% { opacity: 0.0; } 100% { opacity: 1.0; } } .blink_NewWebsite { animation:blinker 1.5s linear infinite; color:blue; font-size:1.5em; margin-bottom:0px; } @keyframes blinker { 50%{ opacity:0; } } </style> <div class="top_setting"> <div class="container_12"> <div class="grid_5 top_settings"> <a href="#mainsection">Skip to main content </a> </div> <div id="UsrFontCntr_tblThemes" style="float: right" class="grid_4 prefix_3 top_settings"> <span class="fonts"> <a id="UsrFontCntr_LinkBtnFontIncrease" title="Increase Font Size" href="javascript:__doPostBack(&#39;UsrFontCntr$LinkBtnFontIncrease&#39;,&#39;&#39;)" style="text-decoration:none;"><img src="/images/font-increase.gif" alt="Increase Font Size"/></a></span> <span class="fonts"> <a id="UsrFontCntr_LinkBtnFontRegular" class="aspNetDisabled" title="Regular Font Size" style="text-decoration:none;"><img src="/images/font-reset.gif" alt="Regular Font Size"/></a></span> <span class="fonts"> <a id="UsrFontCntr_LinkBtnFontDecrease" title="Decrease Font Size" href="javascript:__doPostBack(&#39;UsrFontCntr$LinkBtnFontDecrease&#39;,&#39;&#39;)" style="text-decoration:none;"><img src="/images/font-decrease.gif" alt="Decrease Font Size"/></a></span> <span class="black"> <a id="UsrFontCntr_LinkBtnAccessibilty" title="Apply Dark Theme" href="javascript:__doPostBack(&#39;UsrFontCntr$LinkBtnAccessibilty&#39;,&#39;&#39;)" style="text-decoration:none;"><img src="/images/dark-theme.gif" alt="Apply Dark Theme"/></a></span> <span class="white"> <a id="UsrFontCntr_LinkBtnUndoAccessibilty" class="aspNetDisabled" title="Apply Normal Theme" style="text-decoration:none;"><img src="/images/bright-theme.gif" alt="Apply Normal Theme"/></a></span> <a onclick="javascript:window.print();" id="A1" title="Print This Page"> <img src="/images/print-icon.png" alt="Print this page" class="print" /></a> <div style="float: right"> <label style="margin-right: 6px;color: #000000;"> Language</label><a class="lnk-language" id="lnkhindi" title="Hindi site" href="https://www.rbi.org.in/hindi/Home.aspx">हिंदी</a></div> </div> <div class="clearfix"> </div> </div> <div> <div style="background: url(/images/Innerstripbg1.jpg);height: 32px;min-width: 100%;float: left;background-repeat: repeat;text-align: center;"> <a class="blink_NewWebsite" target="_blank" href="https://website.rbi.org.in" style="color: #205db1;text-decoration: none;"> <span>Click here to <b><span style="font-size: 20px;padding: 7px;">Visit the RBI’s new website</span></b> </span></a> </div> </div> </div> <div class="container_12"> <div class="grid_4" role="banner"> <h1 class="logo"> <a href="/home.aspx"> <img src="/images/rbi-company-logo.jpg" alt="Reserve Bank of India" /></a></h1> </div> <div class="grid_5" align="right" role="search" style="float: right"> <label for="searchbox" class="search_label"> Search the Website</label> <input name="UsrFontCntr$txtSearch" type="text" maxlength="103" id="txtSearch" class="search_box autoSuggest" onkeydown="return LoadSearchData(&#39;txtSearch&#39;,event.keyCode);" placeHolder="Search" /> <button id="btnSearch" onclick="return LoadSearchData('btnSearch',event.keyCode);" type="button" class="search_button"> Search</button> </div> <div class="grid_2" align="CENTER" role="" style="float: right"> <h1 class="logo"> <img src="../images/BBBP_Logo_4.jpg" alt="BBBPLogo" style="padding-top: 10px;"> </h1> </div> <div class="clearfix"> </div> </div> <!-- NAVIGATION START--> <nav role="navigation"> <div class="top-newmenu"> <div class="midmenu"> <ul> <li><a href="https://rbi.org.in/home.aspx">Home</a></li> <li><a href="/Scripts/AboutusDisplay.aspx">About Us</a></li> <li><a href="/Scripts/NotificationUser.aspx">Notifications</a></li> <li><a href="/Scripts/BS_PressReleaseDisplay.aspx">Press Releases</a></li> <li><a href="#">Speeches & Media Interactions<img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/BS_ViewSpeeches.aspx">Speeches</a></li> <li><a href="/Scripts/BS_ViewInterviews.aspx">Media Interactions</a></li> <li><a href="/Scripts/Lectures.aspx">Memorial Lectures</a></li> </ul> </li> <li><a href="#">Publications <img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/Publications.aspx?publication=Annual">Annual</a></li> <li><a href="/Scripts/Publications.aspx?publication=HalfYearly">Half-Yearly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Quarterly">Quarterly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Bimonthly">Bi-monthly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Monthly">Monthly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Weekly">Weekly</a></li> <li><a href="/Scripts/Publications.aspx?publication=Occasional">Occasional</a></li> <li><a href="/Scripts/Publications.aspx?publication=Reports">Reports</a></li> <li><a href="/Scripts/OccasionalPublications.aspx?head=Working Papers">Working Papers</a></li> </ul> </li> <li><a href="#">Legal Framework <img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/Act.aspx">Act </a></li> <li><a href="/Scripts/Rules.aspx">Rules </a></li> <li><a href="/Scripts/Regulations.aspx">Regulations </a></li> <li><a href="/Scripts/Schemes.aspx">Schemes </a></li> </ul> </li> <li><a href="#">Research <img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/ExternalResearchSchemes.aspx">External Research Schemes</a></li> <li><a href="/Scripts/OccasionalPapers.aspx">RBI Occasional Papers</a></li> <li><a href="/Scripts/OccasionalPublications.aspx?head=Working%20Papers">Working Papers</a></li> <li><a href="/Scripts/BS_ViewBulletin.aspx">RBI Bulletin</a></li> <li><a href="/Scripts/Project1.aspx">History</a></li> <li><a href="/Scripts/Occas_DRG_Studies.aspx">DRG Studies</a></li> <li><a href="/Scripts/KLEMS.aspx">KLEMS</a></li> <li><a href="/Scripts/StateStatisticsFinances.aspx">State Statistics and Finances</a></li> </ul> </li> <li><a href="#">Statistics <img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/Scripts/Statistics.aspx">Data Releases</a></li> <li><a href="https://data.rbi.org.in" target="_blank">Database on Indian Economy</a></li> <li><a href="/scripts/FS_PDS.aspx">Public Debt Statistics</a></li> </ul> </li> <li><a href="#">Regulatory Reporting<img src="/images/down.gif" alt="down" class="downarrowclass" style="border:0; padding-left: 5px"></a> <ul> <li><a href="/scripts/BS_Listofallreturns.aspx">List of Returns</a></li> <li><a href="/scripts/DataDefinition.aspx">Data Definition</a> <!--<ul> <li><a href="../scripts/Assets.aspx">Assets</a></li> <li><a href="../Scripts/Liabilities.aspx">Liabilities</a></li> <li><a href="../Scripts/OffBalanceSheetItems.aspx">Off-Balance Sheet Items</a></li> <li><a href="../Scripts/ProfitandLossAccountItems.aspx">Profit and Loss Account Items</a></li> <li><a href="../Scripts/Miscellaneous.aspx">Miscellaneous</a></li> </ul>--> </li> <li><a href="/scripts/ValidationRules.aspx">Validation rules/ Taxonomy</a></li> <li><a href="/scripts/ReportingPlaform.aspx">List of RBI Reporting Portals</a></li> <li><a href="/scripts/ReportingFAQ.aspx">FAQs of RBI Reporting Portals</a></li> </ul> </li> </ul> </div> </div> </nav> <!-- NAVIGATION END--> <!--HEADER END--> <input type="submit" name="UsrFontCntr$btn" value="" id="btn" style="visibility: hidden; height: 0px; width: 0px;" /> <div> <div class="container_12"> <a id="mainsection" name="mainsection"></a> <div class="grid_12 breadcrumbs"> <ul> <li><a href="../Home.aspx">Home</a></li> <span id="lblNav"><li><a href="NotificationUser.aspx">Notifications</a></li></span> </ul> </div> <div class="clear"> </div> <div id="pnlDetails" class="grid_11 omega right_blue_border"> <div> <div id="NotificationUser" class="text1"> <h2 class="page_title"> Notifications</h2> <div id="example-min"> <div id="doublescroll"> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <table class="tablebg" width="100%"><tr><td class="tableheader"><a target="_blank" href="https://rbidocs.rbi.org.in/rdocs/notification/PDFs/DPSSCOFTBA69C3B5B8CC4025AD089456DD857C5F.PDF"><img src="../Images/pdf.gif" border="0" align="absmiddle"></a> (329 kb)</td></tr><tr><td align="center" class="tableheader"><b>Tokenisation – Card Transactions: Permitting Card-on-File Tokenisation (CoFT) Services</b></td></tr><tr class="tablecontent2"><td><table width="100%" border="0" align="center" class="td"> <tr> <td><p>RBI/2021-22/96<br> CO.DPSS.POLC.No.S-516/02-14-003/2021-22</p> <p align="right">September 07, 2021</p> <p>All Payment System Providers and Payment System Participants</p> <p>Madam / Dear Sir,</p> <p class="head"><u>Tokenisation – Card Transactions: Permitting Card-on-File Tokenisation (CoFT) Services</u></p> <p>We invite reference to our <a href="https://www.rbi.org.in/Scripts/NotificationUser.aspx?Id=11449&Mode=0" target="_blank" class="links">circular DPSS.CO.PD No.1463/02.14.003/2018-19 dated January 8, 2019</a> on “Tokenisation – Card transactions”, permitting authorised card networks to offer card tokenisation services subject to the conditions listed therein. Initially limited to mobile phones and tablets, this facility was subsequently extended to laptops, desktops, wearables (wrist watches, bands, etc.), Internet of Things (IoT) devices, etc., vide our <a href="https://www.rbi.org.in/Scripts/NotificationUser.aspx?Id=12152&Mode=0" target="_blank" class="links">circular CO.DPSS.POLC.No.S-469/02-14-003/2021-22 dated August 25, 2021</a> on “Tokenisation – Card Transactions : Extending the Scope of Permitted Devices”.</p> <p>2. Reference is also invited to our <a href="https://www.rbi.org.in/Scripts/NotificationUser.aspx?Id=11822&Mode=0" target="_blank" class="links">circulars DPSS.CO.PD.No.1810/02.14.008/2019-20 dated March 17, 2020</a> (as updated from time to time) and <a href="https://www.rbi.org.in/Scripts/NotificationUser.aspx?Id=12050&Mode=0" target="_blank" class="links">CO.DPSS.POLC.No.S33/02-14-008/2020-2021 dated March 31, 2021</a> on “Guidelines on Regulation of Payment Aggregators and Payment Gateways”, advising that neither the authorised Payment Aggregators (PAs) nor the merchants on-boarded by them shall store customer card credentials [also known as Card-on-File (CoF)].</p> <p>3. On a review of the tokenisation framework and to enable cardholders to benefit from the security of tokenised card transactions as also the convenience of CoF, it has been decided to effect the following enhancements –</p> <ol type="a"> <li> <p>Extend the device-based tokenisation<sup data-toggle="tooltip" title="The term “device-based tokenisation” wherever used in this circular refers to card tokenisation framework laid down vide RBI circulars dated January 8, 2019 and August 25, 2021."><a href="#F1" class="links">1</a></sup> framework referred to at paragraph 1 above to CoF Tokenisation (CoFT) as well.</p> </li> <li> <p>Permit card issuers to offer card tokenisation services as Token Service Providers<sup data-toggle="tooltip" title="Token Service Provider (TSP) refers to the entity which tokenises the actual card credentials and de-tokenises them whenever required. Earlier only card networks were allowed to act as TSPs."><a href="#F2" class="links">2</a></sup> (TSPs).</p> </li> <li> <p>The facility of tokenisation shall be offered by the TSPs only for the cards issued by / affiliated to them.</p> </li> <li> <p>The ability to tokenise<sup data-toggle="tooltip" title="In this circular, the word “token” wherever used includes token reference number, card reference number or any other similar term."><a href="#F3" class="links">3</a></sup> and de-tokenise card data shall be with the same TSP.</p> </li> <li> <p>Tokenisation of card data shall be done with explicit customer consent requiring Additional Factor of Authentication (AFA) validation by card issuer.</p> </li> <li> <p>Additional requirements relating to CoFT are listed in the <a href="#ANN" class="links">Annex</a>.</p> </li> </ol> <p>4. Further, in the interest of cIarity, the following points may be noted – </p> <ol type="a"> <li> <p>With effect from January 1, 2022, no entity in the card transaction / payment chain, other than the card issuers and / or card networks, shall store the actual card data. Any such data stored previously shall be purged.</p> </li> <li> <p>For transaction tracking and / or reconciliation purposes, entities can store limited data – last four digits of actual card number and card issuer’s name – in compliance with the applicable standards.</p> </li> <li> <p>Complete and ongoing compliance with the above by all entities involved, shall be the responsibility of the card networks.</p> </li> </ol> <p>5. This directive is issued under Section 10 (2) read with Section 18 of Payment and Settlement Systems Act, 2007 (Act 51 of 2007).</p> <p>Yours faithfully,</p> <p>(P. Vasudevan)<br> Chief General Manager</p><hr> <p align="right" class="head"><a id="ANN"></a>Annex</p> <p align="center">(CO.DPSS.POLC.No.S-516/02-14-003/2021-22 dated September 07, 2021)</p> <p align="center" class="head"><u>Conditions to be fulfilled for offering CoFT services</u></p> <p>1. For the purpose of CoFT, the token shall be unique for a combination of card, token requestor and merchant<sup data-toggle="tooltip" title="The word “merchant” wherever used in this circular refers to the end-merchant. However, in case of an e-commerce marketplace entity, merchant refers to the said e-commerce entity. Further, token requestor and merchant may or may not be the same entity."><a href="#F4" class="links">4</a></sup>.</p> <p>2. If card payment for a purchase transaction at a merchant is being performed along with the registration for CoFT, then AFA validation may be combined.</p> <p>3. The merchant shall give an option to the cardholder to de-register the token. Further, a token requestor having direct relationship with the cardholder shall list the merchants in respect of whom the CoFT has been opted through it by the cardholder; and provide an option to de-register any such token.</p> <p>4. A facility shall also be given by the card issuer to the cardholder to view the list of merchants in respect of whom the CoFT has been opted by her / him, and to de-register any such token. This facility shall be provided through one or more of the following channels – mobile application, internet banking, Interactive Voice Response (IVR) or at branches / offices.</p> <p>5. Whenever a card is renewed or replaced, the card issuer shall seek explicit consent of the cardholder for linking it with the merchants with whom (s)he had earlier registered the card.</p> <p>6. The TSP shall put in place a mechanism to ensure that the transaction request has originated from the merchant and the token requestor with whom the token is associated.</p> <p>7. All other provisions of the <a href="https://rbi.org.in/Scripts/NotificationUser.aspx?Id=11449&Mode=0" target="_blank" class="links">RBI circulars dated January 8, 2019</a> and <a href="https://rbi.org.in/Scripts/NotificationUser.aspx?Id=12152&Mode=0" target="_blank" class="links">August 25, 2021</a> shall be applicable.</p> <p>8. The TSPs shall monitor and ensure compliance in this regard.</p><hr> <p class="footnote"><a id="F1"></a><sup>1</sup> The term “device-based tokenisation” wherever used in this circular refers to card tokenisation framework laid down vide <a href="https://rbi.org.in/Scripts/NotificationUser.aspx?Id=11449&Mode=0" target="_blank" class="links">RBI circulars dated January 8, 2019</a> and <a href="https://rbi.org.in/Scripts/NotificationUser.aspx?Id=12152&Mode=0" target="_blank" class="links">August 25, 2021</a>.</p> <p class="footnote"><a id="F2"></a><sup>2</sup> Token Service Provider (TSP) refers to the entity which tokenises the actual card credentials and de-tokenises them whenever required. Earlier only card networks were allowed to act as TSPs.</p> <p class="footnote"><a id="F3"></a><sup>3</sup> In this circular, the word “token” wherever used includes token reference number, card reference number or any other similar term.</p> <p class="footnote"><a id="F4"></a><sup>4</sup> The word “merchant” wherever used in this circular refers to the end-merchant. However, in case of an e-commerce marketplace entity, merchant refers to the said e-commerce entity. Further, token requestor and merchant may or may not be the same entity.</p></td> </tr></table></td></tr></table> </table> </div> <br /> <div align="right"> </div> </div> </div> </div> </div> <div class="grid_1 archives alpha"> <span id="DateSettree_lbltree"><div class="grid_subtree archives alpha" id="treeYearMonth_PR"><div class="accordionButton year" id="btn2024">2024</div><div class="accordionContent month" id="2024"><ul class="accordionlist"><li><a href="#" id="20240" onclick='GetYearMonth("2024","0")'>All Months</a></li><li><a href="#" id="20241" onclick='GetYearMonth("2024","1")'>January</a></li><li><a href="#" id="20242" onclick='GetYearMonth("2024","2")'>February</a></li><li><a href="#" id="20243" onclick='GetYearMonth("2024","3")'>March</a></li><li><a href="#" id="20244" onclick='GetYearMonth("2024","4")'>April</a></li><li><a href="#" id="20245" onclick='GetYearMonth("2024","5")'>May</a></li><li><a href="#" id="20246" onclick='GetYearMonth("2024","6")'>June</a></li><li><a href="#" id="20247" onclick='GetYearMonth("2024","7")'>July</a></li><li><a href="#" id="20248" onclick='GetYearMonth("2024","8")'>August</a></li><li><a href="#" id="20249" onclick='GetYearMonth("2024","9")'>September</a></li><li><a href="#" id="202410" onclick='GetYearMonth("2024","10")'>October</a></li><li><a href="#" id="202411" onclick='GetYearMonth("2024","11")'>November</a></li><li><a href="#" id="202412" onclick='GetYearMonth("2024","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2023">2023</div><div class="accordionContent month" id="2023"><ul class="accordionlist"><li><a href="#" id="20230" onclick='GetYearMonth("2023","0")'>All Months</a></li><li><a href="#" id="20231" onclick='GetYearMonth("2023","1")'>January</a></li><li><a href="#" id="20232" onclick='GetYearMonth("2023","2")'>February</a></li><li><a href="#" id="20233" onclick='GetYearMonth("2023","3")'>March</a></li><li><a href="#" id="20234" onclick='GetYearMonth("2023","4")'>April</a></li><li><a href="#" id="20235" onclick='GetYearMonth("2023","5")'>May</a></li><li><a href="#" id="20236" onclick='GetYearMonth("2023","6")'>June</a></li><li><a href="#" id="20237" onclick='GetYearMonth("2023","7")'>July</a></li><li><a href="#" id="20238" onclick='GetYearMonth("2023","8")'>August</a></li><li><a href="#" id="20239" onclick='GetYearMonth("2023","9")'>September</a></li><li><a href="#" id="202310" onclick='GetYearMonth("2023","10")'>October</a></li><li><a href="#" id="202311" onclick='GetYearMonth("2023","11")'>November</a></li><li><a href="#" id="202312" onclick='GetYearMonth("2023","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2022">2022</div><div class="accordionContent month" id="2022"><ul class="accordionlist"><li><a href="#" id="20220" onclick='GetYearMonth("2022","0")'>All Months</a></li><li><a href="#" id="20221" onclick='GetYearMonth("2022","1")'>January</a></li><li><a href="#" id="20222" onclick='GetYearMonth("2022","2")'>February</a></li><li><a href="#" id="20223" onclick='GetYearMonth("2022","3")'>March</a></li><li><a href="#" id="20224" onclick='GetYearMonth("2022","4")'>April</a></li><li><a href="#" id="20225" onclick='GetYearMonth("2022","5")'>May</a></li><li><a href="#" id="20226" onclick='GetYearMonth("2022","6")'>June</a></li><li><a href="#" id="20227" onclick='GetYearMonth("2022","7")'>July</a></li><li><a href="#" id="20228" onclick='GetYearMonth("2022","8")'>August</a></li><li><a href="#" id="20229" onclick='GetYearMonth("2022","9")'>September</a></li><li><a href="#" id="202210" onclick='GetYearMonth("2022","10")'>October</a></li><li><a href="#" id="202211" onclick='GetYearMonth("2022","11")'>November</a></li><li><a href="#" id="202212" onclick='GetYearMonth("2022","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2021">2021</div><div class="accordionContent month" id="2021"><ul class="accordionlist"><li><a href="#" id="20210" onclick='GetYearMonth("2021","0")'>All Months</a></li><li><a href="#" id="20211" onclick='GetYearMonth("2021","1")'>January</a></li><li><a href="#" id="20212" onclick='GetYearMonth("2021","2")'>February</a></li><li><a href="#" id="20213" onclick='GetYearMonth("2021","3")'>March</a></li><li><a href="#" id="20214" onclick='GetYearMonth("2021","4")'>April</a></li><li><a href="#" id="20215" onclick='GetYearMonth("2021","5")'>May</a></li><li><a href="#" id="20216" onclick='GetYearMonth("2021","6")'>June</a></li><li><a href="#" id="20217" onclick='GetYearMonth("2021","7")'>July</a></li><li><a href="#" id="20218" onclick='GetYearMonth("2021","8")'>August</a></li><li><a href="#" id="20219" onclick='GetYearMonth("2021","9")'>September</a></li><li><a href="#" id="202110" onclick='GetYearMonth("2021","10")'>October</a></li><li><a href="#" id="202111" onclick='GetYearMonth("2021","11")'>November</a></li><li><a href="#" id="202112" onclick='GetYearMonth("2021","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2020">2020</div><div class="accordionContent month" id="2020"><ul class="accordionlist"><li><a href="#" id="20200" onclick='GetYearMonth("2020","0")'>All Months</a></li><li><a href="#" id="20201" onclick='GetYearMonth("2020","1")'>January</a></li><li><a href="#" id="20202" onclick='GetYearMonth("2020","2")'>February</a></li><li><a href="#" id="20203" onclick='GetYearMonth("2020","3")'>March</a></li><li><a href="#" id="20204" onclick='GetYearMonth("2020","4")'>April</a></li><li><a href="#" id="20205" onclick='GetYearMonth("2020","5")'>May</a></li><li><a href="#" id="20206" onclick='GetYearMonth("2020","6")'>June</a></li><li><a href="#" id="20207" onclick='GetYearMonth("2020","7")'>July</a></li><li><a href="#" id="20208" onclick='GetYearMonth("2020","8")'>August</a></li><li><a href="#" id="20209" onclick='GetYearMonth("2020","9")'>September</a></li><li><a href="#" id="202010" onclick='GetYearMonth("2020","10")'>October</a></li><li><a href="#" id="202011" onclick='GetYearMonth("2020","11")'>November</a></li><li><a href="#" id="202012" onclick='GetYearMonth("2020","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2019">2019</div><div class="accordionContent month" id="2019"><ul class="accordionlist"><li><a href="#" id="20190" onclick='GetYearMonth("2019","0")'>All Months</a></li><li><a href="#" id="20191" onclick='GetYearMonth("2019","1")'>January</a></li><li><a href="#" id="20192" onclick='GetYearMonth("2019","2")'>February</a></li><li><a href="#" id="20193" onclick='GetYearMonth("2019","3")'>March</a></li><li><a href="#" id="20194" onclick='GetYearMonth("2019","4")'>April</a></li><li><a href="#" id="20195" onclick='GetYearMonth("2019","5")'>May</a></li><li><a href="#" id="20196" onclick='GetYearMonth("2019","6")'>June</a></li><li><a href="#" id="20197" onclick='GetYearMonth("2019","7")'>July</a></li><li><a href="#" id="20198" onclick='GetYearMonth("2019","8")'>August</a></li><li><a href="#" id="20199" onclick='GetYearMonth("2019","9")'>September</a></li><li><a href="#" id="201910" onclick='GetYearMonth("2019","10")'>October</a></li><li><a href="#" id="201911" onclick='GetYearMonth("2019","11")'>November</a></li><li><a href="#" id="201912" onclick='GetYearMonth("2019","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2018">2018</div><div class="accordionContent month" id="2018"><ul class="accordionlist"><li><a href="#" id="20180" onclick='GetYearMonth("2018","0")'>All Months</a></li><li><a href="#" id="20181" onclick='GetYearMonth("2018","1")'>January</a></li><li><a href="#" id="20182" onclick='GetYearMonth("2018","2")'>February</a></li><li><a href="#" id="20183" onclick='GetYearMonth("2018","3")'>March</a></li><li><a href="#" id="20184" onclick='GetYearMonth("2018","4")'>April</a></li><li><a href="#" id="20185" onclick='GetYearMonth("2018","5")'>May</a></li><li><a href="#" id="20186" onclick='GetYearMonth("2018","6")'>June</a></li><li><a href="#" id="20187" onclick='GetYearMonth("2018","7")'>July</a></li><li><a href="#" id="20188" onclick='GetYearMonth("2018","8")'>August</a></li><li><a href="#" id="20189" onclick='GetYearMonth("2018","9")'>September</a></li><li><a href="#" id="201810" onclick='GetYearMonth("2018","10")'>October</a></li><li><a href="#" id="201811" onclick='GetYearMonth("2018","11")'>November</a></li><li><a href="#" id="201812" onclick='GetYearMonth("2018","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2017">2017</div><div class="accordionContent month" id="2017"><ul class="accordionlist"><li><a href="#" id="20170" onclick='GetYearMonth("2017","0")'>All Months</a></li><li><a href="#" id="20171" onclick='GetYearMonth("2017","1")'>January</a></li><li><a href="#" id="20172" onclick='GetYearMonth("2017","2")'>February</a></li><li><a href="#" id="20173" onclick='GetYearMonth("2017","3")'>March</a></li><li><a href="#" id="20174" onclick='GetYearMonth("2017","4")'>April</a></li><li><a href="#" id="20175" onclick='GetYearMonth("2017","5")'>May</a></li><li><a href="#" id="20176" onclick='GetYearMonth("2017","6")'>June</a></li><li><a href="#" id="20177" onclick='GetYearMonth("2017","7")'>July</a></li><li><a href="#" id="20178" onclick='GetYearMonth("2017","8")'>August</a></li><li><a href="#" id="20179" onclick='GetYearMonth("2017","9")'>September</a></li><li><a href="#" id="201710" onclick='GetYearMonth("2017","10")'>October</a></li><li><a href="#" id="201711" onclick='GetYearMonth("2017","11")'>November</a></li><li><a href="#" id="201712" onclick='GetYearMonth("2017","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2016">2016</div><div class="accordionContent month" id="2016"><ul class="accordionlist"><li><a href="#" id="20160" onclick='GetYearMonth("2016","0")'>All Months</a></li><li><a href="#" id="20161" onclick='GetYearMonth("2016","1")'>January</a></li><li><a href="#" id="20162" onclick='GetYearMonth("2016","2")'>February</a></li><li><a href="#" id="20163" onclick='GetYearMonth("2016","3")'>March</a></li><li><a href="#" id="20164" onclick='GetYearMonth("2016","4")'>April</a></li><li><a href="#" id="20165" onclick='GetYearMonth("2016","5")'>May</a></li><li><a href="#" id="20166" onclick='GetYearMonth("2016","6")'>June</a></li><li><a href="#" id="20167" onclick='GetYearMonth("2016","7")'>July</a></li><li><a href="#" id="20168" onclick='GetYearMonth("2016","8")'>August</a></li><li><a href="#" id="20169" onclick='GetYearMonth("2016","9")'>September</a></li><li><a href="#" id="201610" onclick='GetYearMonth("2016","10")'>October</a></li><li><a href="#" id="201611" onclick='GetYearMonth("2016","11")'>November</a></li><li><a href="#" id="201612" onclick='GetYearMonth("2016","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2015">2015</div><div class="accordionContent month" id="2015"><ul class="accordionlist"><li><a href="#" id="20150" onclick='GetYearMonth("2015","0")'>All Months</a></li><li><a href="#" id="20151" onclick='GetYearMonth("2015","1")'>January</a></li><li><a href="#" id="20152" onclick='GetYearMonth("2015","2")'>February</a></li><li><a href="#" id="20153" onclick='GetYearMonth("2015","3")'>March</a></li><li><a href="#" id="20154" onclick='GetYearMonth("2015","4")'>April</a></li><li><a href="#" id="20155" onclick='GetYearMonth("2015","5")'>May</a></li><li><a href="#" id="20156" onclick='GetYearMonth("2015","6")'>June</a></li><li><a href="#" id="20157" onclick='GetYearMonth("2015","7")'>July</a></li><li><a href="#" id="20158" onclick='GetYearMonth("2015","8")'>August</a></li><li><a href="#" id="20159" onclick='GetYearMonth("2015","9")'>September</a></li><li><a href="#" id="201510" onclick='GetYearMonth("2015","10")'>October</a></li><li><a href="#" id="201511" onclick='GetYearMonth("2015","11")'>November</a></li><li><a href="#" id="201512" onclick='GetYearMonth("2015","12")'>December</a></li></ul></div><div id="divArchiveMain" class="year" onclick="hideshow('divArchiveSub');" style="cursor: pointer;">Archives</div><div id="divArchiveSub" style="display: none;"><div class="grid_subtree archives alpha" id="treeYearMonth_PR"><div class="accordionButton year" id="btn2014">2014</div><div class="accordionContent month" id="2014"><ul class="accordionlist"><li><a href="#" id="20140" onclick='GetYearMonth("2014","0")'>All Months</a></li><li><a href="#" id="20141" onclick='GetYearMonth("2014","1")'>January</a></li><li><a href="#" id="20142" onclick='GetYearMonth("2014","2")'>February</a></li><li><a href="#" id="20143" onclick='GetYearMonth("2014","3")'>March</a></li><li><a href="#" id="20144" onclick='GetYearMonth("2014","4")'>April</a></li><li><a href="#" id="20145" onclick='GetYearMonth("2014","5")'>May</a></li><li><a href="#" id="20146" onclick='GetYearMonth("2014","6")'>June</a></li><li><a href="#" id="20147" onclick='GetYearMonth("2014","7")'>July</a></li><li><a href="#" id="20148" onclick='GetYearMonth("2014","8")'>August</a></li><li><a href="#" id="20149" onclick='GetYearMonth("2014","9")'>September</a></li><li><a href="#" id="201410" onclick='GetYearMonth("2014","10")'>October</a></li><li><a href="#" id="201411" onclick='GetYearMonth("2014","11")'>November</a></li><li><a href="#" id="201412" onclick='GetYearMonth("2014","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2013">2013</div><div class="accordionContent month" id="2013"><ul class="accordionlist"><li><a href="#" id="20130" onclick='GetYearMonth("2013","0")'>All Months</a></li><li><a href="#" id="20131" onclick='GetYearMonth("2013","1")'>January</a></li><li><a href="#" id="20132" onclick='GetYearMonth("2013","2")'>February</a></li><li><a href="#" id="20133" onclick='GetYearMonth("2013","3")'>March</a></li><li><a href="#" id="20134" onclick='GetYearMonth("2013","4")'>April</a></li><li><a href="#" id="20135" onclick='GetYearMonth("2013","5")'>May</a></li><li><a href="#" id="20136" onclick='GetYearMonth("2013","6")'>June</a></li><li><a href="#" id="20137" onclick='GetYearMonth("2013","7")'>July</a></li><li><a href="#" id="20138" onclick='GetYearMonth("2013","8")'>August</a></li><li><a href="#" id="20139" onclick='GetYearMonth("2013","9")'>September</a></li><li><a href="#" id="201310" onclick='GetYearMonth("2013","10")'>October</a></li><li><a href="#" id="201311" onclick='GetYearMonth("2013","11")'>November</a></li><li><a href="#" id="201312" onclick='GetYearMonth("2013","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2012">2012</div><div class="accordionContent month" id="2012"><ul class="accordionlist"><li><a href="#" id="20120" onclick='GetYearMonth("2012","0")'>All Months</a></li><li><a href="#" id="20121" onclick='GetYearMonth("2012","1")'>January</a></li><li><a href="#" id="20122" onclick='GetYearMonth("2012","2")'>February</a></li><li><a href="#" id="20123" onclick='GetYearMonth("2012","3")'>March</a></li><li><a href="#" id="20124" onclick='GetYearMonth("2012","4")'>April</a></li><li><a href="#" id="20125" onclick='GetYearMonth("2012","5")'>May</a></li><li><a href="#" id="20126" onclick='GetYearMonth("2012","6")'>June</a></li><li><a href="#" id="20127" onclick='GetYearMonth("2012","7")'>July</a></li><li><a href="#" id="20128" onclick='GetYearMonth("2012","8")'>August</a></li><li><a href="#" id="20129" onclick='GetYearMonth("2012","9")'>September</a></li><li><a href="#" id="201210" onclick='GetYearMonth("2012","10")'>October</a></li><li><a href="#" id="201211" onclick='GetYearMonth("2012","11")'>November</a></li><li><a href="#" id="201212" onclick='GetYearMonth("2012","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2011">2011</div><div class="accordionContent month" id="2011"><ul class="accordionlist"><li><a href="#" id="20110" onclick='GetYearMonth("2011","0")'>All Months</a></li><li><a href="#" id="20111" onclick='GetYearMonth("2011","1")'>January</a></li><li><a href="#" id="20112" onclick='GetYearMonth("2011","2")'>February</a></li><li><a href="#" id="20113" onclick='GetYearMonth("2011","3")'>March</a></li><li><a href="#" id="20114" onclick='GetYearMonth("2011","4")'>April</a></li><li><a href="#" id="20115" onclick='GetYearMonth("2011","5")'>May</a></li><li><a href="#" id="20116" onclick='GetYearMonth("2011","6")'>June</a></li><li><a href="#" id="20117" onclick='GetYearMonth("2011","7")'>July</a></li><li><a href="#" id="20118" onclick='GetYearMonth("2011","8")'>August</a></li><li><a href="#" id="20119" onclick='GetYearMonth("2011","9")'>September</a></li><li><a href="#" id="201110" onclick='GetYearMonth("2011","10")'>October</a></li><li><a href="#" id="201111" onclick='GetYearMonth("2011","11")'>November</a></li><li><a href="#" id="201112" onclick='GetYearMonth("2011","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2010">2010</div><div class="accordionContent month" id="2010"><ul class="accordionlist"><li><a href="#" id="20100" onclick='GetYearMonth("2010","0")'>All Months</a></li><li><a href="#" id="20101" onclick='GetYearMonth("2010","1")'>January</a></li><li><a href="#" id="20102" onclick='GetYearMonth("2010","2")'>February</a></li><li><a href="#" id="20103" onclick='GetYearMonth("2010","3")'>March</a></li><li><a href="#" id="20104" onclick='GetYearMonth("2010","4")'>April</a></li><li><a href="#" id="20105" onclick='GetYearMonth("2010","5")'>May</a></li><li><a href="#" id="20106" onclick='GetYearMonth("2010","6")'>June</a></li><li><a href="#" id="20107" onclick='GetYearMonth("2010","7")'>July</a></li><li><a href="#" id="20108" onclick='GetYearMonth("2010","8")'>August</a></li><li><a href="#" id="20109" onclick='GetYearMonth("2010","9")'>September</a></li><li><a href="#" id="201010" onclick='GetYearMonth("2010","10")'>October</a></li><li><a href="#" id="201011" onclick='GetYearMonth("2010","11")'>November</a></li><li><a href="#" id="201012" onclick='GetYearMonth("2010","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2009">2009</div><div class="accordionContent month" id="2009"><ul class="accordionlist"><li><a href="#" id="20090" onclick='GetYearMonth("2009","0")'>All Months</a></li><li><a href="#" id="20091" onclick='GetYearMonth("2009","1")'>January</a></li><li><a href="#" id="20092" onclick='GetYearMonth("2009","2")'>February</a></li><li><a href="#" id="20093" onclick='GetYearMonth("2009","3")'>March</a></li><li><a href="#" id="20094" onclick='GetYearMonth("2009","4")'>April</a></li><li><a href="#" id="20095" onclick='GetYearMonth("2009","5")'>May</a></li><li><a href="#" id="20096" onclick='GetYearMonth("2009","6")'>June</a></li><li><a href="#" id="20097" onclick='GetYearMonth("2009","7")'>July</a></li><li><a href="#" id="20098" onclick='GetYearMonth("2009","8")'>August</a></li><li><a href="#" id="20099" onclick='GetYearMonth("2009","9")'>September</a></li><li><a href="#" id="200910" onclick='GetYearMonth("2009","10")'>October</a></li><li><a href="#" id="200911" onclick='GetYearMonth("2009","11")'>November</a></li><li><a href="#" id="200912" onclick='GetYearMonth("2009","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2008">2008</div><div class="accordionContent month" id="2008"><ul class="accordionlist"><li><a href="#" id="20080" onclick='GetYearMonth("2008","0")'>All Months</a></li><li><a href="#" id="20081" onclick='GetYearMonth("2008","1")'>January</a></li><li><a href="#" id="20082" onclick='GetYearMonth("2008","2")'>February</a></li><li><a href="#" id="20083" onclick='GetYearMonth("2008","3")'>March</a></li><li><a href="#" id="20084" onclick='GetYearMonth("2008","4")'>April</a></li><li><a href="#" id="20085" onclick='GetYearMonth("2008","5")'>May</a></li><li><a href="#" id="20086" onclick='GetYearMonth("2008","6")'>June</a></li><li><a href="#" id="20087" onclick='GetYearMonth("2008","7")'>July</a></li><li><a href="#" id="20088" onclick='GetYearMonth("2008","8")'>August</a></li><li><a href="#" id="20089" onclick='GetYearMonth("2008","9")'>September</a></li><li><a href="#" id="200810" onclick='GetYearMonth("2008","10")'>October</a></li><li><a href="#" id="200811" onclick='GetYearMonth("2008","11")'>November</a></li><li><a href="#" id="200812" onclick='GetYearMonth("2008","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2007">2007</div><div class="accordionContent month" id="2007"><ul class="accordionlist"><li><a href="#" id="20070" onclick='GetYearMonth("2007","0")'>All Months</a></li><li><a href="#" id="20071" onclick='GetYearMonth("2007","1")'>January</a></li><li><a href="#" id="20072" onclick='GetYearMonth("2007","2")'>February</a></li><li><a href="#" id="20073" onclick='GetYearMonth("2007","3")'>March</a></li><li><a href="#" id="20074" onclick='GetYearMonth("2007","4")'>April</a></li><li><a href="#" id="20075" onclick='GetYearMonth("2007","5")'>May</a></li><li><a href="#" id="20076" onclick='GetYearMonth("2007","6")'>June</a></li><li><a href="#" id="20077" onclick='GetYearMonth("2007","7")'>July</a></li><li><a href="#" id="20078" onclick='GetYearMonth("2007","8")'>August</a></li><li><a href="#" id="20079" onclick='GetYearMonth("2007","9")'>September</a></li><li><a href="#" id="200710" onclick='GetYearMonth("2007","10")'>October</a></li><li><a href="#" id="200711" onclick='GetYearMonth("2007","11")'>November</a></li><li><a href="#" id="200712" onclick='GetYearMonth("2007","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2006">2006</div><div class="accordionContent month" id="2006"><ul class="accordionlist"><li><a href="#" id="20060" onclick='GetYearMonth("2006","0")'>All Months</a></li><li><a href="#" id="20061" onclick='GetYearMonth("2006","1")'>January</a></li><li><a href="#" id="20062" onclick='GetYearMonth("2006","2")'>February</a></li><li><a href="#" id="20063" onclick='GetYearMonth("2006","3")'>March</a></li><li><a href="#" id="20064" onclick='GetYearMonth("2006","4")'>April</a></li><li><a href="#" id="20065" onclick='GetYearMonth("2006","5")'>May</a></li><li><a href="#" id="20066" onclick='GetYearMonth("2006","6")'>June</a></li><li><a href="#" id="20067" onclick='GetYearMonth("2006","7")'>July</a></li><li><a href="#" id="20068" onclick='GetYearMonth("2006","8")'>August</a></li><li><a href="#" id="20069" onclick='GetYearMonth("2006","9")'>September</a></li><li><a href="#" id="200610" onclick='GetYearMonth("2006","10")'>October</a></li><li><a href="#" id="200611" onclick='GetYearMonth("2006","11")'>November</a></li><li><a href="#" id="200612" onclick='GetYearMonth("2006","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2005">2005</div><div class="accordionContent month" id="2005"><ul class="accordionlist"><li><a href="#" id="20050" onclick='GetYearMonth("2005","0")'>All Months</a></li><li><a href="#" id="20051" onclick='GetYearMonth("2005","1")'>January</a></li><li><a href="#" id="20052" onclick='GetYearMonth("2005","2")'>February</a></li><li><a href="#" id="20053" onclick='GetYearMonth("2005","3")'>March</a></li><li><a href="#" id="20054" onclick='GetYearMonth("2005","4")'>April</a></li><li><a href="#" id="20055" onclick='GetYearMonth("2005","5")'>May</a></li><li><a href="#" id="20056" onclick='GetYearMonth("2005","6")'>June</a></li><li><a href="#" id="20057" onclick='GetYearMonth("2005","7")'>July</a></li><li><a href="#" id="20058" onclick='GetYearMonth("2005","8")'>August</a></li><li><a href="#" id="20059" onclick='GetYearMonth("2005","9")'>September</a></li><li><a href="#" id="200510" onclick='GetYearMonth("2005","10")'>October</a></li><li><a href="#" id="200511" onclick='GetYearMonth("2005","11")'>November</a></li><li><a href="#" id="200512" onclick='GetYearMonth("2005","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2004">2004</div><div class="accordionContent month" id="2004"><ul class="accordionlist"><li><a href="#" id="20040" onclick='GetYearMonth("2004","0")'>All Months</a></li><li><a href="#" id="20041" onclick='GetYearMonth("2004","1")'>January</a></li><li><a href="#" id="20042" onclick='GetYearMonth("2004","2")'>February</a></li><li><a href="#" id="20043" onclick='GetYearMonth("2004","3")'>March</a></li><li><a href="#" id="20044" onclick='GetYearMonth("2004","4")'>April</a></li><li><a href="#" id="20045" onclick='GetYearMonth("2004","5")'>May</a></li><li><a href="#" id="20046" onclick='GetYearMonth("2004","6")'>June</a></li><li><a href="#" id="20047" onclick='GetYearMonth("2004","7")'>July</a></li><li><a href="#" id="20048" onclick='GetYearMonth("2004","8")'>August</a></li><li><a href="#" id="20049" onclick='GetYearMonth("2004","9")'>September</a></li><li><a href="#" id="200410" onclick='GetYearMonth("2004","10")'>October</a></li><li><a href="#" id="200411" onclick='GetYearMonth("2004","11")'>November</a></li><li><a href="#" id="200412" onclick='GetYearMonth("2004","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2003">2003</div><div class="accordionContent month" id="2003"><ul class="accordionlist"><li><a href="#" id="20030" onclick='GetYearMonth("2003","0")'>All Months</a></li><li><a href="#" id="20031" onclick='GetYearMonth("2003","1")'>January</a></li><li><a href="#" id="20032" onclick='GetYearMonth("2003","2")'>February</a></li><li><a href="#" id="20033" onclick='GetYearMonth("2003","3")'>March</a></li><li><a href="#" id="20034" onclick='GetYearMonth("2003","4")'>April</a></li><li><a href="#" id="20035" onclick='GetYearMonth("2003","5")'>May</a></li><li><a href="#" id="20036" onclick='GetYearMonth("2003","6")'>June</a></li><li><a href="#" id="20037" onclick='GetYearMonth("2003","7")'>July</a></li><li><a href="#" id="20038" onclick='GetYearMonth("2003","8")'>August</a></li><li><a href="#" id="20039" onclick='GetYearMonth("2003","9")'>September</a></li><li><a href="#" id="200310" onclick='GetYearMonth("2003","10")'>October</a></li><li><a href="#" id="200311" onclick='GetYearMonth("2003","11")'>November</a></li><li><a href="#" id="200312" onclick='GetYearMonth("2003","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2002">2002</div><div class="accordionContent month" id="2002"><ul class="accordionlist"><li><a href="#" id="20020" onclick='GetYearMonth("2002","0")'>All Months</a></li><li><a href="#" id="20021" onclick='GetYearMonth("2002","1")'>January</a></li><li><a href="#" id="20022" onclick='GetYearMonth("2002","2")'>February</a></li><li><a href="#" id="20023" onclick='GetYearMonth("2002","3")'>March</a></li><li><a href="#" id="20024" onclick='GetYearMonth("2002","4")'>April</a></li><li><a href="#" id="20025" onclick='GetYearMonth("2002","5")'>May</a></li><li><a href="#" id="20026" onclick='GetYearMonth("2002","6")'>June</a></li><li><a href="#" id="20027" onclick='GetYearMonth("2002","7")'>July</a></li><li><a href="#" id="20028" onclick='GetYearMonth("2002","8")'>August</a></li><li><a href="#" id="20029" onclick='GetYearMonth("2002","9")'>September</a></li><li><a href="#" id="200210" onclick='GetYearMonth("2002","10")'>October</a></li><li><a href="#" id="200211" onclick='GetYearMonth("2002","11")'>November</a></li><li><a href="#" id="200212" onclick='GetYearMonth("2002","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2001">2001</div><div class="accordionContent month" id="2001"><ul class="accordionlist"><li><a href="#" id="20010" onclick='GetYearMonth("2001","0")'>All Months</a></li><li><a href="#" id="20011" onclick='GetYearMonth("2001","1")'>January</a></li><li><a href="#" id="20012" onclick='GetYearMonth("2001","2")'>February</a></li><li><a href="#" id="20013" onclick='GetYearMonth("2001","3")'>March</a></li><li><a href="#" id="20014" onclick='GetYearMonth("2001","4")'>April</a></li><li><a href="#" id="20015" onclick='GetYearMonth("2001","5")'>May</a></li><li><a href="#" id="20016" onclick='GetYearMonth("2001","6")'>June</a></li><li><a href="#" id="20017" onclick='GetYearMonth("2001","7")'>July</a></li><li><a href="#" id="20018" onclick='GetYearMonth("2001","8")'>August</a></li><li><a href="#" id="20019" onclick='GetYearMonth("2001","9")'>September</a></li><li><a href="#" id="200110" onclick='GetYearMonth("2001","10")'>October</a></li><li><a href="#" id="200111" onclick='GetYearMonth("2001","11")'>November</a></li><li><a href="#" id="200112" onclick='GetYearMonth("2001","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn2000">2000</div><div class="accordionContent month" id="2000"><ul class="accordionlist"><li><a href="#" id="20000" onclick='GetYearMonth("2000","0")'>All Months</a></li><li><a href="#" id="20001" onclick='GetYearMonth("2000","1")'>January</a></li><li><a href="#" id="20002" onclick='GetYearMonth("2000","2")'>February</a></li><li><a href="#" id="20003" onclick='GetYearMonth("2000","3")'>March</a></li><li><a href="#" id="20004" onclick='GetYearMonth("2000","4")'>April</a></li><li><a href="#" id="20005" onclick='GetYearMonth("2000","5")'>May</a></li><li><a href="#" id="20006" onclick='GetYearMonth("2000","6")'>June</a></li><li><a href="#" id="20007" onclick='GetYearMonth("2000","7")'>July</a></li><li><a href="#" id="20008" onclick='GetYearMonth("2000","8")'>August</a></li><li><a href="#" id="20009" onclick='GetYearMonth("2000","9")'>September</a></li><li><a href="#" id="200010" onclick='GetYearMonth("2000","10")'>October</a></li><li><a href="#" id="200011" onclick='GetYearMonth("2000","11")'>November</a></li><li><a href="#" id="200012" onclick='GetYearMonth("2000","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1999">1999</div><div class="accordionContent month" id="1999"><ul class="accordionlist"><li><a href="#" id="19990" onclick='GetYearMonth("1999","0")'>All Months</a></li><li><a href="#" id="19991" onclick='GetYearMonth("1999","1")'>January</a></li><li><a href="#" id="19992" onclick='GetYearMonth("1999","2")'>February</a></li><li><a href="#" id="19993" onclick='GetYearMonth("1999","3")'>March</a></li><li><a href="#" id="19994" onclick='GetYearMonth("1999","4")'>April</a></li><li><a href="#" id="19995" onclick='GetYearMonth("1999","5")'>May</a></li><li><a href="#" id="19996" onclick='GetYearMonth("1999","6")'>June</a></li><li><a href="#" id="19997" onclick='GetYearMonth("1999","7")'>July</a></li><li><a href="#" id="19998" onclick='GetYearMonth("1999","8")'>August</a></li><li><a href="#" id="19999" onclick='GetYearMonth("1999","9")'>September</a></li><li><a href="#" id="199910" onclick='GetYearMonth("1999","10")'>October</a></li><li><a href="#" id="199911" onclick='GetYearMonth("1999","11")'>November</a></li><li><a href="#" id="199912" onclick='GetYearMonth("1999","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1998">1998</div><div class="accordionContent month" id="1998"><ul class="accordionlist"><li><a href="#" id="19980" onclick='GetYearMonth("1998","0")'>All Months</a></li><li><a href="#" id="19981" onclick='GetYearMonth("1998","1")'>January</a></li><li><a href="#" id="19982" onclick='GetYearMonth("1998","2")'>February</a></li><li><a href="#" id="19983" onclick='GetYearMonth("1998","3")'>March</a></li><li><a href="#" id="19984" onclick='GetYearMonth("1998","4")'>April</a></li><li><a href="#" id="19985" onclick='GetYearMonth("1998","5")'>May</a></li><li><a href="#" id="19986" onclick='GetYearMonth("1998","6")'>June</a></li><li><a href="#" id="19987" onclick='GetYearMonth("1998","7")'>July</a></li><li><a href="#" id="19988" onclick='GetYearMonth("1998","8")'>August</a></li><li><a href="#" id="19989" onclick='GetYearMonth("1998","9")'>September</a></li><li><a href="#" id="199810" onclick='GetYearMonth("1998","10")'>October</a></li><li><a href="#" id="199811" onclick='GetYearMonth("1998","11")'>November</a></li><li><a href="#" id="199812" onclick='GetYearMonth("1998","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1997">1997</div><div class="accordionContent month" id="1997"><ul class="accordionlist"><li><a href="#" id="19970" onclick='GetYearMonth("1997","0")'>All Months</a></li><li><a href="#" id="19971" onclick='GetYearMonth("1997","1")'>January</a></li><li><a href="#" id="19972" onclick='GetYearMonth("1997","2")'>February</a></li><li><a href="#" id="19973" onclick='GetYearMonth("1997","3")'>March</a></li><li><a href="#" id="19974" onclick='GetYearMonth("1997","4")'>April</a></li><li><a href="#" id="19975" onclick='GetYearMonth("1997","5")'>May</a></li><li><a href="#" id="19976" onclick='GetYearMonth("1997","6")'>June</a></li><li><a href="#" id="19977" onclick='GetYearMonth("1997","7")'>July</a></li><li><a href="#" id="19978" onclick='GetYearMonth("1997","8")'>August</a></li><li><a href="#" id="19979" onclick='GetYearMonth("1997","9")'>September</a></li><li><a href="#" id="199710" onclick='GetYearMonth("1997","10")'>October</a></li><li><a href="#" id="199711" onclick='GetYearMonth("1997","11")'>November</a></li><li><a href="#" id="199712" onclick='GetYearMonth("1997","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1996">1996</div><div class="accordionContent month" id="1996"><ul class="accordionlist"><li><a href="#" id="19960" onclick='GetYearMonth("1996","0")'>All Months</a></li><li><a href="#" id="19961" onclick='GetYearMonth("1996","1")'>January</a></li><li><a href="#" id="19962" onclick='GetYearMonth("1996","2")'>February</a></li><li><a href="#" id="19963" onclick='GetYearMonth("1996","3")'>March</a></li><li><a href="#" id="19964" onclick='GetYearMonth("1996","4")'>April</a></li><li><a href="#" id="19965" onclick='GetYearMonth("1996","5")'>May</a></li><li><a href="#" id="19966" onclick='GetYearMonth("1996","6")'>June</a></li><li><a href="#" id="19967" onclick='GetYearMonth("1996","7")'>July</a></li><li><a href="#" id="19968" onclick='GetYearMonth("1996","8")'>August</a></li><li><a href="#" id="19969" onclick='GetYearMonth("1996","9")'>September</a></li><li><a href="#" id="199610" onclick='GetYearMonth("1996","10")'>October</a></li><li><a href="#" id="199611" onclick='GetYearMonth("1996","11")'>November</a></li><li><a href="#" id="199612" onclick='GetYearMonth("1996","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1995">1995</div><div class="accordionContent month" id="1995"><ul class="accordionlist"><li><a href="#" id="19950" onclick='GetYearMonth("1995","0")'>All Months</a></li><li><a href="#" id="19951" onclick='GetYearMonth("1995","1")'>January</a></li><li><a href="#" id="19952" onclick='GetYearMonth("1995","2")'>February</a></li><li><a href="#" id="19953" onclick='GetYearMonth("1995","3")'>March</a></li><li><a href="#" id="19954" onclick='GetYearMonth("1995","4")'>April</a></li><li><a href="#" id="19955" onclick='GetYearMonth("1995","5")'>May</a></li><li><a href="#" id="19956" onclick='GetYearMonth("1995","6")'>June</a></li><li><a href="#" id="19957" onclick='GetYearMonth("1995","7")'>July</a></li><li><a href="#" id="19958" onclick='GetYearMonth("1995","8")'>August</a></li><li><a href="#" id="19959" onclick='GetYearMonth("1995","9")'>September</a></li><li><a href="#" id="199510" onclick='GetYearMonth("1995","10")'>October</a></li><li><a href="#" id="199511" onclick='GetYearMonth("1995","11")'>November</a></li><li><a href="#" id="199512" onclick='GetYearMonth("1995","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1994">1994</div><div class="accordionContent month" id="1994"><ul class="accordionlist"><li><a href="#" id="19940" onclick='GetYearMonth("1994","0")'>All Months</a></li><li><a href="#" id="19941" onclick='GetYearMonth("1994","1")'>January</a></li><li><a href="#" id="19942" onclick='GetYearMonth("1994","2")'>February</a></li><li><a href="#" id="19943" onclick='GetYearMonth("1994","3")'>March</a></li><li><a href="#" id="19944" onclick='GetYearMonth("1994","4")'>April</a></li><li><a href="#" id="19945" onclick='GetYearMonth("1994","5")'>May</a></li><li><a href="#" id="19946" onclick='GetYearMonth("1994","6")'>June</a></li><li><a href="#" id="19947" onclick='GetYearMonth("1994","7")'>July</a></li><li><a href="#" id="19948" onclick='GetYearMonth("1994","8")'>August</a></li><li><a href="#" id="19949" onclick='GetYearMonth("1994","9")'>September</a></li><li><a href="#" id="199410" onclick='GetYearMonth("1994","10")'>October</a></li><li><a href="#" id="199411" onclick='GetYearMonth("1994","11")'>November</a></li><li><a href="#" id="199412" onclick='GetYearMonth("1994","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1993">1993</div><div class="accordionContent month" id="1993"><ul class="accordionlist"><li><a href="#" id="19930" onclick='GetYearMonth("1993","0")'>All Months</a></li><li><a href="#" id="19931" onclick='GetYearMonth("1993","1")'>January</a></li><li><a href="#" id="19932" onclick='GetYearMonth("1993","2")'>February</a></li><li><a href="#" id="19933" onclick='GetYearMonth("1993","3")'>March</a></li><li><a href="#" id="19934" onclick='GetYearMonth("1993","4")'>April</a></li><li><a href="#" id="19935" onclick='GetYearMonth("1993","5")'>May</a></li><li><a href="#" id="19936" onclick='GetYearMonth("1993","6")'>June</a></li><li><a href="#" id="19937" onclick='GetYearMonth("1993","7")'>July</a></li><li><a href="#" id="19938" onclick='GetYearMonth("1993","8")'>August</a></li><li><a href="#" id="19939" onclick='GetYearMonth("1993","9")'>September</a></li><li><a href="#" id="199310" onclick='GetYearMonth("1993","10")'>October</a></li><li><a href="#" id="199311" onclick='GetYearMonth("1993","11")'>November</a></li><li><a href="#" id="199312" onclick='GetYearMonth("1993","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1992">1992</div><div class="accordionContent month" id="1992"><ul class="accordionlist"><li><a href="#" id="19920" onclick='GetYearMonth("1992","0")'>All Months</a></li><li><a href="#" id="19921" onclick='GetYearMonth("1992","1")'>January</a></li><li><a href="#" id="19922" onclick='GetYearMonth("1992","2")'>February</a></li><li><a href="#" id="19923" onclick='GetYearMonth("1992","3")'>March</a></li><li><a href="#" id="19924" onclick='GetYearMonth("1992","4")'>April</a></li><li><a href="#" id="19925" onclick='GetYearMonth("1992","5")'>May</a></li><li><a href="#" id="19926" onclick='GetYearMonth("1992","6")'>June</a></li><li><a href="#" id="19927" onclick='GetYearMonth("1992","7")'>July</a></li><li><a href="#" id="19928" onclick='GetYearMonth("1992","8")'>August</a></li><li><a href="#" id="19929" onclick='GetYearMonth("1992","9")'>September</a></li><li><a href="#" id="199210" onclick='GetYearMonth("1992","10")'>October</a></li><li><a href="#" id="199211" onclick='GetYearMonth("1992","11")'>November</a></li><li><a href="#" id="199212" onclick='GetYearMonth("1992","12")'>December</a></li></ul></div><div class="accordionButton year" id="btn1991">1991</div><div class="accordionContent month" id="1991"><ul class="accordionlist"><li><a href="#" id="19910" onclick='GetYearMonth("1991","0")'>All Months</a></li><li><a href="#" id="19911" onclick='GetYearMonth("1991","1")'>January</a></li><li><a href="#" id="19912" onclick='GetYearMonth("1991","2")'>February</a></li><li><a href="#" id="19913" onclick='GetYearMonth("1991","3")'>March</a></li><li><a href="#" id="19914" onclick='GetYearMonth("1991","4")'>April</a></li><li><a href="#" id="19915" onclick='GetYearMonth("1991","5")'>May</a></li><li><a href="#" id="19916" onclick='GetYearMonth("1991","6")'>June</a></li><li><a href="#" id="19917" onclick='GetYearMonth("1991","7")'>July</a></li><li><a href="#" id="19918" onclick='GetYearMonth("1991","8")'>August</a></li><li><a href="#" id="19919" onclick='GetYearMonth("1991","9")'>September</a></li><li><a href="#" id="199110" onclick='GetYearMonth("1991","10")'>October</a></li><li><a href="#" id="199111" onclick='GetYearMonth("1991","11")'>November</a></li><li><a href="#" id="199112" onclick='GetYearMonth("1991","12")'>December</a></li></ul></div></div></div></span> </div> </div> </div> <div class="clearfix"> </div> <div> <a href="#top" class="scrollToTop" id="backToTop">Top</a> <footer class="footer"> <div class="footer"> <div class="container_12"> <!--<div class="grid_9" style="width: 833px !important; "> <h4><span class="blue">More</span> Links :</h4> <div class="grid_2 alpha" style="width:150px !important"> <ul class="footerlist"> <li><a target="_blank" href="https://www.rbi.org.in/FinancialEducation/">Financial Education</a></li>https://www.rbi.org.in/commonperson/English/Scripts/Home.aspx <li><a target="_blank" href="https://ncfe.org.in/e-lms">E-LMS</a></li> <li><a target="_blank" href="https://rbikehtahai.rbi.org.in/">RBI Kehta Hai</a></li> <li><a href="/Scripts/FAQDisplay.aspx">FAQs</a></li> <li><a href="/Scripts/IFSCMICRDetails.aspx">IFSC/MICR Codes</a></li> </ul> </div> <div class="grid_2 omega" style="width:150px !important;"> <ul class="footerlist"> <li><a href="/Scripts/BS_ViewTenders.aspx">Tenders</a></li> <li><a target="_blank" href="https://opportunities.rbi.org.in/scripts/index.aspx">Opportunities<font>@</font>RBI</a></li> <li><a href="/Scripts/HolidayMatrixDisplay.aspx">Bank Holidays</a></li> <li><a href="/Scripts/BS_ViewForms.aspx">Forms</a></li> <li><a href="https://www.rbi.org.in/scripts/bs_viewcontent.aspx?Id=3894">COVID-19 Measures</a></li> </ul> </div> <div class="grid_2 alpha omega" style="width:254px !important;"> <ul class="footerlist"> <li><a href="/Scripts/EventsDisplay.aspx">Events</a></li> <li><a href="/Scripts/rbi_clarification.aspx">RBI Clarifications</a></li> <li><a href="/Scripts/Righttoinfoact.aspx">Right to Information Act</a></li> <li><a href="/Scripts/OtherLinks.aspx">Important Websites</a></li> <li><a href="https://rbidocs.rbi.org.in/rdocs/content/pdfs/Utkarsh30122022.pdf">RBI's Core Purpose, Values and Vision</a></li> </ul> </div> <div class="grid_2" style="width:215px !important;"> <ul class="footerlist"> <li><a href="/Scripts/CitiChart.aspx">Citizens' Charter</a></li> <li><a href="/Scripts/Timlines.aspx">Timelines for Regulatory Approvals</a></li> <li><a href="/Scripts/Complaints.aspx">Complaints</a></li> <li><a href="https://shabdavali.rbi.org.in/">Banking Glossary</a></li> <li><a href="/Scripts/helpdesk.aspx">Contact Us</a></li> </ul> </div> </div>--> <div class="grid_9" style="width: 833px !important; "> <h4><span class="blue">More</span> Links :</h4> <div class="grid_2 alpha" style="width:170px !important"> <ul class="footerlist"> <li><a href="/Scripts/HolidayMatrixDisplay.aspx">Bank Holidays</a></li> <li><a href="https://shabdavali.rbi.org.in/">Banking Glossary</a></li> <li><a href="/Scripts/CitiChart.aspx">Citizens' Charter</a></li> <li><a href="/Scripts/Complaints.aspx">Complaints</a></li> <li><a href="/Scripts/helpdesk.aspx">Contact Us</a></li> </ul> </div> <div class="grid_2 omega" style="width:180px !important;"> <ul class="footerlist"> <li><a href="https://www.rbi.org.in/scripts/bs_viewcontent.aspx?Id=3894">COVID-19 Measures</a></li> <li><a target="_blank" href="https://ncfe.org.in/e-lms">E-LMS</a></li> <li><a href="/Scripts/EventsDisplay.aspx">Events</a></li> <li><a href="/Scripts/FAQDisplay.aspx">FAQs</a></li> <li><a target="_blank" href="https://www.rbi.org.in/FinancialEducation/">Financial Education</a></li><!--https://www.rbi.org.in/commonperson/English/Scripts/Home.aspx--> </ul> </div> <div class="grid_2 alpha omega" style="width:180px !important;"> <ul class="footerlist"> <li><a href="/Scripts/BS_ViewForms.aspx">Forms</a></li> <li><a href="/Scripts/IFSCMICRDetails.aspx">IFSC/MICR Codes</a></li> <li><a href="/Scripts/OtherLinks.aspx">Important Websites</a></li> <li><a target="_blank" href="https://opportunities.rbi.org.in/scripts/index.aspx">Opportunities<font>@</font>RBI</a></li> <li><a href="/Scripts/rbi_clarification.aspx">RBI Clarifications</a></li> </ul> </div> <div class="grid_2" style="width:254px !important;"> <ul class="footerlist"> <li><a target="_blank" href="https://rbikehtahai.rbi.org.in/">RBI Kehta Hai</a></li> <li><a href="https://rbidocs.rbi.org.in/rdocs/content/pdfs/Utkarsh30122022.pdf">RBI's Core Purpose, Values and Vision</a></li> <li><a href="/Scripts/Righttoinfoact.aspx">Right to Information Act</a></li> <li><a href="/Scripts/BS_ViewTenders.aspx">Tenders</a></li> <li><a href="/Scripts/Timlines.aspx">Timelines for Regulatory Approvals</a></li> </ul> </div> </div> <div class="grid_3" style="width:197px !important"> <h4><span class="blue">Follow</span> RBI </h4> <ul class="footerlist"> <!--<li><a href="/Scripts/rss.aspx"><img src="/images/rss-icon.png" alt="Subscribe to RSS" class="rss"/>RSS</a></li>--> <li style="float: left;background: url(/images/footer_list_arrow.gif) left 8px no-repeat;"><a href="/Scripts/rss.aspx"><img src="/images/rss-icon.png" alt="Subscribe to RSS" class="rss">RSS</a></li> <!--<li><a href="https://twitter.com/RBI" target="_blank" class="twitter"><img src="/images/Twitter_New.png" width="14px" height="14px" alt="Follow RBI on Twitter" class="videos" />Twitter</a></li>--> <li> <a href="https://twitter.com/RBI" target="_blank" class="twitter"> <img src="/images/Twitter_New.png" width="14px" height="14px" alt="Follow RBI on Twitter" class="videos" style="padding-left: 18%;">Twitter </a> </li> <!--<li><a href="https://www.youtube.com/channel/UCIfCOl43tunZVNYafeC4RQA" class="videos" target="_blank"><img src="/images/videos-icon.png" alt="Check RBI Videos" class="videos"/>Videos</a></li>--> <li style="float: left;"><a href="https://www.youtube.com/channel/UCIfCOl43tunZVNYafeC4RQA" class="videos" target="_blank"><img src="/images/youtube.png" alt="Check RBI Videos" class="videos">YouTube</a></li> <li> <a href="https://instagram.com/reservebankofindia" class="videos" target="_blank"> <img src="/images/Instagram.jpg" width="14px" height="14px" alt="Check Instagram" class="videos" style="padding-left: 5%;">Instagram </a> </li> <li style="float: left;"><a href="https://www.facebook.com/RBIsays" class="videos" target="_blank"><img src="/images/Facebook.jpg" width="14px" height="14px" alt="Check Facebook" class="videos">Facebook</a></li> <li> <a href="https://www.linkedin.com/company/reservebankofindia" class="videos" target="_blank"> <img src="/images/LinkedinIcon1.png" alt="Check linkedin" class="" style="padding-left: 4%;width: 17px;background: bottom no-repeat;display: block;float: left;margin: 2px 3px 0 1px;">LinkedIn </a> </li> <li> Download Mobile App<br> <a href="https://play.google.com/store/apps/details?id=com.reservebankofindia.app" target="_blank"><img src="/images/Android.png" alt="Android App" class="rss" style="width:17px" >Play Store</a><br> <a href="https://apps.apple.com/us/app/reserve-bank-of-india/id1154394549?ls=1" target="_blank"><img src="/images/IOS.png" alt="Apple App" class="rss" style="width:18px;height:17px">App Store</a> </li> </ul> </div> <div class="clearfix"></div> </div> <div class="copyright"> <div class="container_12"> <div class="grid_6 pull_left" >&copy; Reserve Bank of India. All Rights Reserved.</div> <div class="grid_5 pull_right" ><a href="/Scripts/sitemap.aspx">Sitemap</a> | <a href="/Scripts/Disclaimer.aspx">Disclaimer</a></div> <div class="clearfix"></div> </div> </div> <!--Welcome note--> <div id="boxesWN"> <div id="dialogWN" class="window" style="top:100px;"> <div> <img width="60" height="60" src="/images/Rbinote.jpeg" alt="Rbi note" /> </div> <table class="WelcomeNote" > <tr> <td style="float:right;"> April 14, 2015 </td> </tr> <tr> <td > Dear All </td> </tr> <tr> <td > Welcome to the refurbished site of the Reserve Bank of India. </td> </tr> <tr> <td > The two most important features of the site are: One, in addition to the default site, the refurbished site also has all the information bifurcated functionwise; two, a much improved search – well, at least we think so but you be the judge. </td> </tr> <tr> <td> With this makeover, we also take a small step into social media. We will now use Twitter (albeit one way) to send out alerts on the announcements we make and YouTube to place in public domain our press conferences, interviews of our top management, events, such as, town halls and of course, some films aimed at consumer literacy. </td> </tr> <tr> <td> The site can be accessed through most browsers and devices; it also meets accessibility standards. </td> </tr> <tr> <td> Please save the url of the refurbished site in your favourites as we will give up the existing site shortly and register or re-register yourselves for receiving RSS feeds for uninterrupted alerts from the Reserve Bank. </td> </tr> <tr> <td> Do feel free to give us your feedback by clicking on the feedback button on the right hand corner of the refurbished site. </td> </tr> <tr> <td> Thank you for your continued support.<br /><br /> </td> </tr> <tr> <td> <strong> Department of Communication <br /> Reserve Bank of India</strong> </td> </tr> <tr><td id="popupfootWN"><a href="#" class="close agree" style="float:right" >Next</a></td></tr> </table> <!-- <div id="popupfootWN"> <a href="#" class="close agree" style="float:right" >Next</a> </div>--><!--<img src="../images/button_close.gif" alt="Close" class="close agree" />--> </div> <div id="maskWN" style="width:100% !important"></div> <!--<div id="feedbackbtn"><a href="#"><div align="center" class="feedbacktext">Feedback</div></a></div>--> </div> </div> </footer> <!--<script type="text/javascript" src="/js/URLchange.js"></script>--> <!-- For live comment out below line.--> <script src="/js/ReplaceURL.js" type="text/javascript"></script> <script src="/js/jquery.cookie.js" type="text/javascript"></script> <script type="text/javascript" language="javascript"> //this is for floating TOP link $(document).ready(function () { var offset = 230; var duration = 500; jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > offset) { jQuery('.scrollToTop').fadeIn(duration); // $('#backToTop').css('right', (diffWidth / 2) - 6); } else { jQuery('.scrollToTop').fadeOut(duration); // $('#backToTop').css('right', (diffWidth / 2) - 6); } }); // $('a[href*=#]:not([href=#])').click(function () { // if (location.pathname.replace(/^\//, '') == window.location.pathname.replace(/^\//, '') && location.hostname == window.location.hostname) { // var target = $(this.hash); // target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); // if (target.length) { // $('html,body').animate({ // scrollTop: target.offset().top // }, 800); // return false; // } // } // }); $('.scrollToTop').click(function () { $('html, body').animate({ scrollTop: 0 }, 800); return false; }); }); //Below code is for floating left panel and floating tree structure //first if condition is for functionwise pages and 2nd one for rest all $(window).scroll(function () { if ($('div.banner2').length) { if ($(window).scrollTop() >= 265) { $('#menubar').css("position", "fixed"); $('#menubar').css("width", "240px"); $('#menubar').css("margin-top", "-281px"); $('.content_area').css("margin-left", "252px"); $('.sidebar_nav').css("position", "fixed"); $('.sidebar_nav').css("margin-top", "-200px"); $('.sidebar_nav').css("width", "236px"); $('#DateSettree_lbltree').css('position', 'fixed'); $('#DateSettree_lbltree').css('margin-top', '-281px'); } else { $('#menubar').css("position", ""); $('#menubar').css("width", ""); $('#menubar').css("margin-top", ""); $('.content_area').css("margin-left", ""); $('.sidebar_nav').css("position", ""); $('.sidebar_nav').css("margin-top", ""); $('.sidebar_nav').css("width", ""); $('#DateSettree_lbltree').css('position', ''); $('#DateSettree_lbltree').css('margin-top', ''); } } else if ($(window).scrollTop() >= 185) { $('#menubar').css("position", "fixed"); $('#menubar').css("width", "240px"); $('#menubar').css("margin-top", "-200px"); $('.content_area').css("margin-left", "252px"); $('.sidebar_nav').css("position", "fixed"); $('.sidebar_nav').css("margin-top", "-200px"); $('.sidebar_nav').css("width", "236px"); $('#DateSettree_lbltree').css('position', 'fixed'); $('#DateSettree_lbltree').css('margin-top', '-200px'); } else { $('#menubar').css("position", ""); $('#menubar').css("width", ""); $('#menubar').css("margin-top", ""); $('.content_area').css("margin-left", ""); $('.sidebar_nav').css("position", ""); $('.sidebar_nav').css("margin-top", ""); $('.sidebar_nav').css("width", ""); $('#DateSettree_lbltree').css('position', ''); $('#DateSettree_lbltree').css('margin-top', ''); } // if ($(window).scrollTop() >= 235) { // $('#DateSettree_lbltree').css('height', '183px'); // $('#DateSettree_lbltree').css('overflow-y', 'scroll'); // $('#DateSettree_lbltree').css('width', '100px'); // } // else { // $('#DateSettree_lbltree').css('height', ''); // $('#DateSettree_lbltree').css('overflow-y', ''); // $('#DateSettree_lbltree').css('width', ''); // } }); // $(window).unload(function () { // $.cookies.del('feedback_Cookie'); // }); $(document).ready(function () { $('.window .close').click(function (e) { //Cancel the link behavior e.preventDefault(); $.cookie('feedback_Cookie', 'Yes', { expires: 365, path: '/' }); $('#maskWN').hide(); $('.window').hide(); var scroll = $(window).scrollTop(); $("html").scrollTop(scroll); }); $('#maskWN').click(function () { $(this).hide(); $.cookie('feedback_Cookie', 'Yes', { expires: 365, path: '/' }); $('.window').hide(); }); // if ($.cookie('feedback_Cookie') == null) { // var id = '#dialog'; // //Get the screen height and width // var maskHeight = $(document).height(); // var maskWidth = $(window).width(); // // //Set heigth and width to mask to fill up the whole screen // $('#mask').css({ 'width': '100%', 'height': '100%','position':'fixed' }); // //transition effect // $('#mask').fadeIn(500); // $('#mask').fadeTo("slow", 0.9); // //Get the window height and width // var winH = $(window).height(); // var winW = $(window).width(); // //Set the popup window to center // $(id).css('top', winH / 2 - $(id).height() / 2); // $(id).css('left', winW / 2 - $(id).width() / 2); // //transition effect // $(id).fadeIn(2000); // } // $('blockquote p').css('margin','auto'); // $('blockquote blockquote blockquote p').contents().contents().unwrap(); // $('blockquote blockquote blockquote').contents().unwrap(); // $('blockquote blockquote').contents().unwrap(); // $('blockquote').contents().unwrap(); //if close button is clicked $('.window .close').click(function (e) { //Cancel the link behavior e.preventDefault(); $.cookie('feedback_Cookie', 'Yes', { expires: 365, path: '/' }); $('#mask').hide(); $('.window').hide(); var scroll = $(window).scrollTop(); $("html").scrollTop(scroll); }); //if mask is clicked $('#mask').click(function () { $(this).hide(); $('.window').hide(); }); $('#feedbackbtn').click(function () { var id = '#dialog'; //Get the screen height and width var maskHeight = $(document).height(); var maskWidth = $(window).width(); //Set heigth and width to mask to fill up the whole screen //$('#mask').css({ 'width': maskWidth, 'height': maskHeight }); $('#mask').css({ 'width': '100%', 'height': '100%', 'position': 'fixed' }); //transition effect $('#mask').fadeIn(500); $('#mask').fadeTo("slow", 0.9); //Get the window height and width var winH = $(window).height(); var winW = $(window).width(); //Set the popup window to center $(id).css('top', winH / 2 - $(id).height() / 2); $(id).css('left', winW / 2 - $(id).width() / 2); //transition effect $(id).fadeIn(2000); }); $('.submit').click(function () { var Name = $("[id*=txtFeedbackName]").val(); var Email = $("[id*=txtFeedbackEmail]").val(); var Comments = $("[id*=txtFeedbackComments]").val(); if (Name == "") { alert("Please enter your name"); $("[id*=txtFeedbackName]").focus(); return false; } else if (Email == "") { alert("Please enter your email"); $("[id*=txtFeedbackEmail]").focus(); return false; } else if (Email != "" && !ValidateEmail(Email)) { alert("Please enter a valid email address"); $("[id*=txtFeedbackEmail]").focus(); return false; } else if (Comments == "") { alert("Please enter some comments"); $("[id*=txtFeedbackComments]").focus(); return false; } else { $('[id*=Button1]').attr('disabled', 'disabled'); var param = { Name: Name, EmailID: Email, Comments: Comments }; $.ajax({ type: "POST", url: "../Home.aspx/SaveFeedback", data: JSON.stringify(param), contentType: "application/json; charset=utf-8", dataType: "json", success: function (response) { if (response.d == "0") { alert("Thank you for your feedback"); $.cookie('feedback_Cookie', 'Yes', { expires: 365, path: '/' }); $('#mask').hide(); $('.window').hide(); $('[id*=Button1]').removeAttr('disabled'); $("[id*=txtFeedbackName]").val(""); $("[id*=txtFeedbackEmail]").val(""); $("[id*=txtFeedbackComments]").val(""); } else { alert("Please try again"); $('[id*=Button1]').removeAttr('disabled'); } } }); } }); function ValidateEmail(email) { var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; return expr.test(email); }; // $('#divArchiveMain').click(function () { // // if ($(window).scrollTop() >= 235) { // $('#DateSettree_lbltree').css('height', '181px'); // $('#DateSettree_lbltree').css('overflow-y', 'scroll'); // $('#DateSettree_lbltree').css('width', '100px'); // } // else { // $('#DateSettree_lbltree').css('height', ''); // $('#DateSettree_lbltree').css('overflow-y', ''); // $('#DateSettree_lbltree').css('width', ''); // } // }); $('a.style1').each(function () { var $this = $(this); var aHref = $this.attr('class'); $this.attr('class', aHref.replace('style1', 'links')); }); }); </script> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-61369961-1', 'auto'); ga('send', 'pageview'); </script> </div> <style type="text/css"> .tablebg table, .tablebg table table { background-color: transparent !important; border-color: rgb(239, 209, 170)!important; border-collapse: collapse; } table table table td{ background-color: transparent !important; } .table { background-color: transparent !important; } </style> </form> </body> </html> <script type="text/javascript" src="/js/plugins.js"></script> <script type="text/javascript" src="/js/script.js"></script> <script type="text/javascript" src="/js/Scroll.js"></script> <script type="text/javascript" language="javascript"> DoubleScrollWithTree(document.getElementById('doublescroll')); function GetYearMonth(year, month) { document.getElementById("hdnYear").value = year; document.getElementById("hdnMonth").value = month; document.getElementById("btn").click(); } //Implemented onlick for 'archives' link in tree structure function hideshow(divArchive) { if (!document.getElementById(divArchive)) return if (document.getElementById(divArchive).style.display == "block") document.getElementById(divArchive).style.display = "none" else document.getElementById(divArchive).style.display = "block" } function SetTreeStyles() { var strYear = document.getElementById("hdnYear").value; var strMonth = document.getElementById("hdnMonth").value if (strYear != "") { var toDay = new Date(); document.getElementById("btn" + strYear).setAttribute("class", "accordionButton year active_year"); document.getElementById(strYear).style.display = "block" if (strMonth) document.getElementById(strYear + strMonth).setAttribute("class", "active"); if (toDay.getFullYear() - 9 > parseInt(strYear)) { document.getElementById("divArchiveSub").style.display = "block" } } } $(document).ready(function () { document.getElementById("2769").style.visibility = "hidden"; }); </script>

Pages: 1 2 3 4 5 6 7 8 9 10