Practice Operations
Recurring Appointment Series and the Cancellation Cascade
A recurring appointment series is one object to the patient and many rows to the schedule. One cancellation can unpick months of standing slots nobody rebuilds.
A recurring appointment series is one thing to the patient and a stack of unrelated rows to the schedule. That mismatch is why a single cancellation in a behavioral health practice can quietly unpick months of standing slots that nobody ever rebuilds.
Most of a behavioral health calendar is not made of individual bookings. It is made of standing arrangements: the same patient, the same provider, the same time, week after week, for as long as the episode runs.
The schedule does not model that. It holds a set of appointments that happen to repeat, and it has no opinion about what should happen to the rest when one of them moves.
So a patient cancels a Tuesday. The scheduler moves that one appointment to Thursday. Now the patient has a Thursday that week and Tuesdays after it, which they will not remember. When they miss the next Tuesday it looks like a no-show rather than the consequence of a change made three weeks earlier.
Meanwhile the vacated Tuesday slot sits empty, in a practice with a waitlist, because filling it means finding a patient who fits a standing arrangement rather than a one-off opening.
No-shows are the stated priority, and series are where they concentrate
Practice leaders are already pointing at this problem, though usually not by this name.
Asked about their top patient access focus for 2026, 27% of 236 respondents in an MGMA Stat poll chose no-shows, ahead of online scheduling at 24% and phone access at 22%, with wait times at 21%. It is the single largest access concern in the field.
In a specialty built on recurring visits, a meaningful share of those misses are not really attendance failures. They are sequence failures. The patient believed the arrangement had changed, or believed it had not, and the schedule contained no object that could tell them either way.
That distinction matters because the two problems have different fixes. Attendance failures respond to reminders and, sometimes, to fees. Sequence failures respond only to treating the series as a unit, and no amount of reminding fixes a calendar the patient has already mentally rewritten.
The complication: moving one visit is never one write
The mechanics of a reschedule are where the cascade actually starts, and they are less forgiving than they look.
Reading GET /patients/{patientid}/appointments returns the patient’s upcoming appointments, which is how an automation discovers that the visit in front of it belongs to a pattern rather than standing alone. That read is the difference between moving an appointment and moving a series, and it has to happen before anything is offered to the patient.
Then the question that has to be asked out loud: is this one week only, or from now on. Those produce completely different operations. The first is a single PUT /appointments/{appointmentid}/reschedule. The second is a rebuild of every remaining appointment plus the release of a standing slot the provider will now have open every week.
Staff skip that question constantly, because in the moment the patient just wants to move next Tuesday and asking feels like friction. The cost lands weeks later.
There is a mechanical trap underneath as well. When a slot is converted from one type to another and the duration changes, the neighbouring slots have to be frozen or deleted to make room. An automation rebuilding a series into differently sized openings has to account for the neighbours or it produces overlaps that surface at the morning huddle.
The handoff is any move the automation cannot complete cleanly: no equivalent slot inside the required interval, a series that would need to change provider, or a patient asking for a permanent change that leaves a standing slot unfilled. Those go to a scheduler with the full series and the candidate slots attached.
The vacated standing slot is the asset, and it decays fast
Losing the series is one cost. Losing the slot is the other, and it is the one nobody tracks.
A standing weekly slot released mid-episode is unusually valuable, because it is exactly what the patients on an intake waitlist need. It is also unusually hard to fill by hand, since the right candidate is not whoever is at the top of the list but whoever can commit to that day and time, with that provider, on that service line.
That is a filter, not a queue, and running it manually against a phone queue is not realistic. Which is why in most practices these slots convert into permanent empty space in the template rather than into a booked patient.
Fees are the common alternative response and they treat a different problem. A Jan. 7, 2025, MGMA Stat poll of 622 applicable responses found 42% of medical group leaders report their practices using a no-show fee against 58% that do not, and MGMA’s reporting on missed appointments describes rates returning toward pre-pandemic levels, with the single-specialty aggregate rate rising to 6.81% in 2023 after several lower years. A fee recovers a fraction of one visit. Rebooking the slot recovers the visit and, in a series, the ones behind it.
The operational version is to treat every cancellation in a series as two jobs: keep the patient’s remaining sequence coherent, and offer the released slot to waitlisted patients filtered for that exact recurring pattern.
Cancelling a visit can break something the patient did not expect
In behavioral health the series is often load-bearing for workflows outside the calendar, which is what makes the cascade expensive rather than merely untidy.
One psychiatry group’s medication policy, written by their own clinical leadership, requires that a patient have been seen within a defined recent window and have a scheduled appointment before a refill request is processed. A cancellation with no rebooking therefore does not just create an empty slot. It moves the patient outside the condition the practice set, and the consequence shows up later as a refill request that cannot be worked.
That same policy carries an explicit safety instruction. For certain medication classes the group named specifically, the agent must not hold the line if the patient declines to schedule. It transfers to a live medical assistant. The automation applies the practice’s rule and hands off; it never evaluates the medication, the request, or the patient.
The useful behavior at the moment of cancellation is therefore to rebook in the same conversation rather than to accept the cancellation and move on. The patient is already on the phone, the eligible slots are already computable, and every hour after that call the odds drop.
Refills are a small share of phone volume, at 6% in a March 10, 2026, MGMA Stat poll of which tasks consume the most staff time, against eligibility and prior authorization at 45% and scheduling at 31%. The cost is not the minutes. It is that a refill blocked by a broken appointment condition becomes a chain of calls between the patient, the front desk, and clinical staff, none of which would have happened if the rebooking had occurred during the cancellation call.
Modality and template rules the series has to respect
One more set of constraints decides whether a rebuild is even valid, and they are specific to how this specialty builds templates.
Telehealth and in-person are usually distinct appointment types per provider rather than a checkbox on one type. A single psychiatry provider’s eligible types can include separate office intake, office first visit, office follow-up, and telemedicine equivalents of each. What a patient thinks of as their appointment is several different objects, and a series rebuilt into the wrong one produces a patient who arrives at a building for a video visit.
Slot-type names also cannot be trusted on their own. One practice was told about a telehealth-designated template slot that did not actually block non-telehealth bookings, which made it useless for their online scheduler. Semantics have to be verified against behavior rather than read off the label.
Service line matters too. Practices commonly run separate templates for different service lines, both expressed as generic thirty-minute increments, with a full hour blocked automatically for any new patient. A rebuild has to stay inside the right template family, and a generic slot does not announce which specific types it can absorb.
All of this is administrative configuration. What interval a patient should be seen at, and whether a series should continue, are decisions made by the clinical team. The automation books what has been specified, keeps the sequence coherent when life interferes, and escalates anything it cannot place.
Key Takeaways
- Read the patient’s upcoming appointments before offering any change. Whether the visit belongs to a series determines the entire workflow.
- Ask whether the change is for one week or from now on, every time. Skipping that question is what produces the cascade weeks later.
- Treat a permanent series change as two operations: rebuild the remaining appointments, and release the standing slot for backfill.
- Filter waitlist candidates for a released standing slot by day, time, provider, and service line. It needs a patient who can commit to the pattern, not the next name on the list.
- Account for neighbouring slots when a rebuild changes durations, or the schedule ends up with overlaps nobody sees until the morning.
- Rebook during the cancellation call. The patient is on the phone, the eligible slots are computable, and the odds fall every hour afterward.
- Know which downstream workflows depend on the patient having a scheduled appointment, and apply the practice’s stated rule rather than improvising one.
- Rebuild into the correct appointment type. Telehealth and in-person are usually separate types per provider, and a wrong rebuild sends the patient to the wrong place.
Recurring visits are the backbone of a behavioral health schedule and the part the calendar understands least. A cancellation handled as a single row leaves the patient with a sequence they no longer trust, a provider with a standing slot that goes permanently empty, and sometimes a downstream workflow that silently stops working. An AI team working inside athenaOne can recognize that an appointment belongs to a series before it offers anything, then ask the one-week-or-from-now-on question every time. It rebuilds the sequence into valid appointment types and offers the released standing slot to the waitlisted patients who can actually take it. Anything it cannot place cleanly goes to a scheduler with the whole series attached.
Related reading
- how intake waitlists get worked against real openings
- rebooking a departing provider’s panel
- how waitlist backfill data has to be structured
Sources
Ready to See It in Action?
See how PGA keeps recurring appointment series intact through cancellations inside athenaOne
Schedule a Demo →Written by Kevin Henrikson