ECW Fetch Rx Log List
Perform ECW Fetch Rx Log List through eClinicalWorks.
ecw_fetch_rx_log_listwriteeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Max Count
max_countnumberOptional numeric value.
Default:
50
Outputs
successSuccessresultResulterrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"patient_id"
],
"properties": {
"max_count": {
"type": "number",
"default": 50,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"result": {},
"success": {}
},
"additionalProperties": true
}