# ECW List Epa Queue

> Perform ECW List Epa Queue through eClinicalWorks.

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

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

- Handler: `ecw_list_epa_queue`

- Connection type: `eclinicalworks`

## Inputs

- `pa_type` — Pa Type (text)
  Optional text value.
  Default: `"In Progress"`
- `max_count` — Max Count (number)
  Optional numeric value.
  Default: `200`
- `sort_by` — Sort By (number)
  Optional numeric value.
  Default: `10`
- `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": {
    "pa_type": {
      "type": "string",
      "default": "In Progress",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "sort_by": {
      "type": "number",
      "default": 10,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "max_count": {
      "type": "number",
      "default": 200,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "sort_order": {
      "type": "string",
      "default": "DESC",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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