Sofortige Plattform-Updates (10.–21. Dezember)

Zoho hat im Zeitraum vom 10. bis 21. Dezember mehrere Updates eingeführt, die sich darauf auswirken, wie Sie Dateien synchronisieren, auf Support-Tickets reagieren und wie Sie Systeme von Drittanbietern integrieren. Während es sich bei einigen dieser Updates um Funktionserweiterungen handelt, beinhalten andere kritische Änderungen der Sicherheitsrichtlinien, die sofortige Aufmerksamkeit erfordern.

⚠️ Maßnahmen bis zum 31. Dezember 2025 erforderlich

If you're using the default Zoho OAuth connector or embedded credentials in Deluge scripts, you must take action before December 31, 2025 to avoid breaking your integrations. Keep reading for details.

Zoho Platform Updates December 2025

WorkDrive TrueSync: Linux-Desktop-Unterstützung

Zoho WorkDrive TrueSync now officially supports Linux desktop environments, giving your sync-agent workflows equal footing across Windows, macOS, and Linux platforms.

Was das für Sie bedeutet

  • Cross-Platform Parity: Ubuntu and Fedora desktop users can now use TrueSync just like Windows and macOS users
  • Sync-Agent Workflows: File watchers, filesystem integrations, and endpoint sync operations now work seamlessly on Linux
  • Developer-Friendly: Development teams using Linux workstations can sync files directly without workarounds
  • Server Integration: Easier integration with Linux-based servers and automation scripts

Probieren Sie WorkDrive TrueSync unter Linux aus

If you're running Ubuntu or Fedora, download the new WorkDrive TrueSync client and experience seamless file synchronization across all your devices.

Kostenlos testen 15-day free trial - Includes in Zoho One

Technische Details

Der Linux TrueSync-Client unterstützt:

  • Real-time file synchronization
  • Selective sync (choose which folders to sync locally)
  • Team Folders collaboration
  • Version history and conflict resolution
  • Offline access to synced files

Zoho Desk: Massenantwort- und KI-Verbesserungen

Zoho Desk December updates bring two major improvements for support teams: mass-reply templates with snippets and expanded Zia AI assistance inside tickets.

Zoho Desk AI Updates

1. Massenantwortvorlagen + Snippets

Support-Mitarbeiter können jetzt einheitlich und in großem Umfang reagieren, wenn sie mehrere Tickets mit ähnlichen Problemen bearbeiten. Dies ist besonders nützlich für:

  • Outage Communications: Send consistent updates to all affected customers
  • Product Announcements: Reply to inquiries about new features with standardized responses
  • Policy Changes: Ensure all customers receive accurate information
  • Seasonal Responses: Holiday hours, shipping updates, or promotional information

2. KI-gestützte Unterstützung von Zia

Zia baut den Bereich Inside Tickets weiterhin mit drei Schlüsselfunktionen aus:

  • Ticket Summaries: Automatically generate concise summaries of long ticket threads
  • Reply Help: Suggested responses based on ticket context and historical data
  • Insights: Sentiment analysis, priority recommendations, and suggested tags

Auswirkungen auf die reale Welt

Supportteams, die diese Funktionen nutzen, berichten:

  • 30-40% reduction in response time for common inquiries
  • Higher consistency in customer communications
  • Faster onboarding for new support agents (AI suggestions serve as training)
  • Better ticket prioritization through Zia's insights

Verbessern Sie Ihren Support mit Zoho Desk

Experience AI-powered support ticketing with Zoho Desk. Start your free trial today.

Try Zoho Desk Free 15-day free trial - Included in Zoho One

Plattform- und Automatisierungsgrundlagen

Mehrere Kernfunktionen der Plattform bleiben unverändert, müssen aber für Ihre Integrationen und Automatisierungen unbedingt verstanden werden:

Asynchrone Massenschreibaufträge in CRM

Core Bulk Write async jobs in Zoho CRM remain asynchronous and callback/status-driven. No changes in this release window, but here's what you need to know:

  • Bulk operations continue to use callbacks for completion notifications
  • Status checks remain the recommended method for monitoring long-running jobs
  • No breaking changes to existing bulk write implementations
  • Rate limits and quotas unchanged

Webhook-HMAC-Signierung

Webhook HMAC signing practices remain in place for secure webhook verification. Important: Projects and Sign include HMAC headers that you should always validate in your webhook receivers.

