Search Patients
Perform Search Patients through ModMed.
modmed_search_patientsreadmodmed
Inputs
- Term
termexpressionrequiredRequired literal value or workflow expression.
- Page Size
page_sizenumberOptional numeric value.
Default:
25
Outputs
successSuccesspatientsPatientscountCounterrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"term"
],
"properties": {
"term": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"page_size": {
"type": "number",
"default": 25,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"success": {},
"patients": {}
},
"additionalProperties": true
}