# List Today's Encounters

> Perform List Today's Encounters through eClinicalWorks.

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

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

- Handler: `ecw_list_todays_encounters`

- Connection type: `eclinicalworks`

## Inputs

- `visit_date` — Visit Date (date)
  Optional date in YYYY-MM-DD format.
- `visit_type_filter` — Visit Type Filter (text)
  Optional text value.
  Default: `"Est F/U"`
- `insurance_provider_filter` — Insurance Provider Filter (text)
  Optional text value.

## Outputs

- `success` — Success
- `encounters` — Encounters
- `count` — Count
- `filtered_count` — Filtered Count
- `visit_date` — Visit Date
- `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",
  "properties": {
    "visit_date": {
      "type": "string",
      "format": "date",
      "description": "Optional date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "visit_type_filter": {
      "type": "string",
      "default": "Est F/U",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "insurance_provider_filter": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "encounters": {},
    "visit_date": {},
    "filtered_count": {}
  },
  "additionalProperties": true
}
```
