GTM Infrastructure

Route Enterprise vs SMB Leads to Different Reps Without a Salesforce Enterprise License

The question I get from teams on HubSpot or a lightweight CRM is some version of: do we have to buy Salesforce Enterprise to send enterprise leads to one team and SMB to another? No. The expensive SKU buys you native round-robin, queues, and capacity logic - real features, but not the thing you are asking for. Segment routing is an if/then on a field, and almost every CRM already does it. This is the routing companion to the signal-scoring pipeline: the score decides priority, the segment decides who works it.

Derive the segment once, route on it everywhere

The mistake that makes routing feel like it needs expensive tooling is re-deriving the segment inside every workflow - one place checks employee count, another checks revenue, they disagree, and the logic sprawls. Compute it once. At enrichment, set a single field to Enterprise, Mid-Market, or SMB based on your bands, and have every downstream workflow read that one field. Enrich on contact create - the enrichment webhook is exactly this - and the segment is decided before the lead is ever routed.

The routing workflow

With a clean segment field, the workflow is short. Branch on the segment and assign to the matching team or owner. Before any assignment, check whether the company is already owned, so a routing rule never poaches an account a rep is already working. And give missing data its own branch instead of letting it fall through to a default that happens to be wrong. Three checks - owned already, what segment, who gets it - and you have differentiated routing without a single premium feature.

Fallbacks and the no-data branch

Routing breaks at the edges, not the center, so spend your care there. A lead with no firmographics is not SMB - it is unknown, and unknown is its own path: hold it, enrich it, re-route it, or hand it to a human. Never silently default-bucket a blank, because the lead most likely to lack tidy data on first touch is often the large, messy enterprise account you least want in the SMB queue. The fallback branch is cheap to build and expensive to skip.

Where native routing runs out

If/then segment routing carries you a long way. You outgrow it when you need weighted round-robin inside a segment, hard capacity caps per rep, or instant re-assignment when a rep does not act - the things a 5-minute speed-to-lead SLA demands at volume. That is the point to add a routing layer or build one. GTM OS is the hosted version that runs it from one place; the Operator Playbook has the skills to wire the branching into your CRM; and a StackScan audit will tell you whether you are paying for routing features you have not actually outgrown.

Frequently asked questions

Do I need Salesforce Enterprise to route by segment?

No. Sending enterprise to one team and SMB to another is an if/then on a field - employee count, revenue band, plan tier - plus an assignment action. HubSpot workflows do it on lower tiers, and so do most modern CRMs. You hit the paywall for native round-robin and complex queues, not for basic segment branching.

What field do you route on?

The cleanest setup is a single derived segment field - Enterprise, Mid-Market, or SMB - computed from employee count or revenue at enrichment time, so routing reads one tidy field instead of re-deriving the bands in every workflow. Enrich on create with a webhook and the segment is set before routing runs.

How do you handle a lead with no firmographic data?

Route unknowns to a holding queue or a default owner, never silently drop them. A lead with no employee count is not SMB by default - treat missing data as its own branch that gets enriched and re-routed, or that a human triages. Defaulting blanks into SMB is how enterprise leads end up in the wrong rep's queue.

When do you actually need heavier routing tooling?

When you need weighted round-robin inside a segment, capacity caps per rep, instant re-routing on no-action, or auditable multi-step queues. That is where a routing layer or the Salesforce SKU earns its cost - but most teams reach for it long before they have outgrown if/then branching.