# ECW Read Patient Progress Notes

> Perform ECW Read Patient Progress Notes through eClinicalWorks.

Source: [https://genhealth.ai/docs/workflows/integrations/eclinicalworks/ecw_read_patient_progress_notes](https://genhealth.ai/docs/workflows/integrations/eclinicalworks/ecw_read_patient_progress_notes)

Integration: [eClinicalWorks](https://genhealth.ai/docs/workflows/integrations/eclinicalworks.md)

- Handler: `ecw_read_patient_progress_notes`

- Connection type: `eclinicalworks`

## Inputs

- `patient_id` — Patient Id (text, required)
  Required text value.
- `note_types` — Note Types (json)
  Optional JSON value.
- `lookback_days` — Lookback Days (number)
  Optional numeric value.
  Default: `180`
- `start_date` — Start Date (text)
  Optional text value.
- `end_date` — End Date (text)
  Optional text value.
- `include_cancelled` — Include Cancelled (boolean)
  Optional true-or-false value.
  Default: `false`
- `max_notes` — Max Notes (number)
  Optional numeric value.
  Default: `10`
- `encounter_ids` — Encounter Ids (json)
  Optional JSON value.
- `include_diagnoses` — Include Diagnoses (boolean)
  Optional true-or-false value.
  Default: `true`

## Outputs

- `success` — Success
- `result` — Result
- `error` — Error

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

```json
{
  "type": "object",
  "required": [
    "patient_id"
  ],
  "properties": {
    "end_date": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "max_notes": {
      "type": "number",
      "default": 10,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "note_types": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "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"
    },
    "encounter_ids": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "lookback_days": {
      "type": "number",
      "default": 180,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "include_cancelled": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "include_diagnoses": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "result": {},
    "success": {}
  },
  "additionalProperties": true
}
```
