FamGateway Platform Changelog (Q3 2026): Passkeys, PyPI Python SDK, Sentry Telemetry & Automated PDF Receipts
At FamGateway, our mission is to build India's fastest, most reliable, and completely fee-free UPI automation ecosystem for developers, bot creators, and solo entrepreneurs. In our largest release cycle of the year (Q3 2026), we have deployed transformative upgrades spanning biometric authentication, official SDK packaging, legal compliance, and real-time site reliability engineering.
Here is the complete chronological changelog of features, security hardenings, and developer tools shipped to production.
1. FIDO2 / WebAuthn Biometric Passkeys (Passwordless Security)
Traditional passwords remain the number one attack vector for online credential theft. To provide institutional-grade protection for our merchants, FamGateway introduced native FIDO2 / WebAuthn Biometric Passkeys:
- 1-Second Biometric Auth: Merchants can log into their FamGateway dashboard using Apple Touch ID, Face ID, Android Fingerprint, or Windows Hello.
- Hardware Secure Enclave Isolation: Private cryptographic keys never leave your physical device's security chip, rendering accounts completely immune to phishing and credential stuffing.
- Multi-Device Sync: Passkeys sync securely across your Apple iCloud Keychain, Google Password Manager, or hardware security keys (YubiKey).
Read our in-depth architecture report on FamGateway Biometric Passkeys.
2. Official Python SDK Released on PyPI (pip install famgateway)
While developers previously wrote raw requests.post or cURL scripts, FamGateway now officially maintains an enterprise Python package published directly on the Python Package Index (PyPI):
pip install famgateway
The official SDK brings type hints, automatic session pooling, object-oriented models, and built-in cryptographic webhook verification:
from famgateway import FamGateway
fg = FamGateway(api_key="YOUR_API_KEY")
# Create a dynamic payment order in 3 lines
order = fg.create_order(amount=499.00, customer_name="Rohan Sharma")
print("Hosted Checkout URL:", order.checkout_url)
print("Dynamic QR Code URL:", order.qr_url)
# Built-in webhook signature verification
is_authentic = fg.verify_webhook(raw_payload_bytes, signature_header)
Check out the open-source repository on GitHub (aryanispe/famgateway-python) or read our complete tutorial on the FamGateway Official Python SDK on PyPI.
3. Automated Official PDF Receipts with Govt. MSME Verification
Merchants collecting payments online require legally sound, professional proof of transaction for their buyers and accounting books. We rolled out an automated PDF generation subsystem (includes/ReceiptPdf.php):
- Government MSME Recognition: Every generated receipt includes the official Udyam Registration Number (UDYAM-BR-28-0050000) under ARYANISPE, certified by the Ministry of Micro, Small and Medium Enterprises, Government of India.
- Base64 Email Attachment: When a payment is confirmed, FamGateway's outbound SMTP engine compiles the PDF in volatile memory and attaches it as
Receipt_{order_id}.pdfto the merchant alert email. - On-Demand Web Download: Receipts can be viewed and downloaded directly via
/transaction-details.php?id={order_id}&download=pdf.
Read our guide on Instant Merchant Email Alerts with PDF Receipts.
4. Enterprise SRE Observability & Distributed Sentry Telemetry
To guarantee 99.99% payment verification availability, we integrated the official Sentry PHP SDK across our backend daemons:
- Zero-Latency Error Capture: Unhandled exceptions capture complete diagnostic stack traces and memory profiles in real-time.
- Chronological Breadcrumbs: Track order creation, IMAP socket connections, and webhook queue dispatches to diagnose edge-case banking anomalies in seconds.
- Public Status Dashboard: Real-time independent multi-region health checks powered by HetrixTools at famgateway.in/status.php.
5. Dashboard UI & UX Polish
In addition to backend infrastructure, we rolled out multiple interface refinements across the merchant dashboard:
- Dynamic IMAP Connection Status: The "Configure IMAP" button switches to a verified green badge once your Gmail App Password is authenticated.
- Context-Aware Guarding: Unconfigured tabs (like Webhooks) now display clear setup prompts, preventing configuration errors before email linking.
- Pixel-Perfect Data Grids: Aligned padding across all transaction and webhook log tables for cleaner readability on high-density displays.
- Direct WhatsApp Support: Instant one-tap access to technical support directly from the dashboard navigation.
Frequently Asked Questions (FAQ)
What are the biggest new features released in FamGateway's Q3 2026 update?
The major releases include FIDO2 / WebAuthn Biometric Passkeys, the official PyPI Python SDK (pip install famgateway), automated Government MSME-registered PDF receipts (ReceiptPdf), and official Sentry PHP SDK real-time error telemetry.
How do I install and use the new Python SDK?
You can install it directly from the Python Package Index via `pip install famgateway`. It provides native object-oriented classes for order creation, checkout generation, status polling, and cryptographic webhook signature verification.
Where are the new automated PDF receipts delivered?
PDF receipts are generated in volatile memory via ReceiptPdf and attached directly as base64-encoded PDF files (Receipt_{order_id}.pdf) to instant merchant alert emails. They can also be downloaded on-demand from the merchant dashboard.
Were any breaking API changes introduced in this update?
No. All core endpoints (/api/create-order, legacy /api/qr.php, /api/checkout-status.php, and webhook structures) maintain 100% backward compatibility with zero downtime.
Conclusion
FamGateway is continuously evolving to provide Indian developers with the most robust, developer-first UPI automation stack in existence. Have ideas or feature requests? Join our 3,000+ active developer community on Telegram!
Explore Your Merchant Dashboard →
Related Developer Guides & Resources
How to Integrate FamPay UPI Payment Gateway in SMM Panels (Rental, Perfect Panel & SmartPanel)
Step-by-step developer guide to integrating FamPay UPI payment gateway in SMM panels (Rental, Perfect Panel...
How to Accept UPI Payments on WooCommerce Without GST or Current Account (2026 Guide)
Complete tutorial on accepting automated UPI payments on WooCommerce without GST or a commercial current ac...
How to Accept Automated UPI Payments in Telegram Bots (Python & Node.js Guide)
Step-by-step tutorial on accepting automated UPI payments in Telegram shop bots using Python (FastAPI) and ...