ECW Get Medication Overview
Perform ECW Get Medication Overview through eClinicalWorks.
ecw_get_medication_overviewreadeclinicalworks
Inputs
- Encounter Id
encounter_idtextrequiredRequired text value.
- Patient Id
patient_idtextrequiredRequired text value.
- Context
contexttextOptional text value.
Default:
"telenc"
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": [
"encounter_id",
"patient_id"
],
"properties": {
"context": {
"type": "string",
"default": "telenc",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"encounter_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"result": {},
"success": {}
},
"additionalProperties": true
}