Skip to content

Salesforce vs Zoho CRM: Technical Architecture & Operations Guide

A technical architecture comparison of Salesforce vs Zoho CRM covering data models, API limits, Governor Limits, TCO, and migration complexity for RevOps teams.

Raaj Raaj · · 16 min read
Salesforce vs Zoho CRM: Technical Architecture & Operations Guide
TALK TO AN ENGINEER

Planning a migration?

Get a free 30-min call with our engineers. We'll review your setup and map out a custom migration plan — no obligation.

Schedule a free call
  • 1,500+ migrations completed
  • Zero downtime guaranteed
  • Transparent, fixed pricing
  • Project success responsibility
  • Post-migration support included

Salesforce Sales Cloud is a metadata-driven, multi-tenant relational platform built for deep custom business logic via Apex, Junction objects, and Governor-limited transactions. Zoho CRM is a modular, credit-based platform where business logic lives in Deluge scripts and custom modules with flat relational depth. Your architecture choice determines everything from reporting pipelines to migration complexity and long-term technical debt.

Overview & Core Intent

Info

Liftable Summary: Salesforce uses a metadata-driven multi-tenant architecture with strict relational enforcement via Junction objects and custom metadata types. Zoho CRM uses a modular architecture with custom modules and proprietary Deluge scripting to execute relational business logic. The data model gap defines every downstream operational decision.

Ideal Customer Profile

Salesforce Sales Cloud Enterprise/Unlimited fits organizations with 3+ dedicated platform engineers or a certified SI partner, complex multi-object data models requiring many-to-many relationships via Junction objects, and enterprise-scale compliance requirements. If your RevOps team needs to model relationships across dozens of custom objects with programmatic Apex triggers and batch jobs, Salesforce is the only realistic choice.

Zoho CRM Enterprise/Zoho One fits teams of 5 to 50 sales reps who need CRM operational in days, not quarters. If your data model can be expressed with custom modules and lookup fields, and your automation logic doesn't require server-side code beyond Deluge functions, Zoho delivers roughly 80% of the operational capability at a fraction of the per-seat cost.

Verdict: Choose Salesforce if your operations team builds complex relational logic on the platform. Choose Zoho CRM if your team needs an affordable, extensible CRM that runs alongside the broader Zoho ecosystem.

Architecture & Data Model Constraints

Info

Liftable Summary: Salesforce enforces relational integrity through Junction objects, custom metadata types, and a schema where all customization is stored as metadata. Zoho CRM uses custom modules with lookup fields and relies on Deluge scripting for business logic that Salesforce handles natively through declarative relationships.

Salesforce: Multi-Tenant Metadata Architecture

Salesforce runs thousands of organizations on shared infrastructure using a multi-tenant architecture. To ensure one org doesn't consume excessive resources and impact others, Salesforce enforces runtime limits called Governor Limits.

All customization in Salesforce — fields, objects, page layouts, validation rules — is stored as metadata rather than direct database schema changes. Standard objects (Account, Contact, Opportunity, Lead) form the backbone. Custom objects extend the schema, and Junction objects enable many-to-many relationships that Zoho cannot natively replicate.

Custom metadata types allow admins to deploy configuration data (pricing tiers, routing rules, territory mappings) through the same change management pipeline as code. This is a significant architectural advantage for enterprise RevOps teams that need environment-specific config without hardcoding values into logic. For a deeper comparison of how Salesforce's relational model compares to other CRMs, see our Salesforce vs HubSpot Architecture guide.

Zoho CRM: Modular Custom Modules + Deluge

Zoho CRM supports custom modules with lookup fields that connect entities. But lookups in Zoho are one-to-many. There is no native Junction object equivalent for many-to-many relationships. To model a many-to-many relationship — for example, a Deal associated with multiple Products and multiple Partners — you must create a custom module and write Deluge scripts to enforce the relational logic manually.

Deluge (Data Enriched Language for the Universal Grid Environment) is Zoho's proprietary scripting language. It powers workflow rules, custom functions, and scheduled automations. Deluge handles mid-complexity logic well, but it creates a vendor lock-in risk: Deluge code cannot be ported to any other platform without a full rewrite. For a technical deep-dive into Zoho's API credit architecture and Deluge constraints, see our Zoho CRM vs Monday CRM guide.

Impact on Reporting and Technical Debt

