ECW Resolve Patient
Perform ECW Resolve Patient through eClinicalWorks.
ecw_resolve_patientreadeclinicalworks
Inputs
- Patient Id
patient_idtextOptional text value.
- Acc No
acc_notextOptional text value.
- First Name
first_nametextOptional text value.
- Last Name
last_nametextOptional text value.
- Dob Mmddyyyy
dob_mmddyyyytextOptional text value.
- Max Count
max_countnumberOptional numeric value.
Default:
15
Outputs
successSuccessresultResulterrorError
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": {
"acc_no": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"last_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"max_count": {
"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": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"dob_mmddyyyy": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"result": {},
"success": {}
},
"additionalProperties": true
}