How long does it take for KYC to get processed? (2024)

\

\

Track funds on the go

\ 4.5\

\ \ \ \ ', afterLoading: function() { var openInAppBody = document.querySelector('body'); var openInAppContainer = document.querySelector('#open_in_app_widget_type_1'); var heightOuter = document.querySelector('.mfOuter'); openInAppBody.classList.add("open-inApp-widget"); function openInAppOnWindowScroll() { window.addEventListener("scroll", debounce(function() { var scroll = $(window).scrollTop(); if (scroll > 56) { openInAppBody.classList.remove('open-inApp-widget'); } else { openInAppBody.classList.add('open-inApp-widget'); } }, 200)) } document.querySelector(".inApp-close").addEventListener("click", function() { openInAppBody.classList.remove('open-inApp-widget'); openInAppContainer.classList.add('hide-openInApp'); }); openInAppOnWindowScroll(); }, bindEvent: function() { }, placeholder: { position: "beforebegin", // accepted value : "afterbegin" "afterend" "beforebegin" "beforeend" selector: "header" }, trigger: { evnt: "load", elm: "window", }, }, type_2: { html: '

\

\ \ How long does it take for KYC to get processed? (1)\ \ 4.5\

\

\

\

\

This page looks better in the app

\

\

\

\

\

\ ', afterLoading: function() { var widgetElement = document.querySelector('#open_in_app_widget_type_2'); document.querySelector('#backdrop').addEventListener('click', function(e) { if (e.currentTarget.classList.contains('open-inApp-backdrop') && !widgetElement.classList.contains('hide-openInApp') && !widgetElement.contains(e.target)) { widgetElement.classList.add('hide-openInApp'); e.currentTarget.classList.remove("open-inApp-backdrop"); document.querySelector('body').classList.remove('no-scroll'); } }); // document.querySelector('.open-inApp-backdrop').onclick = function(e) { // var openInAppBackdrop = document.querySelector('.open-inApp-backdrop'); // var ignoreClickOnOpenAppElem = document.querySelector('#open_in_app_widget_type_3'); // if(e.target != document.querySelector('#open_in_app_widget_3')) { // ignoreClickOnOpenAppElem.classList.add('hide-openInApp'); // openInAppBackdrop.classList.remove("open-inApp-backdrop"); // } // } }, bindEvent: function() { }, placeholder: { position: "beforeend", // accepted value : "afterbegin" "afterend" "beforebegin" "beforeend" selector: "body" }, trigger: { evnt: "load", elm: "window", }, }, type_3: { html: '\

\ \ Open in app\

