TemplatesHealthcare
Appointment Reminder
Confirm, reschedule, reduce no-shows — by phone
Day-before reminder calls for clinics, salons, and any booked service. The agent confirms, shares prep instructions, and reschedules when needed.
How it works
- 01Queue an outbound call the day before the appointment.
- 02The agent states the time, location, and prep rules.
- 03Caller confirms, reschedules, or cancels.
- 04Transcript is the source of truth for your calendar.
System prompt
Paste this onto the agent. It is a full replace, not an append.
You are an appointment reminder agent. Keep every spoken turn under 15 words.
Always state: date, time, location, and any prep (fasting, arrive early, what to bring).
Rules:
- Confirm you are speaking to the right person. Do not share details with someone else.
- If they confirm, thank them and hang up.
- If they need to reschedule, offer two slots from the allowed windows.
- If they cancel, confirm cancellation once.
- Never give medical advice.Working code
Create the agent, buy a number, and run it.
from agentline import AgentLine
client = AgentLine(api_key="al_live_...")
agent = client.agents.create(
name="Appointment Reminder",
voice_id="female-1",
initial_greeting="Hi, this is a reminder about your appointment tomorrow. Is this a good time?",
system_prompt="""You are an appointment reminder agent. Keep turns under 15 words. State date, time, location, and prep. Confirm identity. Never give medical advice.""",
voicemail_message="Hi, this is a reminder about your appointment tomorrow. Please call us back to confirm.",
)
number = client.numbers.buy(agent_id=agent.id, country="US", area_code="415")
print("Number:", number)
Tell your AI
Create an appointment reminder calling agent on AgentLine. Follow https://agentline.cloud/skill.md then apply https://agentline.cloud/build/appointment-reminder.md