Salesforce's relational depth means cross-object reporting — for example, "Show me all Contacts associated with Opportunities above $50K that have open Cases" — is a native SOQL query. In Zoho, the same report requires either a Zoho Analytics integration or custom Deluge logic to join data across modules, adding latency and maintenance overhead.

Salesforce's relational model is also easier to normalize into a data warehouse or CRM Analytics. Zoho CRM can feed analytics (especially through Zoho Analytics), but once business meaning lives partly outside raw data tables — in Deluge scripts, Blueprint transitions, and Canvas layouts — the data team has to reconstruct more context downstream.

Technical debt accumulates differently across both platforms. Salesforce orgs accumulate debt in deprecated Apex triggers, complex Flows, and tangled automation logic that slows transaction times. Zoho orgs accumulate it in scattered Deluge scripts that are harder to audit because Zoho lacks Salesforce-grade deployment tooling. There's no equivalent to Salesforce DX or scratch orgs for CI/CD pipelines on the Zoho side.

Operational Limits & Bottlenecks

Info

Liftable Summary: Salesforce Enterprise enforces a daily API limit of 100,000 base requests plus 1,000 per user license on a rolling 24-hour window, with per-transaction Governor Limits capping SOQL retrieval at 50,000 records and CPU time at 10,000ms synchronously. Zoho CRM Enterprise uses a credit-based system and limits concurrency to 20 simultaneous active calls per org per app, with a sub-concurrency limit of 10 for heavy operations.

Salesforce Governor Limits

Salesforce enforces a 100,000 daily API request limit for Enterprise Edition orgs plus 1,000 additional requests per user license. Limits are calculated on a rolling 24-hour basis rather than a fixed calendar day. Enforcement is against the org aggregate, not each user independently — a point that's frequently misread during capacity planning. An Enterprise org with 15 user licenses gets 115,000 requests in the 24-hour window.

Per-transaction Governor Limits are where most Apex developers hit walls:

Limit Synchronous Asynchronous
SOQL queries per transaction 100 200
Records retrieved by SOQL 50,000 50,000
DML statements 150 150
CPU time 10,000 ms 60,000 ms
Heap size 6 MB 12 MB
Callouts per transaction 100 100

The 50,000-record retrieval limit is a per-transaction ceiling, not per-query. If your trigger fires a query returning 30,000 records, every subsequent query in that same transaction shares the remaining 20,000.

Salesforce caps synchronous CPU time at 10,000 milliseconds (10 seconds) and asynchronous CPU time at 60,000 milliseconds (60 seconds). Cross that line and the transaction throws a runtime exception that cannot be caught or handled away.

Warning

Bulk API caveat: Governor limits are per-transaction, not per-API-call. A single API request can trigger Apex code that cascades through 100 SOQL queries, 150 DML statements, and 10,000 DML rows before hitting the wall.

Zoho CRM API Credit Limits

Zoho CRM calculates API usage based on credits. Every API operation deducts a specific number of credits from your daily allocation. The formula for Enterprise/Zoho One:

50,000 base credits + (user licenses × 1,000) + add-on credits

Credit costs vary by operation:

  • GET (Get Records): 3 credits
  • Insert/Update (up to 100 records): 10 credits
  • Convert Lead: 5 credits per call
  • Bulk Read initialization: 50 credits

Integration tasks made through Deluge functions also consume API credits. If you call zoho.crm.searchRecords() inside a Deluge function, it consumes the same credits as the underlying Search Records API. This hidden credit burn catches many teams during capacity planning.

Zoho Concurrency Limits

The concurrency limit for Enterprise/Zoho One/CRM Plus is 20 simultaneous active calls per org per app. A sub-concurrency limit of 10 applies to resource-intensive operations: Convert Lead, bulk updates with more than 10 records, search from functions, Query API, and Composite API calls.

There are no time-based API call restrictions in Zoho CRM — limits are based on the number of simultaneously active calls. You can make any number of calls per minute, provided concurrent calls stay within limits. That sounds flexible, but during a large data migration with parallel workers, hitting the 20-concurrent-call ceiling throttles throughput severely.

Warning

Salesforce fails noisy integrations through org-wide API exhaustion and per-transaction Governor Limits. Zoho fails them through credit depletion, active-call caps, and sub-concurrency throttling. Both platforms break at scale — just in different places.

Feature-by-Feature Systems Comparison

