ECW Read Encounter Attachment
Perform ECW Read Encounter Attachment through eClinicalWorks.
ecw_read_encounter_attachmentreadeclinicalworks
Inputs
- Encounter Id
encounter_idtextrequiredRequired text value.
- Patient Id
patient_idtextrequiredRequired text value.
- Document Id
document_idtextOptional text value.
- Include Ocr Text
include_ocr_textbooleanOptional true-or-false value.
Default:
false - Max Ocr Chars
max_ocr_charsnumberOptional numeric value.
Default:
12000
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"
},
"document_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"encounter_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"max_ocr_chars": {
"type": "number",
"default": 12000,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"include_ocr_text": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"result": {},
"success": {}
},
"additionalProperties": true
}