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.

AgentLineAgentLineClaudeClaude

How it works

  1. 01Queue an outbound call the day before the appointment.
  2. 02The agent states the time, location, and prep rules.
  3. 03Caller confirms, reschedules, or cancels.
  4. 04Transcript is the source of truth for your calendar.

System prompt

Paste this onto the agent. It is a full replace, not an append.

prompt
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.

Greeting

Hi, this is a reminder about your appointment tomorrow. Is this a good time?

Voicemail

Hi, this is a reminder about your appointment tomorrow. Please call us back on this number to confirm.

Working code

Create the agent, buy a number, and run it.

python
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

text
Create an appointment reminder calling agent on AgentLine. Follow https://agentline.cloud/skill.md then apply https://agentline.cloud/build/appointment-reminder.md

FAQ

Do phone reminders actually reduce no-shows?

Can the agent reschedule, or only remind?

Is this HIPAA-compliant healthcare software?

More templates