Teams

Team Routing

Decide which agent picks up, in what order, and what happens when nobody can.


Routing strategies

StrategyBehaviorUse when
PriorityAlways try the top agent firstOne specialist, others as backup
Round-robinEven distribution across agentsIdentical agents at volume
Skill matchScore intent against agent skillsMixed intents on one number
Time windowSchedule-driven assignmentFollow-the-sun coverage

Overflow

If no agent in the team is available, overflow sends the caller to voicemail, a fallback number, or a queue with an estimated wait message.

Example configuration

yaml
team: sales
strategy: skill_match
members:
  - agent: agt_intake
    skills: [pricing, general]
  - agent: agt_enterprise
    skills: [contracts, security]
overflow:
  action: transfer
  number: "+1-555-0142"