', afterLoading: function() { var productType = window.location.pathname.split('/')[1].replace('-', ' ') || 'Home'; var OpenInAppWidget = { openInAppContainer: document.querySelector("#open_in_app_widget_type_3"), hide: function() { this.openInAppContainer.classList.add("hide-openInApp"); this.openInAppContainer.classList.remove('show-openInApp'); }, show: function() { this.openInAppContainer.classList.add("show-openInApp"); this.openInAppContainer.classList.remove('hide-openInApp'); }, dismissed: false } OpenInAppWidget.hide(); // Show Widget when Page Scrolled 70% var scrolledHight = $(window).height(); window.addEventListener("scroll", debounce(function() { if (document.documentElement.scrollTop < (scrolledHight * 0.7)) { OpenInAppWidget.hide(); } else { if (!OpenInAppWidget.dismissed) { OpenInAppWidget.show(); customGaEvents("Download", "Download - Widget - Type_3 - View", document.querySelector('#primary_cta_type_3').textContent + ' - ' + document.querySelector('#secondary_cta_type_3').textContent + ' - ' + productType); } } }, 200)) // Hide Widget On Remind Me later Click document.querySelector("#secondary_cta_type_3").addEventListener("click", function() { OpenInAppWidget.dismissed = true; OpenInAppWidget.hide(); }); // Show Fixed Button Open in App on Upscroll var openInAppCta = document.querySelector('.open_inApp_onUpScroll'); var lastScroll = $(window).scrollTop(); window.addEventListener('scroll', function(e) { var currentScroll = $(window).scrollTop(); if (currentScroll > lastScroll + 5) { openInAppCta.classList.remove('show-openInApp'); } else if (currentScroll < lastScroll - 5 && OpenInAppWidget.dismissed) { openInAppCta.classList.add('show-openInApp'); customGaEvents("Download", "Download - Widget - Type_3 - View", document.querySelector('#widget_openInApp_action').textContent); } // Update the old value lastScroll = currentScroll; }); }, bindEvent: function() { }, placeholder: { position: "beforeend", // accepted value : "afterbegin" "afterend" "beforebegin" "beforeend" selector: "body" }, trigger: { evnt: "load", elm: "window", }, } } // slice and reverse is to maintain the array ordering precedence. // Second way is to put only unique regex in config, such that // one page will have only one matching widget. config.slice().reverse().forEach(function(item) { if (document.querySelector('#open_in_app_widget_' + item.template) || !isMobileDevice()) { return; } var loc = window.location.pathname; // Get Product Name var productType = window.location.pathname.split('/')[1].replace('-', ' ') || 'Home'; if (typeof item.urlRegex == "undefined" || loc.match(item.urlRegex)) { var selectedTemplate = template[item.template]; // Creating HTML var wrapper = document.createElement('div'); wrapper.innerHTML = selectedTemplate.html; // Heading Change if (item.heading && wrapper.querySelector('#widget_heading_' + item.template)) { wrapper.querySelector('#widget_heading_' + item.template).textContent = item.heading; } // Primary CTA Change. The if condition are as per precedence if (window.mobAppRedirectLink && !(item.primaryCta && item.primaryCta.href)) { wrapper.querySelector('#primary_cta_' + item.template).href = window.mobAppRedirectLink; } if (item.primaryCta && item.primaryCta.href) { wrapper.querySelector('#primary_cta_' + item.template).href = item.primaryCta.href; } if (item.primaryCta && item.primaryCta.text) { wrapper.querySelector('#primary_cta_' + item.template).textContent = item.primaryCta.text; } // Secondary CTA Change // Bind events var placeholder = item.placeholder || selectedTemplate.placeholder; var trigger = item.trigger || selectedTemplate.trigger; if (trigger.elm == 'window' && trigger.evnt == 'load') { // Inject and Show directly the widget as this function is running on load event. document.querySelector(placeholder.selector).insertAdjacentHTML( placeholder.position, wrapper.innerHTML ) } if (trigger.elm != 'window' && trigger.evnt.match('click')) { var elements = document.querySelectorAll(item.trigger.elm); wrapper.firstChild.classList.add('hide-openInApp'); $(document).on(trigger.evnt, item.trigger.elm, function(event) { if ($(event.target).closest(item.trigger.exclude).length) { return; } event.preventDefault(); document.querySelector('#backdrop').classList.add("open-inApp-backdrop"); changeRedirectAppPrimaryCtaLink(event, item.template, loc); document.querySelector('#open_in_app_widget_' + item.template).classList.remove('hide-openInApp'); document.querySelector('body').classList.add('no-scroll'); if (item.ga) { // var gaLabel = event.currentTarget.querySelector(item.ga.selector).getAttribute(item.ga.dataAttr); } var secondaryCta = ''; if (document.querySelector('#secondary_cta_' + item.template)) { secondaryCta = document.querySelector('#secondary_cta_' + item.template).textContent; } customGaEvents("Download", "Download - Widget - " + item.template.charAt(0).toUpperCase() + item.template.slice(1) + " - View", document.querySelector('#primary_cta_' + item.template).textContent + ' - ' + secondaryCta + ' - ' + productType); }); // Inject the HTML document.querySelector(placeholder.selector).insertAdjacentHTML( placeholder.position, wrapper.innerHTML ) } // after template injected selectedTemplate.afterLoading(); // Add GA events on primary and secondary click var primaryCtaLink = document.querySelector('#primary_cta_' + item.template); var secondaryCtaLink = document.querySelector('#secondary_cta_' + item.template); if (document.querySelector('#widget_openInApp_action')) { document.querySelector('#widget_openInApp_action').href = primaryCtaLink.href; } if (primaryCtaLink) { primaryCtaLink.addEventListener('click', function(ev) { customGaEvents("Download", "Download - Widget - " + item.template.charAt(0).toUpperCase() + item.template.slice(1) + " - Click", ev.currentTarget.innerText + ' - ' + productType); }); } if (secondaryCtaLink) { secondaryCtaLink.addEventListener('click', function(ev) { customGaEvents("Download", "Download - Widget - " + item.template.charAt(0).toUpperCase() + item.template.slice(1) + " - Click", ev.currentTarget.innerText + ' - ' + productType); }); } } }); }); function changeRedirectAppPrimaryCtaLink(ev, widgetType, pathname) { var primaryCtaLink = document.querySelector('#primary_cta_' + widgetType); var secondaryCtaLink = document.querySelector('#secondary_cta_' + widgetType); // We have current location, event and widget where the link needs to be changed if (pathname.match('/mutual-funds/')) { var webLink = ev.currentTarget.querySelector(".scheme-name a").getAttribute("href"); if (webLink && secondaryCtaLink) { secondaryCtaLink.href = webLink; } var schemeId = ev.currentTarget.dataset.schemeId var redirectLink = 'https://etmoney.onelink.me/unJQ?pid=mweb-organic&c=OIA_schemeid_' + schemeId + '&af_ios_url=' + encodeURIComponent('https://apps.apple.com/in/app/etmoney-mutual-funds-sip-fd/id1212752482') + '&is_retargeting=true&af_inactivity_window=7d&af_dp=' + encodeURIComponent('https://www.etmoney.com/mobileApp/App/investment?state=7&schemeId=' + schemeId) + '&af_web_dp=' + encodeURIComponent('https://www.etmoney.com') + '&af_android_url=' + encodeURIComponent('https://play.google.com/store/apps/details?id=com.smartspends&hl=en_IN&gl=US'); } else if (pathname.match('/fixed-deposit')) { var webLink = ev.currentTarget.querySelector("td a").getAttribute("href"); if (webLink && secondaryCtaLink) { secondaryCtaLink.href = webLink; } } else if (pathname.match('/credit-card/')) { var webLink = ev.currentTarget; if (webLink && secondaryCtaLink) { secondaryCtaLink.href = webLink; } } // TODO: Link for product listing to be generated if (redirectLink) { primaryCtaLink.href = redirectLink; } } // ()();

