AI & Automation

Why New-Business Submissions Stall at Underwriting in 2026

Jun 17, 2026

A producer wins a new commercial account, sends the submission in, and then... waits. The submission sits in a shared inbox until someone decides which underwriter handles that class, that state, that premium band. It gets forwarded once, maybe twice, sometimes to the wrong desk, where it waits again before being bounced. By the time it reaches the right underwriter, the prospect has cooled and a competitor with a faster intake has already quoted. The deal was not lost on price; it was lost in routing.

Automating submission routing means a new-business submission lands and is immediately classified — line of business, state, premium size, appetite match — and routed to the correct underwriter with the right documents attached, without a human triaging the queue. This guide explains why submissions stall and how to build the routing layer that ends it. It is written for agencies and MGAs that already run a management system (Applied Epic, Vertafore AMS360, or similar) and feel the drag of manual intake.

TL;DR: Capture the submission, classify it against appetite and routing rules, attach the required docs, and assign the right underwriter automatically — with an exception queue for the edge cases. Bind times fall and submissions stop dying in the inbox.

Submission routing is simply the process of getting each new-business application to the underwriter who can actually quote it — and "stall" is what happens when that process is manual.

Who This Is For

This fits independent agencies, wholesalers, and MGAs writing commercial P&C with 10 to 200 staff and enough submission volume that manual triage has become a bottleneck. It is most valuable when you write multiple lines across multiple states, because that is where routing rules multiply and humans guess wrong.

Red flags — skip if: you write a single personal line through one carrier; you handle fewer than 20 submissions a month that one person triages in minutes; or your shop has no management system with an API. Below that volume, manual routing is faster than building the automation.

The market this serves is enormous. US P&C direct written premiums: $1.07T in 2024 according to the Insurance Information Institute (2025) — and independent agencies compete for that premium largely on speed of response, which routing directly controls.

Why Submissions Stall

Routing failures are not random; they cluster around a handful of structural gaps.

Stall pointWhat goes wrongEffect on bind time
No classificationSubmission unsorted by line/stateSits until manually triaged
Wrong-desk routingSent to underwriter outside appetiteBounced, re-routed, delayed
Missing documentsLoss runs / ACORD forms absentUnderwriter requests, waits
No ownerShared inbox, diffused responsibilityNobody acts, ages silently
Manual prioritizationBig accounts buried under smallHigh-value deals delayed

Every row is a place where a human decision inserts latency. The fix is to make the routing deterministic: rules decide, humans handle exceptions.

The independent channel has real volume at stake here. Independent agency commercial P&C share: roughly 87% according to the Big "I" (2024), meaning the bulk of commercial submissions in the country flow through exactly the channel where manual triage creates the worst delays.

A Quick Glossary

Submission routing carries its own shorthand; here is how this guide uses each term.

TermWhat it means here
SubmissionA new-business application sent in for a quote
AppetiteThe classes, states, and premium bands a carrier will write
TriageThe manual sorting of submissions before assignment
ACORDThe standardized insurance application forms
Loss runsA prospect's prior claims history, required to quote
Exception queueWhere ambiguous submissions route for human review
BindThe point at which coverage is committed

With the vocabulary set, here is the six-step build.

Step 1: Capture the Submission Consistently

Submissions arrive in chaos — email attachments, broker portals, faxed ACORDs. The first step is to normalize intake into a single structured record: applicant, line of business, state, requested effective date, premium estimate. Until the submission is structured data rather than an email, nothing downstream can route it.

The extraction step is where most of the manual time hides. A producer or assistant currently reads each submission, opens the ACORD PDF, and retypes the applicant name, FEIN, classification codes, and exposure data into the management system. This is slow, error-prone, and the single biggest contributor to intake latency. Automated document extraction reads the structured ACORD forms directly and populates the record, leaving a human to confirm rather than transcribe. The accuracy gain matters as much as the speed: a misread classification code routes the submission to the wrong appetite and starts the bounce cycle, so extracting cleanly at intake prevents errors that would otherwise cascade through every later step.

Average new-business intake time: 30-45 minutes manual according to McKinsey (2023) on insurance operations — most of which is the data extraction this step automates away. The competitive cost of slow intake is well documented: the carrier that quotes first wins a disproportionate share of business according to Deloitte (2023), because speed signals capability to the producer placing the risk.

