Skip to documentation
eClinicalWorks integration

ECW Get Medication Overview

Perform ECW Get Medication Overview through eClinicalWorks.

View as Markdown
ecw_get_medication_overview
readeclinicalworks

Inputs

  • encounter_id
    textrequired
    Encounter Id

    Required text value.

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • context
    text
    Context

    Optional text value.

    Default: "telenc"

Outputs

  • successSuccess
  • resultResult
  • errorError

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
}
View all eClinicalWorks actions