# ECW Read Encounter Messages

> Perform ECW Read Encounter Messages through eClinicalWorks.

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

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

- Handler: `ecw_read_encounter_messages`

- Connection type: `eclinicalworks`

## Inputs

- `ticket_id` — Ticket Id (text, required)
  Required text value.

## 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": [
    "ticket_id"
  ],
  "properties": {
    "ticket_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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