Reading view

We built an AI-native CRM, then mostly stopped saying "AI" in sales calls. Here's why

Some of you might remember a post I wrote about capping our CRM pricing at CHF 350/month flat. Buried in it was one line that got more DMs than the pricing itself: that predictability resonated with our buyers more than any AI capability we led with. A few people asked what I meant by that, so here is the longer version.

Quick context: I spent about 12 years building software inside Swiss regulated banks before leaving to build an AI-native CRM for German-speaking SMEs. And I mean AI-native literally. The product's whole reason to exist is that the AI does the CRM work people hate: logging activity, keeping records current, drafting follow-ups, surfacing what needs attention. Take that away and there is no product.

So naturally, our early pitch led with it. AI-native CRM, intelligent automation, the whole vocabulary. And in demo after demo with our actual buyers, conservative Swiss and DACH SMEs, it landed with polite nodding and no second meeting.

It took me embarrassingly long to understand why. For this buyer, "AI" is not a capability claim. It is a risk claim. It translates to: my data goes somewhere I can't see, the vendor will change things under me, and my industry association just sent a newsletter warning about exactly this. These are firms that kept their accounting software for fifteen years because it never surprised them. Leading with AI meant opening every conversation with the thing they were most skeptical of.

What we changed: we stopped describing the technology and started describing the Tuesday evening. Nobody types meeting notes into a database at 7pm anymore. Your pipeline is current without anyone maintaining it. Same product, zero mystery vocabulary. And we moved data residency, auditability, and "here is exactly where your data lives" from the compliance footnote to the second slide, because it turned out that was the real question hiding behind the AI skepticism all along. My banking years finally paid off there; I can talk about audit trails with genuine enthusiasm, which is a strange superpower.

What happened: conversations got longer and more concrete. Instead of debating whether AI is trustworthy in the abstract, we were debating whether our tool fits their process, which is a discussion you can actually win. Interestingly, once trust was established, customers started asking about the AI themselves, on their terms. The feature didn't change. The sequence did.

The honest cost: our marketing and our sales pitch have split personalities. In search and directories, "AI CRM" is the category people look for, so our website has to say the words our sales calls avoid. And there is a real risk that as AI normalizes over the next few years, the vendors who shouted it loudest early will own the category label while we deliberately whispered. That trade-off is not settled, and it is the part I second-guess.

What I would do differently: I would have talked to our buyers' actual objections before writing a single line of positioning, instead of importing the vocabulary of the SaaS bubble I was reading. The market told us within ten demos. I just needed three months to listen.

Curious about others selling AI products into AI-skeptical or conservative markets: do you lead with the technology or bury it? And has anyone seen the "whisper strategy" backfire once the market caught up?

(Disclosure: I'm the founder of Uliasti, the team behind the product: Advanzo. Happy to go deeper in the comments.)

submitted by /u/dejangeorgiev
[link] [comments]
  •  

What building a backend integration for a CRM analytics product taught me about how fragile these platforms actually are

Spent the last 7 months building the integration layer behind an analytics product that connects to a CRM platform, the part that authenticates, pulls historical data, and keeps everything in sync in real time. Wanted to share a few things that surprised me, since most of this never shows up unless you're the one building underneath it.

The biggest one: pagination silently changed strategy partway through large data pulls. The API would start with page-based pagination and switch to cursor-based mid-sync, with nothing announcing it happened. My first sync just quietly dropped records for a week before the counts stopped adding up and I went looking.

Webhooks lied too, in a specific way. An event would fire, I'd go fetch the record it pointed to, and it wouldn't be there yet. The API lagged behind its own webhook system by a beat. Fixed it with a short deliberate delay before the fetch instead of retrying immediately, which just hammered an endpoint that wasn't ready.

Billing got weirder than expected once it wasn't per-user. When access is billed per account rather than per person, you get real scenarios most billing integrations don't plan for: two team members trying to pay for the same thing at once, a payer's card failing on renewal, responsibility shifting from one person to another without anyone losing access mid-transition.

None of this is visible from the outside. As a CRM user you just experience "the integration is being weird again" with no idea why. Usually it's not that the platform is broken, it's that these tools grow faster than their APIs get documented, and things quietly shift underneath the surface.

Curious if others managing CRM integrations have run into similar flakiness, pagination inconsistency, webhook timing issues, or anything else that only shows up once you're deep in the plumbing.

submitted by /u/xm7z1234
[link] [comments]
  •  
❌