# Read Completed Studies Rows

> Perform Read Completed Studies Rows through ExaPACS.

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

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

- Handler: `exapacs_read_completed_studies_rows`

- Connection type: `exapacs`

## Inputs

- `report_document_id` — Report Document Id (expression, required)
  Required literal value or workflow expression.
- `flag_filter` — Flag Filter (text)
  Optional text value.

## Outputs

- `rows` — Rows
- `count` — Count
- `filtered_out_count` — Filtered Out Count
- `flag_counts` — Flag Counts
- `document_id` — Document Id
- `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": [
    "report_document_id"
  ],
  "properties": {
    "flag_filter": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "rows": {},
    "count": {},
    "error": {},
    "document_id": {},
    "flag_counts": {},
    "filtered_out_count": {}
  },
  "additionalProperties": true
}
```
