get_appointments
Retrieve patient appointments by specifying a patient ID and date range to streamline scheduling and healthcare workflows using Google Cloud Healthcare API.
Instructions
Get patient's Appointments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dateFrom | No | YYYY-MM-DD | |
dateTo | No | YYYY-MM-DD | |
patientId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dateFrom": {
"description": "YYYY-MM-DD",
"type": "string"
},
"dateTo": {
"description": "YYYY-MM-DD",
"type": "string"
},
"patientId": {
"type": "string"
}
},
"required": [
"patientId"
],
"type": "object"
}