Best Practice: Always Validate HMAC Signatures

// Example webhook validation (Node.js)
const crypto = require('crypto');

function validateWebhook(payload, signature, secret) {
    const hmac = crypto
        .createHmac('sha256', secret)
        .update(JSON.stringify(payload))
        .digest('hex');

    return hmac === signature;
}

// In your webhook handler
if (!validateWebhook(req.body, req.headers['x-zoho-signature'], SECRET)) {
    return res.status(401).send('Invalid signature');
}

Zeichnet die Upsert-Semantik auf

Die Semantik von Records Upsert hat sich in diesem kurzen Veröffentlichungszyklus nicht verändert. Im Zeitraum vom 10. bis 21. Dezember gibt es keine aktuellen API-Verhaltensankündigungen. Ihre vorhandene Upsert-Logik funktioniert weiterhin wie erwartet.

Sicherheitskritische Richtlinienänderungen (Maßnahmen erforderlich)

Hier müssen Sie besonders aufpassen. Zoho nimmt zwei wichtige sicherheitsrelevante Änderungen vor, die sich darauf auswirken, wie Sie API-Aufrufe authentifizieren und OAuth-Verbindungen verwalten.

🚨 Bahnbrechende Veränderungen voraus

These are not optional upgrades. If you don't take action before the deadlines, your integrations will break. Mark your calendar and plan your updates now.

Zoho Security Updates

Einstellung des OAuth-Connectors: Frist am 31. Dezember

Einsendeschluss: 31. Dezember 2025

Der standardmäßige Zoho OAuth-Connector ist veraltet. Nach dem 31. Dezember 2025 werden neue OAuth-Verbindungen nicht mehr in den Standardeinstellungen angezeigt und müssen für eine sichere API-Authentifizierung durch dienstspezifische oder benutzerdefinierte Verbindungen ersetzt werden.

Was sich ändert

  • Default OAuth Connector Removed: The generic "Zoho OAuth" connector will vanish from connection defaults
  • Service-Specific Connections Required: You must create connections specific to each Zoho service (CRM, Books, Desk, etc.)
  • Custom OAuth Apps Recommended: For production integrations, create custom OAuth clients in Zoho API Console
  • Existing Connections Grandfathered: Connections created before Dec 31 will continue to work (for now), but updates recommended

Warum das wichtig ist

Der standardmäßige OAuth-Connector war praktisch, stellte jedoch Sicherheitsrisiken dar:

  • Too broad in scope (access to all Zoho services)
  • Harder to audit and monitor
  • Violated principle of least privilege
  • Difficult to revoke granular access

So migrieren Sie

  1. Audit Your Connections: List all integrations using the default OAuth connector
  2. Create Service-Specific Connections: In each Zoho app, go to Setup → Developer Space → Connections
  3. Create Custom OAuth Clients: Visit Zoho API Console and create dedicated OAuth clients
  4. Update Your Integrations: Replace default OAuth references with new service-specific connections
  5. Test Thoroughly: Verify all integrations work with new connections before Dec 31

Zeitleiste der Migration

  • Now - Dec 20: Audit existing OAuth connections
  • Dec 20-25: Create new service-specific connections
  • Dec 25-30: Update and test integrations
  • Dec 31: Deadline - new default OAuth connections disabled

Sintflut invokeURL-Sicherheitsänderungen

Status: Bereits in Kraft

Deluge's invokeURL deprecation of embedded credentials has already taken effect. You can no longer use inline authentication in invokeURL calls. You must now use Connections instead of inline auth for secure service calls.

Was sich geändert hat

Bisher konnten Sie Anmeldeinformationen wie folgt direkt in Deluge-invokeURL-Aufrufe einbetten:

❌ Old Method (No Longer Works)

// DEPRECATED - DO NOT USE
response = invokeurl
[
    url: "https://api.example.com/endpoint"
    type: GET
    parameters: {"username": "user@example.com", "password": "secretpass"}
];

Now you must use Connections:

✅ New Method (Required)

// Create a Connection in Zoho first, then reference it
response = invokeurl
[
    url: "https://api.example.com/endpoint"
    type: GET
    connection: "your_connection_name"
];

Warum diese Änderung vorgenommen wurde

  • Security: Credentials embedded in code can be exposed through logs, error messages, or code exports
  • Auditability: Connections provide clear audit trails of which integrations access which services
  • Rotation: Update credentials in one place (Connection settings) rather than hunting through scripts
  • Compliance: Meets security compliance requirements for credential management

