# ECW List Telephone Encounters

> Perform ECW List Telephone Encounters through eClinicalWorks.

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

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

- Handler: `ecw_list_telephone_encounters`

- Connection type: `eclinicalworks`

## Inputs

- `assigned_to_id` — Assigned To Id (text)
  Optional text value.
- `tab_id` — Tab Id (number)
  Optional numeric value.
  Default: `3`
- `date` — Date (text)
  Optional text value.
- `date_filter_days` — Date Filter Days (text)
  Optional text value.
  Default: `"1"`
- `facility_id` — Facility Id (number)
  Optional numeric value.
  Default: `0`
- `doctor_id` — Doctor Id (number)
  Optional numeric value.
  Default: `0`
- `page_no` — Page No (number)
  Optional numeric value.
  Default: `1`
- `rows_per_page` — Rows Per Page (number)
  Optional numeric value.
  Default: `100`
- `sort_by` — Sort By (number)
  Optional numeric value.
  Default: `1`
- `sort_order` — Sort Order (text)
  Optional text value.
  Default: `"DESC"`

## 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",
  "properties": {
    "date": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "tab_id": {
      "type": "number",
      "default": 3,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "page_no": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "sort_by": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "doctor_id": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "sort_order": {
      "type": "string",
      "default": "DESC",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "facility_id": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "rows_per_page": {
      "type": "number",
      "default": 100,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "assigned_to_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "date_filter_days": {
      "type": "string",
      "default": "1",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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