Custom Workflow Automation

Winner: Salesforce (Flow + Apex)

Salesforce Flow provides a declarative automation builder that handles record-triggered flows, screen flows, scheduled flows, and platform event-triggered flows. When Flow hits its limits, Apex provides full server-side programmability with triggers, batch jobs, Queueable classes, and Platform Events. Salesforce's Apex testing framework requires 75% code coverage for production deployment, enforcing a baseline of test discipline.

Zoho Blueprint provides a visual process builder for stage-based workflows. Deluge handles the programmatic layer. Blueprint excels at linear sales processes (Lead → Qualified → Proposal → Closed), but it struggles with complex branching logic that requires cross-module data lookups. Deluge lacks Apex's type safety and doesn't support unit testing at the same depth.

Caveat: Salesforce Flow has become increasingly complex. A single Flow can contain hundreds of elements, and debugging record-triggered Flows with multiple entry conditions is difficult without debug logs. On both platforms, automation shares the transaction or credit budget with integration logic — Salesforce via Governor Limits, Zoho via the shared API credit pool.

UI Customization & Pipeline Management

Winner: Zoho CRM (Canvas)

Zoho Canvas is a true drag-and-drop UI builder that lets admins redesign record detail pages, list views, and dashboards without writing code. It supports conditional display rules, device-specific layouts, and profile-based assignment.

Salesforce Lightning App Builder provides page layout customization and supports custom Lightning Web Components (LWC), but any non-trivial UI change requires JavaScript, HTML, and CSS development. The learning curve is steep compared to Canvas. For pure UI flexibility without developer involvement, Zoho wins clearly.

Caveat: Canvas layouts cannot be reused across modules, assignments are profile-based, and mobile currently supports only Canvas detail views. Salesforce remains the better fit if you need reusable component architecture across apps and pages.

Advanced Reporting & Analytics

Winner: Salesforce (CRM Analytics)

Salesforce CRM Analytics (formerly Tableau CRM/Einstein Analytics) is a dedicated analytics platform with SAQL query language, dataflows, and predictive modeling. CRM Analytics starts at $140/user/month for Growth and $165 for Plus. The analytical depth is unmatched for predictive pipeline scoring, multi-source data blending, and embedded analytics.

Zoho Analytics integrates deeply with Zoho CRM and is included in Zoho One at no extra cost. It handles cross-module reporting, supports SQL-like queries, and ships with 70+ ready-made reports. For teams that need operational dashboards without a $140+/user/month add-on, Zoho Analytics is genuinely competitive.

Caveat: Zoho allows only a single Zoho Analytics account per CRM org, and deactivating the integration deletes the data, reports, and dashboards in Zoho Analytics. If your analytics requirements extend to predictive modeling or ML-driven pipeline scoring, Salesforce is the stronger tool.

Comparison Summary

Category Winner Rationale
Custom Workflow Automation Salesforce Apex + Flow provide deeper programmability, type safety, and mandatory test coverage
UI Customization & Pipeline Management Zoho CRM Canvas enables no-code UI redesign without JavaScript/LWC development
Advanced Reporting & Analytics Salesforce CRM Analytics + SAQL provides predictive modeling and multi-source data blending

True Total Cost of Ownership (TCO) & Hidden Scaling Costs

Salesforce: High Base, Expensive Add-Ons

Salesforce Sales Cloud Enterprise is listed at $175/user/month and Unlimited at $350/user/month, billed annually. Salesforce raised prices approximately 6% across Enterprise and Unlimited in August 2025, so budget for ongoing increases.

Hidden costs stack fast:

  • CRM Analytics: $140–$165/user/month add-on for advanced reporting
  • Additional API calls: Purchasable in increments ranging from 200 to 10,000 per 24-hour period
  • Storage overages: Salesforce includes baseline storage allocations (typically 10 GB of data storage and 10 GB of file storage per org). Additional storage costs approximately $125/GB/month for data storage.
  • Sandboxes: Enterprise includes a Partial Sandbox. A Full Sandbox for production-like staging is a separate purchase.
  • Implementation: Certified Salesforce developers and SI partners bill $150–$300+/hour. A mid-complexity implementation runs $25,000–$100,000+.

For a 50-user Enterprise org, the annual license alone is $105,000. Add CRM Analytics for 10 users ($16,800–$19,800/year), storage overages, and implementation costs, and the realistic first-year TCO exceeds $150,000.

