Practice Operations
The Pre-Visit Task List That Nobody Finishes
Forms, insurance updates, and prep instructions all come due before the visit. Why the pre-visit task list stalls in multi-specialty groups and how to close it.
Every scheduled appointment carries a pre-visit task list, and in most multi-specialty groups it is finished by the patient about half the time. The insurance on file is a year old. The health history form was sent and never opened. The prep instructions for the procedure went to an email address the patient stopped using.
None of these are hard problems on their own. They are hard because they are due at different times, they arrive from different departments, and the only person who can complete them is the patient, who has no reason to think about the visit until the day before.
So the work collapses onto the morning of, where it is most expensive. A front desk staffer is now re-keying an insurance card while three people wait behind that patient, and a clinical assistant is chasing a form that should have been done a week earlier. The visit still happens. It just costs more and runs late, and some of it comes back later as a denied claim.
This is the phone work that already dominates the day
The tasks on the list are not incidental. They are the same categories that already consume front-office phone time.
A March 2026 MGMA Stat poll asked practice leaders which phone work was most time-intensive for their staff. Eligibility and prior authorization came first at 45%, scheduling second at 31%, and intake at 9%. The top category is precisely the pre-visit task nobody wants to do twice.
That ranking is worth sitting with, because it says the expensive work is verification, not booking. Booking is a single transaction. Verification is a chase: an attempt, a voicemail, a callback, a card image that arrives sideways, a plan that turns out to have terminated.
When that chase starts the morning of the visit, there is no time to resolve anything. When it starts a week out, an ineligible plan is a phone call and a corrected record rather than a cancelled appointment or a claim written off.
The list is really three lists on three clocks
Treating pre-visit work as one reminder is the structural mistake, because the items do not share a deadline.
Insurance and demographics have the longest runway and the highest financial consequence. These can be worked as soon as the appointment is booked, and they benefit from being worked early because a problem found early is fixable. Reading coverage on file through GET /patients/{patientid}/insurances and running the eligibility check gives you a real answer rather than a guess about whether the card in the chart still works.
Forms sit in the middle. Health history, review of systems, and consent packets need enough lead time for a patient to actually sit down with them, which is days, not hours. GET /healthhistoryforms tells you which are outstanding for that patient rather than sending everyone the full packet again.
Prep instructions are last and most time-sensitive. Fasting, medication hold, arrival time, what to bring, who can drive you home. Sent too early they are forgotten, and sent too late they are useless. These belong in the final forty-eight hours and they are appointment-type specific, which is why a generic reminder cannot carry them.
The complication: the lead-time rule that already governs this
Most multi-specialty groups already run two different minimum-lead-time rules, and they exist because of exactly this problem.
New patients typically cannot book inside three or four business days, specifically so the registration and form work has time to complete. Established patients can usually book next business day, because their record is already built. The rules are correct, and they are also the reason the pre-visit list is uneven: a new patient has a runway by design, while an established patient booked yesterday afternoon for tomorrow has almost none.
Automation that ignores this sends the same seven-day sequence to both and looks broken to everyone. The version that works reads the interval between booking and appointment and compresses the sequence to fit. A patient with nine days gets insurance first, forms on day three, prep at forty-eight hours. A patient with one day gets one contact that carries only what is genuinely blocking: the card, and the prep instruction that determines whether the visit can proceed.
The handoff is where the compression runs out. Some outstanding items cannot be resolved by the patient at all: a referral that has not arrived, a prior authorization that has not returned, an ineligible plan that needs a coverage conversation. When one of those is still open and the appointment is inside the window, the automation stops and routes a case to the right department bucket, carrying the appointment, the gap, and the attempts already logged. Nobody should learn about a missing authorization from the patient standing at the desk.
Reminders fire on the first appointment, not the visit
There is a second failure that hits multi-specialty groups harder than anyone else, and it is easy to miss because the reminder system reports success.
Native EHR reminders fire against a single appointment. A patient with an 8:15 lab draw and a 9:00 provider visit is one patient with one visit in their head and two appointments in the schedule. They get reminded about the chronologically first one and can arrive having prepared for the wrong thing, or skip the second entirely because they believed they were done.
The pre-visit task list has the same shape. Prep instructions attached to the provider visit will not reach a patient who only ever sees the lab reminder. Reading the patient’s full appointment set for that day through GET /appointments/booked, then building one message that covers the whole day in order, is the difference between a reminder that is technically sent and one that is operationally true.
This is a routine day in a multi-specialty group, not an edge case. Imaging before the provider, labs before the follow-up, a clearance visit before a procedure. If your reminder logic is per appointment, a large share of your most complex patients are being told half of what they need.
What to measure, and the number that will surprise you
Almost no group can state its pre-visit completion rate, which is why the work never gets prioritized against anything else.
Start with the share of appointments arriving with insurance verified, forms complete, and prep acknowledged, measured the day before rather than after the visit. Break it out by department, because a procedural department and a primary care department will not resemble each other and averaging them hides both.
Then track what the incompletes cost. Front-desk minutes spent on registration at arrival, appointments that started late, and claims denied for eligibility reasons that were knowable a week earlier. That last one is the number that moves a budget conversation, because it is money already earned and then lost to a task that took four minutes.
Access pressure makes the case on its own. MGMA reported in 2026 that 46% of medical groups said new-patient appointment wait times had stayed the same year to date, while 28% said waits were longer. A group under that kind of demand cannot afford visits that run long because paperwork moved to the morning of, or slots given up because a patient arrived unprepared for a procedure.
Key Takeaways
- Split the pre-visit list into three clocks. Insurance and demographics on booking, forms with days of runway, prep instructions inside forty-eight hours.
- Work eligibility early enough that a terminated plan is a phone call rather than a cancelled appointment or a written-off claim.
- Read the booking-to-appointment interval and compress the sequence to fit. A patient with one day and a patient with nine cannot get the same schedule.
- Send one message covering the patient’s whole day, not one per appointment. Per-appointment reminders systematically under-inform your most complex patients.
- Ask only for what is outstanding. Re-sending a full packet to a patient who completed half of it is how you train people to ignore you.
- Route the items a patient cannot fix themselves to a department bucket with the appointment and attempt history attached, before the day of the visit.
- Measure completion the day before, by department, and track denials for eligibility reasons that were knowable a week out.
The pre-visit task list is the clearest case in the front office of work that is cheap early and expensive late. Nothing on it is difficult. It stays unfinished because it requires contacting the right patient about the right item at the right distance from an appointment, across every department, every day, and no staffing level makes that consistent. An AI team working scheduled appointments inside athenaOne can run the three clocks against what is actually outstanding on each chart, cover the patient’s full day in one contact, and hand the exceptions to the right bucket while there is still time to fix them.
Related reading
- where insurance verification time actually goes
- new patient registration that actually completes
- filling the slot a cancellation just opened
Sources
Ready to See It in Action?
See how PGA closes pre-visit tasks before the patient arrives inside athenaOne
Schedule a Demo →Written by Kevin Henrikson