Patient Follow-Up Automation: From Visit to Review in One Flow
A same-day check-in, a recovery check, and a review request — none of it manual.
The visit ends, the patient walks out, and from the clinic's side, most of what happens next — did they recover, did they fill the prescription, would they come back — goes completely unrecorded, unless somebody happens to ask.
Patient follow-up doesn't have to rely on somebody remembering to ask. A short automated sequence after each visit — a same-day check-in, a recovery check, a review request — closes the loop without adding a task to anyone's list.
Day-of visit check-in
A same-day message, sent a few hours after the appointment, does two things: it confirms the visit went as expected, and it catches anything urgent early, while it's still same-day-fixable. Keep it short and easy to ignore if everything's fine:
"Hi Maria, hope today's visit with Dr. Chen went well. Reply here anytime if you have questions about what was discussed or your next steps."
This isn't a survey — it's an open door. Most patients won't reply, and that's fine; the ones who do usually have something worth catching early. This same-day message pairs naturally with the reminder sequence in WhatsApp for Clinics: Appointment Reminders — one gets the patient there, the other checks how it went.
72-hour recovery check
For visits involving a procedure, a new medication, or anything with a recovery window, a check-in at 72 hours catches problems before they become bigger ones. This is where AI Follow-Up Automation does the useful part: it reads the reply and routes it — "doing fine" gets a friendly close, anything describing pain, side effects, or concern gets flagged straight to clinical staff.
curl -X POST https://api.wasms.net/v1/campaigns \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"trigger": "visit.completed",
"sequence": [
{"offset": "+4h", "template": "same_day_checkin"},
{"offset": "+72h", "template": "recovery_checkin", "ai_triage": true}
]
}'
The AI's job here is triage, not diagnosis — sorting "reassuring" from "needs a callback," and handing the second group to a person fast. This is the same escalation discipline covered in AI Receptionist for Clinics.
Review request
A few days after a visit that went well is the natural moment to ask for a review — closer to the visit than a monthly reminder, and only sent to patients whose check-in replies weren't flagged as a concern. Keep the ask specific and low-friction: a direct link, one line, no guilt.

Reactivation for lapsed patients
Patients who haven't booked in a while (six months, a year — whatever fits your typical visit cycle) are worth a gentle nudge rather than nothing. A short, no-pressure message — "it's been a while since your last visit with us, want to book a check-up?" — brings a meaningful share back, especially paired with an easy one-tap booking link back to Clinic Booking via WhatsApp.
Reporting patient follow-up results to the clinic owner
Every follow-up sent, every reply, and every escalation is visible in your WaSMS dashboard — so a clinic owner can see, at a glance, how many recovery checks came back "fine" versus "flagged," and how many lapsed patients rebooked from a reactivation message. That visibility is what turns follow-up from a nice idea into something you can actually manage and improve. See AI Appointment Reminders for how the reminder side of the same patient journey feeds into this reporting.