Step 2: Classify Against Appetite

Now match the submission to your carriers' and underwriters' appetite: which lines, classes, states, and premium bands each can write. This classification is the routing decision. Encode the appetite once as rules, and every submission gets scored against them instantly instead of an account manager remembering which underwriter likes which risk.

A simplified appetite rules table makes the logic concrete. Each row maps a submission's attributes to a destination:

LineStates in appetitePremium bandTarget route time
General liability2 (TX, OK)Under $50K<5 min
General liability2 (TX, OK)$50K+<5 min
Commercial property50 (all)Under $100K<5 min
Commercial property50 (all)$100K+<10 min
Commercial auto1 (CA)Any<5 min
Anything0 (out of appetite)Any<15 min (human triage)

The last row is the safety net: anything the rules do not explicitly cover goes to a human rather than a wrong desk. Encode this table once, and every submission is scored against it in milliseconds — the same decision an account manager makes from memory, but instant and consistent.

Step 3: Attach Required Documents Automatically

A submission routed without loss runs, the ACORD application, and supporting schedules just bounces back with a request. Automate the document check: the routing layer confirms the required artifacts for that line and state are present, and flags the gap before the submission reaches the underwriter, not after.

Different lines need different document sets, so the check is line-aware. A commercial property submission needs a SOV (statement of values); a workers' comp submission needs an experience mod and payroll by class; commercial auto needs a driver schedule and MVRs. Encode the required-document checklist per line so the validation knows what "complete" means for each. When a document is missing, the system should request the specific item from the producer by name — "loss runs for the prior three years" — rather than a vague "submission incomplete," because a precise request gets a faster, correct response and saves the back-and-forth that delays binding.

US Tech Automations runs this as part of the routing flow — when a submission record is created, the platform validates the document set against the line-of-business requirements, requests any missing loss runs from the producer automatically, and only releases the submission to underwriting once it is complete. The underwriter receives a quote-ready package instead of a fragment that needs three follow-ups.

Step 4: Route to the Right Underwriter

With classification and documents in hand, assignment is deterministic: the submission goes to the underwriter whose appetite and capacity match, with high-premium accounts prioritized. US Tech Automations reads the classified submission, applies your routing rules, and writes the assignment directly into Applied Epic or AMS360 with the producer, documents, and effective date attached — so the underwriter opens a complete file with an owner already set, rather than fishing a fragment out of a shared queue. This is the orchestration layer working above your management system, not replacing it. You can see how these routing flows are built on the agentic workflows platform.

Step 5: Build an Exception Queue

No rule set covers every submission. The 5-10% that do not classify cleanly — unusual classes, multi-state complexity, appetite ambiguity — route to a human triage queue rather than guessing. This is what makes automation safe: it handles the deterministic majority and escalates the genuine edge cases instead of forcing a bad assignment. The room for improvement is large: a majority of insurers still rate their submission intake as largely manual according to Accenture (2023), so even partial automation moves you ahead of most of the market.

Step 6: Measure Cycle Time

Track submission-to-assignment time, assignment accuracy (how often a routed submission is bounced as wrong-desk), and exception-queue volume. A rising bounce rate means your appetite rules are stale; a growing exception queue means a new line or carrier needs encoding. These metrics keep the routing honest as your book changes.

MetricManual baselineAfter automationImprovement
Submission-to-assignment time6.5 hrs<40 min~90% faster
Wrong-desk routing rate18%4%~78% lower
Exception-queue volume~95/mo~28/mo~70% lower
Submissions handled per FTE~120/mo~340/mo~2.8x

Worked Example

Consider a wholesale brokerage handling about 340 new-business submissions a month across general liability, property, and commercial auto in 14 states. Manual triage took an average of 6.5 hours from inbox to underwriter assignment, and roughly 18% were initially routed to the wrong desk. They wired intake so each submission created an account.submission record in Applied Epic, classified it against a rules table covering 9 carrier appetites, validated the document set, and auto-assigned. Within two months the submission-to-assignment time dropped from 6.5 hours to under 40 minutes, wrong-desk routing fell to 4%, and the exception queue settled at about 28 submissions a month — the genuinely ambiguous ones a human should see anyway.