Zoho CRM: Low Base, Hidden Scaling Costs

Zoho CRM Enterprise is listed at $40/user/month billed annually. Zoho One pricing includes a Flexible User model at $90/user/month and an All Employee model at $37/user/month, both billed annually.

For a 50-user team on Zoho One All Employee pricing, the annual cost is approximately $22,200 — roughly 21% of the Salesforce Enterprise license cost for the same headcount.

But hidden costs emerge at scale:

  • Deluge maintenance: Custom Deluge scripts require developers who know a proprietary language with limited community support compared to Apex. As your automation library grows, technical debt compounds.
  • Integration overhead: The 20-concurrent-call limit forces integration architects to implement queuing, batching, and retry logic much earlier than Salesforce's higher concurrency ceiling requires.
  • Zoho Analytics limitations: While included in Zoho One, Zoho Analytics lacks the predictive modeling and ML capabilities that Salesforce bundles into higher tiers.

The Real Cost Equation

The cheaper platform on day one is not always the cheaper platform after two years of custom workflows and integrations. Salesforce's costs are upfront and visible — you know exactly what add-ons cost. Zoho's costs shift more responsibility into proprietary configuration and scripting that accrues quietly over time.

Data Portability & Complex Migration Routing

Info

Liftable Summary: Salesforce exposes data through REST, SOAP, and Bulk APIs with well-documented schemas. Zoho CRM exposes data through a credit-based REST API with a 100-record-per-call batch limit for standard operations. Extracting data from either platform is technically straightforward. Migrating between them requires complex object remapping and logic translation.

Extracting Data

Salesforce Bulk API 2.0 supports up to 15,000 batches per day with 10,000 records per batch, making large-scale extraction efficient. For practical guidance on extraction methods, see our guide to exporting data from Salesforce Service Cloud.

Zoho CRM allows a maximum of 100 records per standard API call for Insert/Update/Upsert operations. Zoho's Bulk Read API is asynchronous and can export up to 200,000 records per call in downloadable CSV format, which is better suited for large extractions. For a 500,000-record extraction via the standard API, you need at least 5,000 calls, each consuming credits. This is where the rolling 24-hour credit window and 20-concurrent-call ceiling become real operational constraints.

Migration Pathway: Zoho CRM to Salesforce

The technical migration pathway involves three layers of complexity:

  1. Object remapping: Flat Zoho custom modules must be mapped into Salesforce's relational schema. A Zoho custom module acting as a many-to-many bridge needs to become a proper Salesforce Junction object with two Master-Detail relationships. Getting the relationship hierarchy wrong corrupts cascade delete behavior and sharing rules.

  2. Logic translation: Every Deluge function, workflow rule, and Blueprint must be translated into Salesforce Flow or Apex. There is no automated converter. A Deluge zoho.crm.updateRecord() call embedded in a workflow function needs to become either a Flow Data element or an Apex DML operation, with Governor Limit compliance built in from the start.

  3. Delta migrations: Point-in-time delta migrations are required to capture records created or modified after the initial bulk migration. Both platforms use different timestamp formats and audit trail structures, so the delta sync logic must account for timezone handling and record-level conflict resolution.

# Example: Zoho to Salesforce object mapping
zoho_custom_module: Partner_Touches
salesforce_target:
  primary_object: Partner_Touch__c
  junction_objects:
    - Account_Partner_Touch__c
    - Opportunity_Partner_Touch__c
automation_translation:
  zoho: Deluge + Blueprint transition
  salesforce: record_triggered_flow + invocable_apex

For teams planning this kind of move, our CRM Data Migration Checklist covers the full workflow from audit to validation.

Warning

Do not attempt to migrate Deluge scripts directly into Salesforce Apex using automated translation tools. The architectural differences in how each platform handles bulk record updates will cause immediate Governor Limit exceptions upon deployment. Treat Zoho-to-Salesforce as a schema-and-logic rewrite, not a CSV lift.

Tip

ClonePartner handles complex Zoho-to-Salesforce object remapping, Deluge-to-Flow logic conversion, and delta sync orchestration — delivering in days, not weeks. If you're facing a CRM migration with tight timelines and zero tolerance for data loss, talk to our team.

Core Strengths & Dealbreakers