My Account

  • How long does it take for KYC to get processed? (32)

  • My investments
  • My SIPs
  • My Watchlist
  • My transactions
  • Track external mutual funds
  • Profile
  • Profile
  • Logout

    Get Support

Download Mobile Apps

  • How long does it take for KYC to get processed? (42) Mutual Funds

    • Mutual Funds Home
    • Know your Investor Personality
    • All about Mutual Funds
    • Explore Mutual Funds
    • Check Portfolio Health
    • Equity funds
    • Debt funds
    • Hybrid funds
  • How long does it take for KYC to get processed? (43) Genius

    • Explore Genius
    • Stocks
    • Genius Portfolios
    • MF Portfolios
    • Stocks Portfolios
  • NPS

  • Earn

  • Fixed Deposit

  • Tax Saving Maximizer

  • Credit Score

  • How long does it take for KYC to get processed? (49) Insurance

    • Term Life Insurance
    • Health Insurance
  • How long does it take for KYC to get processed? (50) Calculators

    • SIP Calculator
    • Mutual Fund Calculator
    • FD Calculator
    • NPS Calculator
    • See all calculators

How long does it take for KYC to get processed? (51)

How long does it take for KYC to get processed? (52)

Great! You have sucessfully subscribed for newsletters for investments

Subcribed email:

  • Home
  • Account
  • FAQs

KYC

  • Profile
  • KYC
  • Bank Account
  • EasyPay
  • Capital Gains
  • Security
  • Tax

It takes 10-15 working days for KYC to get processed and registered with the KRA. You can check your KYC status here.

Was this helpful?

How long does it take for KYC to get processed? (54)

Sorry to hear that!

