ECW Read Patient Progress Notes
Perform ECW Read Patient Progress Notes through eClinicalWorks.
ecw_read_patient_progress_notesreadeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Note Types
note_typesjsonOptional JSON value.
- Lookback Days
lookback_daysnumberOptional numeric value.
Default:
180 - Start Date
start_datetextOptional text value.
- End Date
end_datetextOptional text value.
- Include Cancelled
include_cancelledbooleanOptional true-or-false value.
Default:
false - Max Notes
max_notesnumberOptional numeric value.
Default:
10 - Encounter Ids
encounter_idsjsonOptional JSON value.
- Include Diagnoses
include_diagnosesbooleanOptional true-or-false value.
Default:
true
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",
"required": [
"patient_id"
],
"properties": {
"end_date": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"max_notes": {
"type": "number",
"default": 10,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"note_types": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"start_date": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"encounter_ids": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"lookback_days": {
"type": "number",
"default": 180,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"include_cancelled": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"include_diagnoses": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"result": {},
"success": {}
},
"additionalProperties": true
}