AE-BDR Lead Routing

Multi-step workflows managing handoffs between Account Executives and Business Development Representatives across regions and lead sources

MetricValue
Workflows11
Priorityhigh
Grouping Confidence95% — Clear naming pattern and shared routing business logic across all workflows
ConsolidationEliminate multi-step pattern and regional duplicates - consolidate into single routing flow with conditional logic for region, source, and re-enrollment

Workflows in this Group

WorkflowTriggerOutcomeTypeComplexity
Outbound - AE to BDR - Step 2 reassignmentAccount Executive hands off a contact back to Business Development Representative for continued outbound effortsContact ownership and sequence enrollment is reassigned from AE to BDR for step 2 of outbound processRoutingmedium
Outbound - AE to BDR - Step 1 reassignmentAccount Executive identifies a contact that should be reassigned to a Business Development Representative for outbound prospectingContact ownership is transferred from AE to appropriate BDR for initial outreach activitiesRoutingmedium
Outbound - AE to BDR - Step 1 (re-renroll)Contact needs to re-enter the AE to BDR reassignment processContact is re-processed through the AE to BDR handoff workflowRoutingmedium
Outbound - AE to BDR - Step 1 (EMEA)Contact in EMEA region needs reassignment from AE to BDREMEA contacts are properly routed from AE to appropriate regional BDRRoutingmedium
Outbound - AE to BDR - Step 2 (EMEA)Account Executive initiates handoff to Business Development Representative for EMEA region prospectsBDR receives qualified prospect for outbound prospecting sequence continuationRoutingmedium
Outbound - AE to BDR - Step 1 (Event)Event-triggered prospect requires AE to BDR handoffInitiates BDR outreach sequence for event-sourced prospectsRoutingmedium
Outbound - AE to BDR - Step 2 (Event)Continuation of event prospect AE to BDR handoff processCompletes BDR assignment and outreach initiation for event prospectsRoutingmedium
Outbound - AE to BDR - Step 1 (Event Followup)Event followup requires AE to BDR handoffInitiates BDR followup sequence for post-event prospectsRoutingmedium
Outbound - AE to BDR - Step 2 (Event Followup)Continuation of event followup AE to BDR handoff processCompletes BDR assignment for event followup prospectsRoutingmedium
Outbound - AE to BDR - Step 1 (USA) (cloned)Account Executive hands off prospect to Business Development Representative for initial outreachInitiate BDR outbound sequence for USA prospectsRoutinglow
Outbound - AE to BDR - Step 2 (Kiln)Second step in AE to BDR handoff process for Kiln prospectsContinue BDR outbound process for Kiln-specific prospectsRoutinglow

Key fields: hubspot_owner_id

Dependencies: Sales team territory assignments, Lead source classification

Domain Summary

This group manages handoffs between Account Executives and Business Development Representatives across multiple dimensions: geography (USA, EMEA), lead source (Event, Event Followup, Kiln), and process steps. The current architecture suffers from excessive fragmentation with 11 workflows performing essentially the same routing logic with minor variations.

Current Problems

Rearchitecture Approach

Consolidate all routing logic into a single comprehensive flow that uses conditional branching based on region, lead source, and routing step. Replace the artificial two-step pattern with immediate routing decisions. Implement territory-based assignment using Salesforce's native territory management rather than hardcoded regional workflows.

Recommended Automations

AE to BDR Lead Routing

Build PropertyValue
Flow API NameN/A
Flow TypeN/A
Target ObjectN/A
Execution ModeN/A
Priorityhigh
ReusableYes

Purpose: Route contacts from Account Executives to appropriate Business Development Representatives based on territory, lead source, and business rules

Trigger: Contact record update when AE initiates BDR handoff (likely through status change or owner reassignment request)

Entry Criteria Formula: N/A

Logic Overview: Evaluate contact territory (USA/EMEA/other), lead source (Event/Event Followup/Kiln/standard), and current assignment. Apply territory-based BDR assignment rules. Update contact owner, create handoff tasks, and trigger appropriate outreach sequences. Handle re-routing scenarios within same flow.

Replaces: Outbound - AE to BDR - Step 2 reassignment, Outbound - AE to BDR - Step 1 reassignment, Outbound - AE to BDR - Step 1 (re-renroll), Outbound - AE to BDR - Step 1 (EMEA), Outbound - AE to BDR - Step 2 (EMEA), Outbound - AE to BDR - Step 1 (Event), Outbound - AE to BDR - Step 2 (Event), Outbound - AE to BDR - Step 1 (Event Followup), Outbound - AE to BDR - Step 2 (Event Followup), Outbound - AE to BDR - Step 1 (USA) (cloned), Outbound - AE to BDR - Step 2 (Kiln)

Required Fields:

FieldPurposeUsageHubSpot SourceNet New?Migration Note
TerritoryDetermines regional BDR assignment rulesreadLikely derived from contact properties or account territoryNoMap from HubSpot territory logic to Salesforce Territory Management
Lead_Source_DetailIdentifies specific lead source type for specialized routing (Event, Kiln, etc.)readOriginal Source or Lead Source fieldsNoMay need to create picklist values for Event Followup and Kiln categories
BDR_Handoff_StatusTracks handoff process state and prevents duplicate processingbothN/AYesCreate new field to replace multi-step workflow pattern
Previous_Owner_IdMaintains audit trail of AE who initiated handoffwritehubspot_owner_id before reassignmentNoCapture before owner change for reporting and escalation
BDR_Assignment_DateTimestamp for handoff completion and SLA trackingwriteN/AYesEnable performance reporting on handoff process

Migration Sequence

  1. Map HubSpot territory assignment logic to Salesforce Territory Management
  2. Create BDR_Handoff_Status field with appropriate picklist values
  3. Build unified AE to BDR routing flow with all conditional logic
  4. Test routing logic for each source type and region combination
  5. Migrate active handoff processes from multi-step workflows
  6. Deactivate all 11 original workflows after validation period

Architecture Diagram

flowchart TD

A[Contact Update Trigger] --> B{AE Initiates BDR Handoff?}

B -->|No| Z[End]

B -->|Yes| C[Capture Previous Owner]

C --> D{Determine Territory}

D -->|USA| E[USA BDR Assignment Rules]

D -->|EMEA| F[EMEA BDR Assignment Rules]

D -->|Other| G[Default BDR Assignment Rules]

E --> H{Lead Source Type}

F --> H

G --> H

H -->|Event| I[Apply Event-Specific Rules]

H -->|Event Followup| J[Apply Event Followup Rules]

H -->|Kiln| K[Apply Kiln-Specific Rules]

H -->|Standard| L[Apply Standard Rules]

I --> M[Assign to Target BDR]

J --> M

K --> M

L --> M

M --> N[Update Handoff Status]

N --> O[Create Handoff Task]

O --> P[Trigger BDR Outreach Sequence]

P --&gt; Q[End - Success]</code></pre>