# Completed Studies Report

> Perform Completed Studies Report through GenHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health/elite_completed_studies_report](https://genhealth.ai/docs/workflows/integrations/gen-health/elite_completed_studies_report)

Integration: [GenHealth](https://genhealth.ai/docs/workflows/integrations/gen-health.md)

- Handler: `elite_completed_studies_report`

## Inputs

- `summary` — Summary (expression, required)
  Required literal value or workflow expression.
- `output_path` — Output Path (text)
  Optional text value.
- `to_emails` — To Emails (text)
  Optional text value.
- `subject` — Subject (expression)
  Optional literal value or workflow expression.
- `review_document_id` — Review Document Id (expression)
  Optional literal value or workflow expression.
- `attachment_document_ids` — Attachment Document Ids (expression)
  Optional literal value or workflow expression.
- `attachment_paths` — Attachment Paths (text)
  Optional text value.

## Outputs

- `status` — Status
- `html` — Html
- `output_path` — Output Path
- `emailed_to` — Emailed To
- `attachment_count` — Attachment Count
- `review_url` — Review Url
- `total_rows` — Total Rows
- `ready_for_import_count` — Ready For Import Count
- `filtered_count` — Filtered Count
- `exception_count` — Exception Count
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "summary"
  ],
  "properties": {
    "subject": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "summary": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "to_emails": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "attachment_paths": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "review_document_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "attachment_document_ids": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "html": {},
    "error": {},
    "status": {},
    "emailed_to": {},
    "review_url": {},
    "total_rows": {},
    "output_path": {},
    "filtered_count": {},
    "exception_count": {},
    "attachment_count": {},
    "ready_for_import_count": {}
  },
  "additionalProperties": true
}
```