If you need more help, kindly get in touch with us

How long does it take for KYC to get processed? (55)

You have active tickets!

Hey there! Our team is actively working on your ticket and will respond to you soon. We appreciate your patience while we resolve this.

I have a different query.

Welcome to Support!!

How long does it take for KYC to get processed? (56)

How can we help you?

Was this helpful? How long does it take for KYC to get processed? (57)

Thank you for your feedback!

Okay, we are raising a ticket now, a team member will respond within 24 hours.

How long does it take for KYC to get processed? (2024)

FAQs

How long does it take for KYC to get processed? ›

It takes 10-15 working days for KYC to get processed and registered with the KRA.

How long does the KYC process take? ›

The offline KYC procedure takes around one week to be completed whereas the online KYC registration may take a shorter period. However, this can vary based on a slew of factors such as whether or not there were any errors, inconsistencies, or ambiguities in the application form.

Why is my KYC still pending? ›

Items that may cause a delay in processing are: Complicated ownership structures (e.g. company is owned by a trust) Submitting documents that do not correspond to the investing entity being verified. Submitting documents as proof of entity registration that do not satisfy the requirements.

Why is my KYC verification taking so long? ›

Sometimes verification could take a bit longer if we're receiving a large number of signups or if your specific KYC needs further verification. Once you have submitted your KYC details and documents, sit back and relax. The KYC team will take a look at all your details and approve your account as soon as possible!

How do I know if my KYC is approved? ›

You may consider visiting the website of your bank. You may find the link 'Check KYC status'. You then enter the bank account number and the CAPTCHA to check the KYC status of your bank account. You may also log in to your internet banking account and check the bank account KYC status.

What to do if KYC is on hold? ›

KYC On-Hold/Rejected - Remediation

You simply have to remediate the reason for KYC On-Hold/Rejected. o If the KYC On-hold reason is “PAN is not linked with Aadhaar”, then in that case the investor first needs to link the PAN with the Aadhaar.

What are the 5 stages of KYC? ›

Best practices for KYC onboarding due diligence typically begin with these five steps:
  • Step 1: Customer Identification Program (CIP) ...
  • Step 2: Customer Due Diligence. ...
  • Step 3: Enhanced Due Diligence. ...
  • Step 4: Continuous monitoring. ...
  • Step 5: Reporting and compliance.
Jun 24, 2024

Who will approve KYC pending for approval? ›

Once the KYC documents are successfully submitted in the UAN EPFO portal, the EPFO officials or the employer needs to give the approval of the KYC details. In general, employers gives the approval of KYC requests. In case they fail to approve the details, you can get in touch with the EPF Grievance Portal.

Why is KYC getting rejected? ›

1. The quality of uploaded documents may be blurred, cropped or you have masked your identity information. 2. Uploaded irrelevant photos of identity documents or proof of address.

What happens if KYC is not completed? ›

Missing the deadline can lead to deactivation of your bank account. If your bank account has been suspended due to a re-KYC compliance failure, you can re-activate it. The process for activating one's bank account in case of re-KYC failure is the same for every bank.

Why would KYC fail? ›

A failed KYC verification refers to a situation where the information provided by a user during the KYC process does not meet the required criteria or is not validated successfully These errors can occur for a variety of reasons, including incorrect or incomplete documentation, or technical issues within the ...

Why is my KYC not approved? ›

There are several reasons why your KYC (Know Your Customer) verification might have failed, ranging from incorrect personal information to having multiple accounts and regulatory compliance issues. Name Mismatch - Make sure to sign up with your legal name as it appears on your documents.

How do banks verify KYC? ›

It involves offline or online verification by submitting necessary documents. Offline KYC requires visiting the bank branch while online verification can be done through the website or mobile app. Necessary documents include proof of identity and address like Aadhaar, PAN, utility bills, and a recent photograph.

How long does KYC usually take? ›

Typically, the KYC process takes less than 5 minutes, but in some situations, additional checks are required to verify the authenticity of the data.

How long does it take for KYC under process? ›

The KYC data is normally checked within 3-5 working days. An SMS will be sent to the registered mobile number after the approval has been completed successfully.

