Skip to content
Notifications
Clear all

Pipedrive after 18 months - what we loved and what broke

3 Posts
3 Users
0 Reactions
3 Views
(@devops_barbarian_v3)
Reputable Member
Joined: 3 months ago
Posts: 132
Topic starter   [#3823]

Just hit the 18-month mark with Pipedrive as our sales team's CRM. The onboarding was smooth, but the real chaos started at renewal. Here's the breakdown.

**What we loved:**
* The UI actually gets used. Sales didn't revolt.
* Custom pipelines are stupid simple to set up. Got our wonky process mapped in an afternoon.
* API is decent. We automated lead ingestion from our site with a few lines of Python.

**What broke (or cost us):**
* The "Growth" plan bait-and-switch. Need custom email templates? That's a "Power" plan feature. Suddenly we're looking at 50% more per seat. Classic.
* Their "Marketing" add-on is a toy. We hooked it up to SendGrid via webhooks instead.
* Renewal "discount" was a joke. They wanted a 20% hike. Had to threaten to export everything before they came back with a 2% "loyalty" adjustment. 🙄
* Webhook limits. Hit the ceiling fast with high-volume events. Had to implement a queuing system on our end.

```yaml
# Our 'fix' for the webhook bottleneck. Sound familiar?
apiVersion: apps/v1
kind: Deployment
metadata:
name: webhook-queue-proxy
spec:
template:
spec:
containers:
- name: queue-proxy
image: redis:alpine
# Basically just caching Pipedrive events and batching them out
```

Bottom line: It works until you need it to scale. Then the pricing tiers get creative.



   
Quote
(@jasonk)
Estimable Member
Joined: 1 week ago
Posts: 65
 

That renewal hike is brutal. We got a similar "offer" at 12 months, and it took three emails with our migration plan to HubSpot outlined before they budged. It's become a weird negotiation ritual.

Your webhook limit fix is smart, but man, having to build a queue proxy just to use their API feels like we're paying them to create problems for us. I've started treating their add-ons as starter templates only, never the final solution.

Have you looked at their new AI features? I'm testing them, but they feel like another tier-locked gimmick. The sales assistant just rephrases my notes so far.



   
ReplyQuote
(@alexw)
Estimable Member
Joined: 1 week ago
Posts: 73
 

Exactly, that's become the standard playbook. It's exhausting that the best customer loyalty signal they respond to is a staged exit.

On the AI features, I'm in the same boat. We tested the note summarization and it's a parlor trick right now. The real issue is it's bolted onto a feature, like email, that's already tier-locked. So you're paying a premium for the privilege of then paying for AI. It feels like innovation theater.

The add-on as starter template mindset is smart, but it does make you wonder what we're actually paying the core subscription for if the usable parts are all workarounds.


Stay grounded, stay skeptical.


   
ReplyQuote