Knowledge · Business Operations

    Routing and Assignment Rules

    Who gets the lead, who owns the job, and what happens when nobody picks it up. How to design routing rules that survive vacations, volume and disputes.

    What is an assignment rule?

    An assignment rule decides which person or queue becomes responsible for a record the moment it arrives. Good routing produces exactly one accountable owner, a visible timestamp, and an escalation path if that owner does nothing. Everything else — round robin, territory, skill — is just the method of choosing.

    Key takeaways

    • One owner per record. Shared ownership is no ownership.
    • Routing to a queue is legitimate, as long as something escalates unclaimed work.
    • Every assignment starts a clock; the clock is the point.
    • Reassignment must be recorded, not silently overwritten.
    • Routing rules break at the edges: after hours, holidays, full pipelines.

    The four common routing methods

    • Round robin: fairest for volume, blind to fit. Good default for uniform work.
    • Territory: routes by geography. Predictable, but breaks on edge postcodes.
    • Skill or trade: routes by capability. Best quality of fit, hardest to maintain.
    • Queue and claim: routes to a pool, first available takes it. Fast, needs an escalation timer.

    The rule people forget: unclaimed work

    Most routing failures are not mis-routing. They are silent non-response — the lead went to the right person, and that person was on a roof. Without a timer, nobody finds out until the customer books with someone else.

    The fix is boring and effective: assignment starts a countdown, and if the record is still untouched at the threshold, it escalates to a manager or returns to the pool. This has to be a scheduled check, because the failure is an absence of activity.

    Reassignment as a first-class event

    When work changes hands, three things must be true: the previous owner is recorded, the new owner is notified, and the response clock restarts. Overwriting the owner field silently destroys the ability to answer 'how long did this actually sit?' and makes performance conversations unwinnable.

    Treat reassignment as its own event, distinct from initial assignment, so you can build different rules for each. A new lead deserves a welcome; a reassigned one deserves context.

    Edge cases that break routing

    • After-hours arrivals with nobody rostered to receive them.
    • The assignee is on holiday and the rule does not know it.
    • A single high-performer absorbing everything because the rule is availability-blind.
    • Duplicate submissions creating two records routed to two people.
    • Records that are assigned to a role that no longer exists.

    Where URBLD fits

    URBLD routes through rules that can match the target workstation, the assigned user and the record's status, and can act by assigning, notifying the team, creating a task or updating the record. A scheduled sweep detects records left unassigned beyond a configured number of minutes and emits an escalation event, keeping state so the same record is not raised repeatedly.

    Principles reinforced

    This page rests on the following foundational ideas.

    FAQ

    Frequently Asked Questions

    Straight answers about how URBLD runs the business end-to-end.

    More in Business Operations

    The daily mechanics: workflows, checklists, scheduling and handoffs.

    Browse Business Operations
    Share this page