Salesforce: Strengths

  • Programmatic extensibility: Apex triggers, Batch Apex, Platform Events, and Lightning Web Components give engineering teams full control over business logic at any scale.
  • Native relational modeling: Junction objects and custom metadata types are the right structure for partner, overlay, and attribution-heavy revenue models. Configuration is deployable, packageable, and reusable through the same change management pipeline as code.
  • Enterprise audit and compliance: Field History Tracking, Shield Platform Encryption, and Event Monitoring provide compliance tooling that regulated industries (financial services, healthcare) require out of the box.
  • AppExchange ecosystem: Thousands of certified managed packages extend functionality without custom development. No other CRM has equivalent marketplace depth.

Salesforce: Dealbreakers

  • Cost escalation is structural: Add-ons, storage overages, sandbox purchases, and SI partner involvement mean Year 2 costs are almost always higher than Year 1, even without adding seats.
  • Governor Limits punish naive code: A single poorly written trigger can cascade into LimitException errors that block entire business processes in production. The 50,000 SOQL row cap and CPU limits are real production blockers.
  • Flow debugging is painful: Complex record-triggered Flows with subflows and fault paths are notoriously hard to trace without deep platform expertise and careful use of debug logs.
  • API exhaustion is shared pain: The org — not the individual integration user — gets throttled. One runaway integration can starve every other connected system.

Zoho CRM: Strengths

  • All-in-one ecosystem at a fraction of the cost: Zoho One bundles CRM, Desk, Analytics, Projects, and 45+ other apps for $37/user/month. No competitor matches this price-to-breadth ratio.
  • Canvas UI builder is genuinely powerful: Non-technical admins can redesign record views, list pages, and detail layouts without writing code, reducing developer dependency for UI changes.
  • Blueprint enforces process compliance: Blueprint visually enforces stage transitions with mandatory field completion and approval gates — more intuitive than Salesforce's validation-rule-based approach for linear sales processes.
  • Burst-friendly API model: With no time-based call restrictions — only concurrency caps — Zoho's API model supports burst workloads when designed correctly.

Zoho CRM: Dealbreakers

  • Deluge is a proprietary dead end: All custom automation logic is written in a language no other platform uses. If you leave Zoho, every line of Deluge code must be rewritten from scratch.
  • Concurrency ceiling throttles integrations: The 20-concurrent-call limit (10 for heavy operations) per org per app means high-volume real-time integrations can hit the wall during peak hours.
  • No native Junction object support: Many-to-many relationships require manual custom module creation and Deluge enforcement, increasing fragility and testing burden as the data model grows.
  • Analytics coupling is tighter than expected: One Zoho Analytics account per CRM org, and deactivating the integration deletes the analytics layer entirely.

FAQ for Systems Administrators

What are the API rate limits for Salesforce Enterprise vs Zoho CRM Enterprise?

Salesforce Enterprise allows 100,000 base API requests plus 1,000 per user license per rolling 24-hour period. Per-transaction Governor Limits cap SOQL queries at 100, retrieved records at 50,000, and synchronous CPU time at 10,000ms. Zoho CRM Enterprise uses a credit system — 50,000 base credits plus 1,000 per user license — with a hard concurrency limit of 20 simultaneous active API calls per org per app and a sub-concurrency limit of 10 for heavy operations. Salesforce throttles per-transaction depth. Zoho throttles per-org throughput.

Is Salesforce or Zoho CRM better for complex relational business processes?

Salesforce. Its metadata-driven architecture with Junction objects, custom metadata types, and Apex provides native support for complex many-to-many entity relationships with cascading logic. Zoho CRM can approximate these patterns using custom modules and Deluge scripts, but lacks native relational enforcement. If your processes require many-to-many object relationships, Salesforce is the architecturally sound choice.

How much does Salesforce Enterprise cost compared to Zoho CRM Enterprise per user?

Salesforce Sales Cloud Enterprise costs $175/user/month billed annually (post-August 2025 increase). Zoho CRM Enterprise costs $40/user/month billed annually. Zoho One All Employee pricing is $37/user/month and includes 50+ apps. The license gap is significant, but Salesforce's add-on costs (CRM Analytics at $140+/user/month, storage overages, SI implementation) widen the real-world TCO difference well beyond the per-seat headline numbers.

How hard is it to migrate from Zoho CRM to Salesforce?

