DPDP Compliance India: An Operational Framework for Founders
India's DPDP Act requires strict data handling practices that go far beyond a privacy policy. Learn how to engineer your software for total compliance.

When India notified the Digital Personal Data Protection (DPDP) Rules in late 2025 to operationalise the DPDP Act 2023, the compliance bar for software products changed for good. For non-technical founders and SME owners, achieving DPDP compliance India is no longer something you solve by pasting a legal template into your website's footer — it's a strict engineering mandate.
If your software collects, processes, or stores the personal data of Indian citizens, compliance has to be built into your database schemas, user interfaces, and backend architecture. Skipping this carries crippling penalties — up to ₹250 crore for inadequate security measures. The rollout is phased, and EY's DPDP readiness analysis confirms full compliance across all business tiers is expected by May 13, 2027.
Time is short. Audit your software's data collection now, update consent flows, and put verifiable deletion protocols in place before the deadline closes in.
Why DPDP Compliance India Is an Engineering Problem, Not a Legal One
Most founders assume data privacy is entirely their legal counsel's job. But a well-drafted privacy policy doesn't delete database rows on its own, and it doesn't trigger API calls to third-party vendors when a user revokes consent.
Under the DPDP Act, your business is a "Data Fiduciary" — strictly liable for the entire lifecycle of the data you collect. Even when you hand that data to a third-party analytics tool or cloud provider (the "Data Processor"), responsibility for a breach or misuse still stops with you.
When you hire a standard dev shop or buy a cheap software clone to build your MVP, the default engineering behaviour is to collect as much data as possible and store it forever. That legacy approach is now a serious legal liability. Bringing your application up to code requires an active, system-wide operational compliance framework — not just a policy document.
The 4-Pillar Operational Compliance Framework for Software
At Ganakys, we work with domain-expert founders who understand their market but don't have an in-house engineering team. When we architect software, we build DPDP compliance directly into the codebase — here's the four-pillar framework you should demand from your own technical team.
1. Granular Consent Architecture
Gone are the days of a pre-ticked "I agree to the Terms and Privacy Policy" box at registration. The DPDP Act requires informed, specific, itemised, and clear affirmative action.
That changes how user databases are structured. Legacy applications used a single boolean field (e.g., has_agreed_to_terms = true) on the user table — that's no longer enough. Your software needs a dedicated consent_logs table that tracks:
- The specific data point consented to (e.g., email for marketing vs. email for account recovery).
- The exact timestamp of consent.
- The IP address and device footprint.
- The privacy policy version the user agreed to at that moment.
If your application processes the data of minors (under 18), the DPDP Act also mandates verifiable parental consent. Your onboarding flow needs to integrate with reliable age-gating and parental verification APIs before any child data is stored.
2. Data Minimisation and Storage Limitations
The old Silicon Valley mantra was "collect everything, monetise it later." The DPDP Act actively penalises that mindset. You're legally required to practice data minimisation — collect only what's strictly necessary for the stated purpose, and keep it only as long as that purpose remains valid.
| Practice | Pre-DPDP Era | Post-DPDP Mandate |
|---|---|---|
| Data Collection | Blanket collection of location, contacts, and browsing habits. | Purpose-bound collection only. Features fail gracefully if optional consent is denied. |
| User Deletion | Soft-deletes (flagging a user as is_active = false but keeping data). | Cryptographically verified hard deletion across all active databases and logs. |
| Consent UX | Bundled in one massive checkbox at signup. | Granular, per-feature opt-ins (e.g., prompting for location only when opening a map). |
| Retention | Infinite storage on cheap AWS S3 buckets. | Automated cron jobs that purge data once the business purpose expires. |
Your technical team needs automated data lifecycle management. If a user hasn't logged in for five years and the data is no longer needed for accounting or legal purposes, your backend should automatically scrub their Personally Identifiable Information (PII) from the system.
3. Verifiable Deletion and Data Principal Rights
Under the DPDP Act, users (Data Principals) have the statutory right to access their data, request corrections, and demand erasure.
When a user clicks "Delete My Account," the engineering workflow gets complicated. Developers favour "soft deletes" because they preserve database integrity and analytics, but retaining PII after an erasure request directly violates the law. PwC's analysis of the DPDP Rules 2025 puts penalties for failing to honour a Data Principal's rights at up to ₹50 crore.
A compliant framework requires your software to:
- Hard-delete the user's PII from your primary database.
- Trigger webhooks to third-party SaaS tools (Stripe, SendGrid, HubSpot, etc.) instructing them to delete the user's data.
- Anonymise or tokenise immutable data (like GST-mandated invoices) so the individual can no longer be identified.
- Handle backups: since you can't selectively delete a user from an encrypted backup archive, your team needs a "deletion ledger" that re-scrubs the user if a backup is ever restored.
4. The 72-Hour Breach Notification Protocol
If your database is compromised, the DPDP Act gives you exactly 72 hours to notify the Data Protection Board of India (DPBI) and affected users. Failing to report on time carries a penalty of up to ₹200 crore.
You can't report a breach you don't know about — many SMEs only discover a leak months later, when their customer database turns up on the dark web. Your software needs active security monitoring, which means your tech stack should include:
- Comprehensive audit logging for all database queries.
- Real-time alerting for anomalous behaviour (e.g., an admin account downloading 10,000 user rows at 3:00 AM).
- Reasonable security safeguards as recommended by bodies like the Data Security Council of India (DSCI) — encryption at rest, encryption in transit, and strict Role-Based Access Control (RBAC).
Third-Party Risk: Your App Is Only as Compliant as Your Vendors
Modern software isn't built in a vacuum. Your app likely relies on external APIs — OpenAI for a chatbot, Twilio for SMS OTPs, AWS for hosting, Mixpanel for analytics.
Every time your app sends a phone number or prompt to an external API, you're transferring personal data. If that vendor suffers a breach or misuses the data, you are held accountable. Your framework needs strict Data Processing Agreements (DPAs) with every vendor, and your engineering team should audit exactly what payloads go over the wire. Never pass raw PII to an analytics platform when a hashed or tokenised identifier will do.
DPDP Impact on SMEs: Are You Exempt?
A common misconception among SME owners is that data privacy law exists only to rein in big tech companies like Meta or Google.
That's false. The DPDP Act carries no blanket revenue or headcount exemption for small businesses. If your three-person startup processes the personal data of Indian citizens, you are a Data Fiduciary.
The Data Protection Board may issue proportionate fines based on the scale of the business and the gravity of the breach, but the absence of an exemption means you're still fully exposed to legal liability. Organisations of every size face the same regulatory risk, and failing to implement baseline security safeguards attracts the same penalties, regardless of your startup's valuation.
Building DPDP-compliant software is genuinely expensive and time-consuming — expect it to add 15-20% to your initial development timeline. But the trade-off is clear: you're protecting your business from fines that can end it, plus reputational damage that's hard to quantify.
How the Build-Operate-Transfer Model Solves Compliance
For a non-technical founder, relying on a freelance developer or a traditional outsourced agency to build a DPDP-compliant system is a real operational risk. Traditional agencies are incentivised to ship code fast and walk away — when the law changes or a database is breached a year later, you're the one left holding it.
Compare this to the standard engagement models common in the software industry, and it's clear why the "build and handoff" approach is failing modern founders.
At Ganakys, we operate entirely on a Build-Operate-Transfer (BOT) model. We don't just write the code — we architect the product with enterprise-grade compliance from day one, then operate it in live production for you. We manage the cloud infrastructure, monitor the security logs, run the consent workflows, and make sure the deletion hooks actually work in the real world.
We act as your interim CTO and engineering team, carrying the operational burden of DPDP compliance, and only transfer ownership to your in-house team once the product has traction, the compliance processes are mature, and your team is trained to take over.
You bring the domain expertise and market access; we bring the compliant execution. If you're ready to build a legally defensible product without the engineering headache, request a BOT engagement with our team, or contact us to talk through how the DPDP Act affects your roadmap.
Frequently Asked Questions (FAQ)
Does DPDP compliance in India apply to B2B software?
Yes. Even strictly B2B software collects and processes the personal data of employees, founders, or representatives of those businesses — names, work emails, IP addresses. The DPDP Act protects individuals' data regardless of whether they're acting in a consumer or professional capacity.
What is a Consent Manager under the DPDP Act?
The Act introduces the "Consent Manager" — a registered platform where users can view, manage, and revoke consent across multiple Data Fiduciaries from a single dashboard. Software applications will eventually need APIs that integrate with these Consent Managers so users can revoke data access programmatically.
What are the penalties for DPDP compliance failures?
The DPDP Act relies exclusively on financial penalties, not criminal liability. They're steep: up to ₹250 crore for failing to implement reasonable security safeguards, up to ₹200 crore for failing to notify the board of a breach within 72 hours, and up to ₹50 crore for failing to honour a user's right to erasure or correction.
Can we store data outside India to avoid the DPDP Act?
No. The Act has extra-territorial jurisdiction. If your software processes the personal data of individuals in India in connection with offering them goods or services, the law applies — even if your servers sit in the US and your company is registered in Singapore.