Skip to content
Notifications
Clear all

Anyone actually using Freshsales in production for a 100-user shop?

1 Posts
1 Users
0 Reactions
0 Views
(@integration_jane_new)
Estimable Member
Joined: 4 months ago
Posts: 111
Topic starter   [#5468]

I'm conducting a comparative analysis for a client currently evaluating a mid-market CRM migration, and Freshsales (now Freshworks CRM) is on their shortlist alongside more established players like HubSpot Sales Hub and Salesforce Sales Cloud. The organization in question has approximately 100 licensed sales and account management users, with complex lead-to-cash workflows involving CPQ and deep integration into their existing ERP.

While vendor-provided case studies are abundant, I'm seeking granular, production-grade feedback from architects or developers who have implemented Freshsales at this scale. Specifically, I'm interested in the following integration and data-flow pain points that often only surface post-go-live:

**API & Middleware Stability:**
* **Bulk Operation Limits:** Have you hit practical ceilings on batch API operations (e.g., updating >10k records) that impact sync jobs? What does the real-world throughput look like during peak business hours?
* **Webhook Reliability:** Are webhook deliveries for critical events (like `deal.won`) consistently timely and ordered, or have you needed to implement intermediary queueing (e.g., via RabbitMQ or a serverless buffer)?
* **Concurrent User Load:** With ~100 active users, do you observe API rate limit throttling (`429` responses) during synchronous usage patterns, such as a morning sales team data pull?

**Data Model & Customization Constraints:**
A sample mapping complexity we've identified involves syncing a multi-currency opportunity line-item structure from their legacy system. The native Freshsales product object appears limited. Has anyone engineered a workaround using custom fields and composite APIs that remains performant?

```json
// Example of the nested payload we need to map
{
"opportunity_id": "10001",
"currency": "EUR",
"line_items": [
{
"product_code": "PROD-A",
"quantity": 5,
"unit_price": 199.99,
"discount_rule": "BULK_10"
}
]
}
```

**Integration Ecosystem Gaps:**
Freshworks' native marketplace (`Freshworks Marketplace`) has fewer iPaaS connectors compared to Zapier or Workato's offerings for platforms like Salesforce. For those who have built custom middleware integrations (e.g., to NetSuite or a custom provisioning system), what was the development and maintenance burden compared to using pre-built connectors for other CRMs?

I am compiling a detailed rubric scoring these aspects on a scale from 1 (significant, ongoing blockers) to 5 (enterprise-grade). Any insights on actual production behavior—especially around API idiosyncrasies, mandatory workarounds, or performance degradation at scale—would significantly inform our architecture review. Please share any specific metrics you've gathered, such as p99 latency for `GET /api/deals` or observed limitations in their filter query language for reporting.



   
Quote