Harder than a CSV export suggests. Flat Zoho custom modules must be remapped into Salesforce Junction objects with proper Master-Detail relationships. All Deluge automation scripts must be rewritten as Salesforce Flows or Apex code — there is no automated converter. Delta migrations require careful timestamp reconciliation between the two platforms' different audit trail structures. Plan for a schema-and-logic rewrite, not an import exercise.

What is the Zoho CRM API concurrency limit for Enterprise?

Zoho CRM Enterprise allows a maximum of 20 concurrent active API calls per org per app. A sub-concurrency limit of 10 applies to resource-intensive operations: Convert Lead, bulk updates with more than 10 records, search from functions, Query API, and Composite API calls. There are no time-based restrictions, but hitting the concurrency ceiling blocks subsequent calls until active requests complete.

Final Operations Decision Matrix

Choose Salesforce if:

  • Your sales data model requires many-to-many relationships (Junction objects)
  • You have 3+ dedicated platform engineers or a certified SI partner
  • You need Apex-level programmability for custom business logic
  • Regulatory compliance requires Shield Encryption, Field History Tracking, or Event Monitoring
  • Your analytics pipeline needs predictive scoring and multi-source data blending

Choose Zoho CRM if:

  • Your team has fewer than 50 sales reps and limited dedicated CRM engineering resources
  • Your data model can be expressed with custom modules and one-to-many lookups
  • Budget is a primary constraint and you need CRM, helpdesk, and project tools in one license
  • Your automation requirements are met by Blueprint and Deluge without Apex-grade server-side logic
  • You want UI customization without JavaScript or LWC development

The RevOps Director's Bottom Line

If your revenue operations require deep relational data modeling, programmatic automation, and enterprise-grade compliance tooling, Salesforce is the only platform that delivers at scale — and the premium price reflects that capability gap. If your operations need a functional, affordable CRM with broad ecosystem coverage and your automation complexity stays within Deluge's ceiling, Zoho CRM Enterprise or Zoho One will save you 70%+ on licensing while covering the majority of typical RevOps workflows.

The real risk is not picking the wrong platform today. It is underestimating the migration complexity when you need to switch later. If you choose the cheaper platform and then rebuild enterprise logic in proprietary scripts, you did not buy simplicity — you deferred the cost.

Frequently Asked Questions

What are the API rate limits for Salesforce Enterprise vs Zoho CRM Enterprise?
Salesforce Enterprise allows 100,000 base API requests plus 1,000 per user license per rolling 24-hour period, with per-transaction Governor Limits (100 SOQL queries, 50,000 records, 10,000ms CPU). Zoho CRM Enterprise uses a credit system with 50,000 base credits plus 1,000 per user license, with a hard concurrency limit of 20 simultaneous active API calls and a sub-concurrency limit of 10 for heavy operations. Salesforce throttles per-transaction depth. Zoho throttles per-org throughput.
Is Salesforce or Zoho CRM better for complex relational business processes?
Salesforce. Its architecture supports Junction objects for many-to-many relationships, custom metadata types for deployable configuration, and Apex for server-side business logic with mandatory test coverage. Zoho CRM can approximate these patterns using custom modules and Deluge scripts, but lacks native relational enforcement.
How much does Salesforce Enterprise cost compared to Zoho CRM Enterprise per user?
Salesforce Sales Cloud Enterprise costs $175 per user per month billed annually. Zoho CRM Enterprise costs $40 per user per month billed annually. Zoho One All Employee pricing is $37 per user per month and includes 50+ apps. The license gap is significant, but Salesforce add-on costs for analytics, storage, and implementation widen the real-world TCO difference.
How hard is it to migrate from Zoho CRM to Salesforce?
Harder than a CSV export suggests. Flat Zoho custom modules must be remapped into Salesforce Junction objects with proper Master-Detail relationships. All Deluge automation must be rewritten as Salesforce Flows or Apex. Delta migrations require timestamp reconciliation between both platforms. Plan for a schema-and-logic rewrite, not an import exercise.
What is the Zoho CRM API concurrency limit for Enterprise?
Zoho CRM Enterprise allows a maximum of 20 concurrent active API calls per org per app. A sub-concurrency limit of 10 applies to heavy operations like Convert Lead, bulk updates with more than 10 records, search from functions, and Query API. There are no time-based restrictions, but hitting the ceiling blocks calls until active requests complete.

More from our Blog