← Return to Main Page
GaruGO — Privacy Policy Handbook
Effective Tracking Threshold Date: August 03, 2026
GaruGO is dedicated to protecting the confidentiality and digital perimeter parameters of all workspace participants. This policy outlines our strict protocols regarding data handling, tracking, and information security management configurations across our mobile client endpoints [INDEX].
1. Scope of Data Harvesting Pipelines
GaruGO collects user identification credentials, registered email parameters, billing settlement matrices, physical hardware geolocation metrics, and device specific notification tokens to operate our real-time video consultation escrow loops safely [INDEX].2. Media Streaming & Audio Data Processing ControlsOur WebRTC audio and video consultation rooms are streamed directly peer-to-peer using corporate media servers. GaruGO does not transcribe, capture, store, or record communication conversations or visual imagery data streams inside our server clusters [INDEX]. Your streams are entirely ephemeral and disappear the millisecond the call hangs up.3. FinTech Gateway Settlement PartnersCard deposit processing and electronic bank transfer routing systems are processed entirely through Paystack. Your raw credit card or banking parameters are never stored inside our localized Firestore database nodes [INDEX].4. Cross-Border Metrics Security SafeguardsAll data parameters are securely encrypted end-to-end in flight using SSL certificates and stored inside isolated data nodes protected by administrative firewalls [INDEX]. Information is never traded, sold, or shared with third-party advertising aggregation networks.← Return to Main PageUser Data Deletion & Compliance TrackingGoogle Play & Apple Store App Data Compliance Mandate ClauseGaruGO believes in full data ownership sovereignty. Users can request total erasure of their historical records fields from our centralized Firestore cloud database servers at any time [INDEX].How to Delete Your GaruGO Account Profile & Records Data:To request total account erasure and wipe your document logs from our active servers, use either of these two methods:Method A (In-App Action): Navigate to your profile screen block tab, click Settings, scroll down to Account Operations Control, and tap the Delete Profile & Wipe Data button [INDEX].Method B (Email Request Pipeline): Send an explicit email request from your registered profile email address directly to garugo2026@gmail.com with the subject line "Wipe Profile Data Request - [Your Full Name]" [INDEX].What Data Elements are Erased Permanently:Upon validation and processing execution of your request (typically processed within 48 operational hours), the following tokens are permanently erased from the network clusters:Your full account profile metadata (Name, Email, Verified Role Status, Avatars Base64 Data) [INDEX].Your device specific FCM Push Notification tokens history [INDEX].Your active public or private Guru directory discovery collection tracking nodes [INDEX].Note: Non-identifying chronological transaction history receipt billing metrics logs processed via Paystack are archived independently as required under national banking anti-fraud legislation records mandates.Privacy PolicyUser Data Deletion PolicyHelp Support Desk© 2026 GaruGO Corporation Network Systems. All Rights Reserved. Navigating with clarity.// 🎯 CLIENT-SIDE HASH ROUTER ENGINEfunction router() {const currentHash = window.location.hash || '#/';// First, deactivate all viewsdocument.querySelectorAll('.page-route').forEach(view => {view.classList.remove('active');});// Target the active layout segment based on hash valueif (currentHash === '#/privacy') {document.getElementById('privacy-view').classList.add('active');document.title = "GaruGO — Privacy Policy Handbook";window.scrollTo(0, 0);} else if (currentHash === '#/delete-data') {document.getElementById('delete-data-view').classList.add('active');document.title = "GaruGO — User Data Deletion Compliance";window.scrollTo(0, 0);} else {document.getElementById('home-view').classList.add('active');document.title = "GaruGO — Navigate With Clarity";}}// Programmatic routing navigatorfunction navigateTo(hashPath) {window.location.hash = hashPath;}// Listen for browser navigation changes or page loadswindow.addEventListener('hashchange', router);window.addEventListener('load', router);