Skip to documentation
eClinicalWorks integration

ECW Read Labs

Perform ECW Read Labs through eClinicalWorks.

View as Markdown
ecw_read_labs
readeclinicalworks

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • query
    text
    Query

    Optional text value.

  • start_date
    text
    Start Date

    Optional text value.

  • end_date
    text
    End Date

    Optional text value.

  • lookback_days
    number
    Lookback Days

    Optional numeric value.

    Default: 1095

  • lab_id
    text
    Lab Id

    Optional text value.

    Default: "0"

  • max_results
    number
    Max Results

    Optional numeric value.

    Default: 25

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": [
    "patient_id"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "lab_id": {
      "type": "string",
      "default": "0",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "end_date": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "start_date": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "max_results": {
      "type": "number",
      "default": 25,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "lookback_days": {
      "type": "number",
      "default": 1095,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "result": {},
    "success": {}
  },
  "additionalProperties": true
}
View all eClinicalWorks actions