# ECW Search Progress Notes

> Perform ECW Search Progress Notes through eClinicalWorks.

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

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

- Handler: `ecw_search_progress_notes`

- Connection type: `eclinicalworks`

## Inputs

- `encounters` — Encounters (json)
  Optional JSON value.
- `encounter_ids` — Encounter Ids (json)
  Optional JSON value.
- `query` — Query (text, required)
  Required text value.
- `enc_type` — Enc Type (text)
  Optional text value.
- `context_chars` — Context Chars (number)
  Optional numeric value.
  Default: `160`

## 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": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "enc_type": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "encounters": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "context_chars": {
      "type": "number",
      "default": 160,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "encounter_ids": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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