# ExaPACS Eligibility Summary

> Perform ExaPACS Eligibility Summary through GenHealth.

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

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

- Handler: `exapacs_eligibility_summary_report`

## Inputs

- `group_results` — Group Results (expression, required)
  Required literal value or workflow expression.
- `attachment_document_id_field` — Attachment Document Id Field (text)
  Optional text value.
- `subject` — Subject (expression)
  Optional literal value or workflow expression.
- `output_path` — Output Path (text)
  Optional text value.
- `to_emails` — To Emails (text)
  Optional text value.

## Outputs

- `status` — Status
- `html` — Html
- `output_path` — Output Path
- `emailed_to` — Emailed To
- `group_count` — Group Count
- `processed_count` — Processed Count
- `document_issue_count` — Document Issue Count
- `processing_error_count` — Processing Error Count
- `matched_count` — Matched Count
- `unmatched_count` — Unmatched Count
- `policy_count` — Policy Count
- `verification_sheet_doc_id` — Verification Sheet Doc Id
- `combined_attachment_count` — Combined Attachment 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": [
    "group_results"
  ],
  "properties": {
    "subject": {
      "description": "Optional 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"
    },
    "group_results": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "attachment_document_id_field": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "html": {},
    "error": {},
    "status": {},
    "emailed_to": {},
    "group_count": {},
    "output_path": {},
    "policy_count": {},
    "matched_count": {},
    "processed_count": {},
    "unmatched_count": {},
    "document_issue_count": {},
    "processing_error_count": {},
    "combined_attachment_count": {},
    "verification_sheet_doc_id": {}
  },
  "additionalProperties": true
}
```
