Delete Your Account
This page allows you to request deletion of your Jagan 2.0 Super App account managed by KRMR Solutions.
About jaganannaconnects.com:
jaganannaconnects.com is the official web portal for Jagan 2.0 Super App services. This deletion page is part of our data privacy and user rights implementation.
What happens when you delete your account:
- Your profile and personal data will be removed from Jagan 2.0
- You will no longer have access to the app features
- Some shared content or messages may remain where deletion is not feasible
⚠️ Warning: This action will permanently remove your personal account data after the retention window. Posts or messages you sent to other users may remain in the system.
Developer / Server-side Implementation Notes
Backend Endpoint Implementation
- Endpoint:
POST /api/account/delete
- Authentication: Requires valid user session/token + password verification
- Security: CSRF token validation, rate limiting (max 3 attempts/hour), require re-auth if session > 15 min old
- Flow:
- Verify password (and 2FA if enabled)
- Create deletion request record with timestamp
- Mark account as
pending_deletion with deleted_at timestamp
- Schedule permanent deletion job after retention window (30 days)
- Send confirmation email to user
- Disable account access immediately or after grace period
- Data Handling:
- Soft delete: Set deletion flag, preserve data for recovery period
- Permanent delete: Anonymize/remove PII, purge from active DB
- Backups: Follow retention policy (may take up to 90 days to fully purge)
- Audit: Log all deletion requests (user_id, IP, timestamp, reason) for compliance
- Response Example:
{
"status": "success",
"message": "Your Jagan 2.0 account deletion has been scheduled. Your account will be permanently removed after 30 days unless you choose to restore it.",
"deletion_date": "2025-12-18T00:00:00Z",
"recovery_url": "https://jaganannaconnects.com/restore-account"
}