search_patients
Find patients in the athenahealth system using name, date of birth, phone number, or email address to quickly locate medical records and support clinical workflows.
Instructions
Search for patients by name, DOB, phone, or email
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dob | No | Date of birth (YYYY-MM-DD) | |
| No | Email address | ||
| firstname | No | Patient first name | |
| lastname | No | Patient last name | |
| limit | No | Maximum number of results | |
| phone | No | Phone number |
Input Schema (JSON Schema)
{
"properties": {
"dob": {
"description": "Date of birth (YYYY-MM-DD)",
"type": "string"
},
"email": {
"description": "Email address",
"type": "string"
},
"firstname": {
"description": "Patient first name",
"type": "string"
},
"lastname": {
"description": "Patient last name",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of results",
"type": "number"
},
"phone": {
"description": "Phone number",
"type": "string"
}
},
"required": [],
"type": "object"
}