# Send Summary Report

> Perform Send Summary Report through GenHealth.

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

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

- Handler: `send_summary_report`

## Inputs

- `report_type` — Report Type (select, required)
  Required selected identifier or value.
  Default: `"document_intake_summary"`
  Options: Document Intake Summary ("document_intake_summary")
- `report_day` — Report Day (date, required)
  Required date in YYYY-MM-DD format.
- `to_emails` — To Emails (text, required)
  Required text value.
- `subject` — Subject (text)
  Optional text value.
- `source_workflow_id` — Source Workflow Id (workflow_select)
  Optional selected identifier or value.
- `output_path` — Output Path (text)
  Optional text value.

## Outputs

- `status` — Status
- `window` — Window
- `counts` — Counts
- `emailed_to` — Emailed To
- `message_id` — Message Id
- `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": [
    "report_type",
    "report_day",
    "to_emails"
  ],
  "properties": {
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to_emails": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "report_day": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_type": {
      "enum": [
        "document_intake_summary"
      ],
      "type": "string",
      "default": "document_intake_summary",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "source_workflow_id": {
      "type": "string",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "workflow_select"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "counts": {},
    "status": {},
    "window": {},
    "emailed_to": {},
    "message_id": {}
  },
  "additionalProperties": true
}
```
