List Scheduled Encounters (Date Range)
Perform List Scheduled Encounters (Date Range) through eClinicalWorks.
ecw_list_scheduled_encountersreadeclinicalworks
Inputs
- Start Date
start_datedateOptional date in YYYY-MM-DD format.
- End Date
end_datedateOptional date in YYYY-MM-DD format.
- Visit Type Filter
visit_type_filtertextOptional text value.
Default:
"Est F/U" - Insurance Provider Filter
insurance_provider_filtertextOptional text value.
Outputs
successSuccessencountersEncounterscountCountfiltered_countFiltered Countstart_dateStart Dateend_dateEnd DateerrorError
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": {
"end_date": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"start_date": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"visit_type_filter": {
"type": "string",
"default": "Est F/U",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"insurance_provider_filter": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"success": {},
"end_date": {},
"encounters": {},
"start_date": {},
"filtered_count": {}
},
"additionalProperties": true
}