ECW List Encounter Attachments
Perform ECW List Encounter Attachments through eClinicalWorks.
ecw_list_encounter_attachmentsreadeclinicalworks
Inputs
- Encounter Id
encounter_idtextrequiredRequired text value.
- Patient Id
patient_idtextrequiredRequired text value.
- Max Results
max_resultsnumberOptional numeric value.
Default:
25
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": {
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"max_results": {
"type": "number",
"default": 25,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"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
}