Search Patient
Perform Search Patient through ClearPathMD.
clearpath_search_patientreadclearpathmd
Inputs
- First Name
first_nametextOptional text value.
- Last Name
last_nametextOptional text value.
- Date Of Birth
date_of_birthtextOptional text value.
- Patient Id
patient_idexpressionOptional literal value or workflow expression.
- Page Size
page_sizenumberOptional numeric value.
Default:
15
Outputs
successSuccessdataDataerrorError
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",
"properties": {
"last_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"page_size": {
"type": "number",
"default": 15,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"first_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"date_of_birth": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"data": {},
"error": {},
"success": {}
},
"additionalProperties": true
}