API Reference
Scheduling API
Appointment booking, calendar management, and patient reminders.
Endpoints
GET
/appointmentsList appointmentsPOST
/appointmentsBook appointmentGET
/appointments/{id}Get appointmentPUT
/appointments/{id}ReschedulePOST
/appointments/{id}/cancelCancel appointmentGET
/providers/{id}/availabilityGet provider slotsBook Appointment
Request
POST /healthcare/v1/appointments
Content-Type: application/json
{
"patient_id": "patient_abc123",
"provider_id": "provider_smith",
"scheduled_time": "2024-12-10T14:00:00Z",
"duration_minutes": 30,
"visit_type": "follow_up",
"reason": "Blood pressure check",
"send_reminder": true
}