Key Takeaways

  • New-business submissions stall in routing, not pricing — they wait in inboxes for someone to classify and assign them.

  • Automated routing captures the submission as structured data, classifies it against appetite, attaches required docs, and assigns the right underwriter.

  • Validate documents before the submission reaches underwriting so it arrives quote-ready, not as a fragment.

  • Build an exception queue for the 5-10% of submissions that do not classify cleanly — automate the majority, escalate the edge cases.

  • Measure submission-to-assignment time and wrong-desk bounce rate to keep routing rules current.

Comparison: Management Systems vs Orchestration

Agency management systems are the system of record; they are not built to triage and route incoming submissions across appetite rules. That gap is where an orchestration layer sits.

CapabilityApplied EpicVertafore AMS360US Tech Automations
System of recordYesYesReads/writes both
Structured submission intakeManual entryManual entryAutomated extraction
Appetite-based classificationNoNoYes, rules-driven
Document completeness checkManualManualAutomated
Auto-assignment to underwriterLimitedLimitedYes, rules-driven
Typical assignment timeHoursHoursMinutes

Applied Epic and AMS360 win decisively as the system of record — their policy, accounting, and compliance depth is exactly what you want a management system to own, and you should not try to replace them. They are also the right answer if your submission volume is low enough that a person triages everything in minutes; an orchestration layer would be overhead.

When NOT to use US Tech Automations

If you write a single line through one carrier and a producer triages every submission in under five minutes, automated routing is solving a non-problem — keep it manual. If your management system already auto-assigns submissions adequately for your volume, adding an orchestration layer is redundant cost. And if your appetite changes weekly in ways no rules table can keep up with, the maintenance burden of the rules may outweigh the routing savings until your book stabilizes.

Frequently Asked Questions

Why do new-business submissions take so long to reach an underwriter?

Because routing is usually manual: the submission sits in a shared inbox until someone classifies it by line, state, and premium, then forwards it — sometimes to the wrong desk, where it bounces and waits again. The delay is in the triage, not the underwriting. Automating classification and assignment removes that latency.

Can I automate routing without replacing Applied Epic or AMS360?

Yes — and you should not replace them. An orchestration layer reads incoming submissions, classifies and routes them, and writes the assignment back into Epic or AMS360. Your management system stays the system of record; the automation just feeds it complete, correctly-routed files. See the how-to guide on routing new-business submissions for the step detail.

What happens to submissions that do not fit the routing rules?

They route to a human exception queue rather than getting a forced (and likely wrong) assignment. A well-designed system handles the deterministic 90% automatically and escalates the genuinely ambiguous cases — unusual classes, multi-state complexity — to an experienced triager. That is what keeps automation safe.

How does document checking work?

The routing layer knows which artifacts each line and state require — loss runs, the ACORD application, supporting schedules — and confirms they are present before releasing the submission. If something is missing, it requests it from the producer automatically, so the underwriter never receives an incomplete file. For MGA-specific binding flows see automate MGA carrier submissions and binding.

Will faster routing actually win more business?

Independent agencies compete heavily on response speed, so cutting submission-to-quote time materially improves hit ratios on competitive accounts. The prospect who gets a quote first, all else equal, usually binds. The ROI shows up in retention and win rate, not just operational hours — see insurance automated quoting and proposals ROI analysis.

How long does the average claim or quote cycle improve?

Routing automation targets the front of the cycle — getting the submission to the right desk fast. Auto P&C average claim cycle time: 14-20 days according to the NAIC (2024) for context on how operational speed compounds across the policy lifecycle; the same discipline applied to intake is what shortens time-to-quote. For the pain-side framing see insurance automated quoting and proposals pain-solution.

End the Inbox Bottleneck

Submissions do not stall because underwriters are slow — they stall because a human has to decide where each one goes before anyone can act. Make that decision deterministic: capture, classify, attach, assign, and escalate only the exceptions. When you are ready to route new-business submissions to the right underwriter automatically, compare plans on the US Tech Automations pricing page.

About the Author

Garrett Mullins
Garrett Mullins
Workflow Specialist

Helping businesses leverage automation for operational efficiency.

From our research desk: sealed building-permit data across 8 metros, updated monthly.