# List Eligibility Worklist (Bulk)

> Perform List Eligibility Worklist (Bulk) through ExaPACS.

Source: [https://genhealth.ai/docs/workflows/integrations/exa-pacs/exapacs_list_eligibility_worklist](https://genhealth.ai/docs/workflows/integrations/exa-pacs/exapacs_list_eligibility_worklist)

Integration: [ExaPACS](https://genhealth.ai/docs/workflows/integrations/exa-pacs.md)

- Handler: `exapacs_list_eligibility_worklist`

- Connection type: `exapacs`

## Inputs

- `saved_filter_id` — Saved Filter Id (number)
  Optional numeric value.
  Default: `5943`

## Outputs

- `items` — Items
- `count` — Count
- `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": {
    "saved_filter_id": {
      "type": "number",
      "default": 5943,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "items": {}
  },
  "additionalProperties": true
}
```