So aktualisieren Sie Ihre Skripte

  1. Identify Affected Scripts: Search your Deluge code for invokeURL calls with embedded credentials
  2. Create Connections: For each external service, create a Connection in Zoho
  3. Update invokeURL Calls: Replace credential parameters with connection references
  4. Test Thoroughly: Verify all API calls work with the new Connection-based approach
  5. Remove Old Credentials: Delete embedded credentials from your code

Verfügbare Verbindungstypen

  • OAuth 2.0 (recommended for most APIs)
  • API Key authentication
  • Basic Authentication (username/password)
  • Custom headers and parameters

Ihre Checkliste für Aktionspunkte

Hier ist Ihr priorisierter Aktionsplan für diese Dezember-Updates:

🔴 Kritisch – Maßnahmen bis zum 31. Dezember erforderlich

  • ✅ Audit all OAuth connections for default Zoho OAuth connector usage
  • ✅ Create service-specific OAuth connections for each Zoho app you integrate
  • ✅ Update integrations to use new OAuth connections
  • ✅ Test all integrations before Dec 31 deadline
  • ✅ Scan Deluge scripts for invokeURL calls with embedded credentials
  • ✅ Create Connections for all external API calls
  • ✅ Update and test all Deluge scripts

🟡 Wichtig – Empfohlene Updates

  • 📋 Upgrade to WorkDrive TrueSync on Linux if you use Ubuntu/Fedora
  • 📋 Enable Zoho Desk mass-reply templates for your support team
  • 📋 Configure Zia AI assistance in Desk for faster ticket responses
  • 📋 Review webhook HMAC validation in your integrations
  • 📋 Document your OAuth connection strategy for future maintenance

🟢 Optional – Gut zu wissen

  • 📖 Review Bulk Write API patterns to ensure best practices
  • 📖 Familiarize yourself with upsert semantics for future development
  • 📖 Explore new Zia features in other Zoho apps

Benötigen Sie Hilfe bei diesen Updates?

Wenn Sie sich von diesen Sicherheitsänderungen überfordert fühlen oder nicht sicher sind, wo Sie anfangen sollen, können wir Ihnen helfen. ZMCOR ist auf Zoho-Integrationen, API-Entwicklung und Plattformmigrationen spezialisiert.

Experte für Zoho-Migrationsunterstützung

Unsere zertifizierten Zoho-Berater können Ihr aktuelles Setup prüfen, Ihre Migrationsstrategie planen und die erforderlichen Änderungen vor Ablauf der Frist am 31. Dezember umsetzen.

Schedule Free Consultation No obligation - let's discuss your specific needs

Dienstleistungen, die wir anbieten

  • OAuth Migration: Audit and migrate from default OAuth to service-specific connections
  • Deluge Script Updates: Convert embedded credentials to secure Connections
  • Integration Testing: Comprehensive testing to ensure nothing breaks
  • Documentation: Document your new connection architecture
  • Training: Train your team on new security best practices

Bleiben Sie den Zoho-Updates immer einen Schritt voraus

Zoho entwickelt sich weiterhin rasant weiter und es werden regelmäßig neue Funktionen, Sicherheitsverbesserungen und Plattformänderungen angekündigt. Die Aktualisierungen vom Dezember 2025 sind besonders wichtig, da es sich dabei um bahnbrechende Änderungen handelt, die Maßnahmen erfordern.

The key takeaways:

  • WorkDrive TrueSync now supports Linux - great for development teams
  • Zoho Desk AI features continue to improve support efficiency
  • OAuth connector deprecation requires migration by Dec 31
  • Deluge embedded credentials are already deprecated - use Connections

Warten Sie nicht bis zur letzten Minute. Beginnen Sie noch heute mit der Migrationsplanung, testen Sie gründlich und stellen Sie sicher, dass Ihre Integrationen auch im Jahr 2026 reibungslos funktionieren.

Holen Sie sich die komplette Zoho-Plattform

All of these updates are included in Zoho One - 45+ apps for one unified price. No per-app licensing, no surprise fees.

Try Zoho One Free 30-day free trial - Full access to all apps

Über den Autor

Zvonimir Marin is a certified Zoho consultant and implementation specialist with over 10 years of experience helping businesses transform their operations with Zoho solutions. He specializes in API integrations, workflow automation, and Zoho platform security.