Rep Matching

When your agent needs a sales rep near a lead, it uses search_humans in people search mode. The title_filters parameter supports boolean syntax — AND, OR, and NOT — to narrow results to the right person.

Basic syntax

title_filters: "sales AND SaaS"

This finds people whose title contains both “sales” and “SaaS”. The operators:

OperatorMeaningExample
ANDBoth terms must appear"sales AND enterprise"
OREither term can appear"engineer OR developer"
NOTExclude a term"sales NOT intern"

You can combine them: "sales AND SaaS NOT intern NOT junior".

Industry-specific patterns

SaaS / Tech

1// Enterprise AE
2await search_humans({
3 location: "San Francisco",
4 title_filters: "account executive AND enterprise"
5});
6
7// Sales engineer for technical demos
8await search_humans({
9 location: "Austin",
10 title_filters: "sales engineer AND SaaS"
11});

Financial services

1// Relationship manager
2await search_humans({
3 location: "New York",
4 title_filters: "relationship manager AND banking"
5});
6
7// Wealth advisor
8await search_humans({
9 location: "Miami",
10 title_filters: "wealth AND advisor NOT assistant"
11});

Retail / CPG

1// Regional sales manager
2await search_humans({
3 location: "Atlanta",
4 title_filters: "sales AND retail AND manager"
5});
6
7// Brand representative
8await search_humans({
9 location: "Los Angeles",
10 title_filters: "brand AND representative OR ambassador"
11});

Healthcare

1// Medical device sales
2await search_humans({
3 location: "Boston",
4 title_filters: "sales AND medical device NOT intern"
5});

Tips for better matches

  • Be specific with location. "New York" is better than "East Coast". The system searches for reps in and around the given city.
  • Use NOT to filter noise. Exclude intern, junior, assistant to focus on decision-makers and experienced reps.
  • Combine seniority with function. "director AND sales" is more targeted than just "sales".
  • Use provide_email. Set provide_email: true to get the rep’s email — you’ll need it for send_meeting_invite.

Matching rep to lead

The best rep matches depend on the lead’s profile:

Lead typeRep filterWhy
C-suite executive"director AND sales OR VP"Seniority match builds credibility
Technical buyer"sales engineer AND SaaS"Can speak to product details
Regional retailer"sales AND retail AND manager"Understands the channel
Startup founder"account executive AND startup"Relatable background

Your agent should read the lead’s bio from search_humans and pick a title_filters query that produces a relevant match.