check_appointment_availability
Find available appointment slots for a specific department within your desired date range. Check provider availability and appointment types to schedule patient visits.
Instructions
Check available appointment slots for a department and date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appointment_type | No | Appointment type (optional) | |
department_id | Yes | Department ID | |
end_date | Yes | End date (YYYY-MM-DD) | |
provider_id | No | Provider ID (optional - leave empty to check all providers) | |
start_date | Yes | Start date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"appointment_type": {
"description": "Appointment type (optional)",
"type": "string"
},
"department_id": {
"description": "Department ID",
"type": "string"
},
"end_date": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"provider_id": {
"description": "Provider ID (optional - leave empty to check all providers)",
"type": "string"
},
"start_date": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"department_id",
"start_date",
"end_date"
],
"type": "object"
}