Who verifies KYC? ›

The process of KYC Identity Verification is performed by businesses or conducted via commissioned third-party service providers. The goal is to verify the identity of customers to gauge their legitimacy and credibility while adhering to the regulatory requirements in the given country.

What is the KYC life cycle? ›

The KYC end-to-end process, or KYC lifecycle, includes: KYC verification and due diligence: During onboarding, verification and due diligence confirms the customer's identity and assesses their level of financial crime risk.

What is the standard KYC process? ›

KYC involves several steps to: establish customer identity; understand the nature of customers' activities and qualify that the source of funds is legitimate; and. assess money laundering risks associated with customers.

How long does KYC 2 verification take? ›

Level 2 KYC

Once the team has reviewed the information provided (usually within 48 hours) and if you are eligible you will be verified. Your limit will be lifted and you will receive an email notification. In certain cases, an enhanced verification is required, where extra information and documentation is requested.

How do you get passed KYC? ›

In order to pass KYC, users usually need to upload an ID document (except in countries where Non-Doc verification is already accepted and compliant) and pass a liveness check.

Top Articles
How to get Arceus in Pokémon Brilliant Diamond and Shining Pearl explained
Top 5 Futures Trading Strategies to Know in 2023 - 2024
How To Start a Consignment Shop in 12 Steps (2024) - Shopify
No Hard Feelings Showtimes Near Metropolitan Fiesta 5 Theatre
Devon Lannigan Obituary
Jennifer Hart Facebook
Gamevault Agent
Winston Salem Nc Craigslist
Activities and Experiments to Explore Photosynthesis in the Classroom - Project Learning Tree
Lexington Herald-Leader from Lexington, Kentucky
Ati Capstone Orientation Video Quiz
The Realcaca Girl Leaked
15 Types of Pancake Recipes from Across the Globe | EUROSPAR NI
Parks in Wien gesperrt
Music Archives | Hotel Grand Bach - Hotel GrandBach
Amateur Lesbian Spanking
Vardis Olive Garden (Georgioupolis, Kreta) ✈️ inkl. Flug buchen
W303 Tarkov
Craigslist Pikeville Tn
Echo & the Bunnymen - Lips Like Sugar Lyrics
Vcuapi
Sand Castle Parents Guide
Christina Khalil Forum
Paradise leaked: An analysis of offshore data leaks
Used Sawmill For Sale - Craigslist Near Tennessee
Vermont Craigs List
Kamzz Llc
Gina Wilson All Things Algebra Unit 2 Homework 8
Fleet Farm Brainerd Mn Hours
Plost Dental
Bayard Martensen
Why comparing against exchange rates from Google is wrong
Proto Ultima Exoplating
Nurtsug
Gus Floribama Shore Drugs
Baldur's Gate 3 Dislocated Shoulder
Nsu Occupational Therapy Prerequisites
Albertville Memorial Funeral Home Obituaries
Gary Lezak Annual Salary
Keir Starmer looks to Italy on how to stop migrant boats
Restored Republic June 6 2023
O'reilly's Palmyra Missouri
All-New Webkinz FAQ | WKN: Webkinz Newz
Locate phone number
11 Best Hotels in Cologne (Köln), Germany in 2024 - My Germany Vacation
303-615-0055
Premiumbukkake Tour
9294027542
Hughie Francis Foley – Marinermath
FactoryEye | Enabling data-driven smart manufacturing
Escape From Tarkov Supply Plans Therapist Quest Guide
Latest Posts
Article information

Author: Errol Quitzon

Last Updated:

Views: 6223

Rating: 4.9 / 5 (59 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Errol Quitzon

Birthday: 1993-04-02

Address: 70604 Haley Lane, Port Weldonside, TN 99233-0942

Phone: +9665282866296

Job: Product Retail Agent

Hobby: Computer programming, Horseback riding, Hooping, Dance, Ice skating, Backpacking, Rafting

Introduction: My name is Errol Quitzon, I am a fair, cute, fancy, clean, attractive, sparkling, kind person who loves writing and wants to share my knowledge and understanding with you.