# Send Workflow Daily Summary

> Perform Send Workflow Daily Summary through GenHealth.

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

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

- Handler: `send_workflow_daily_summary`

## Inputs

- `workflow_name` — Workflow Name (text, required)
  Required text value.
- `report_day` — Report Day (text)
  Optional text value.
- `window_hours` — Window Hours (number)
  Optional numeric value.
- `timezone` — Timezone (text)
  Optional text value.
- `to_emails` — To Emails (text, required)
  Required text value.
- `subject` — Subject (text)
  Optional text value.
- `report_title` — Report Title (text)
  Optional text value.
- `loop_node_id` — Loop Node Id (text)
  Optional text value.
- `dedupe_key_fields` — Dedupe Key Fields (text)
  Optional text value.
- `links` — Links (json)
  Optional JSON value.
- `attachment_document_id_field` — Attachment Document Id Field (text)
  Optional text value.
- `max_attachments` — Max Attachments (number)
  Optional numeric value.
- `item_title` — Item Title (text)
  Optional text value.
- `item_subtitle` — Item Subtitle (text)
  Optional text value.
- `max_items_per_section` — Max Items Per Section (number)
  Optional numeric value.
- `inline_max_rows` — Inline Max Rows (number)
  Optional numeric value.
- `processed_label` — Processed Label (text)
  Optional text value.
- `skipped_label` — Skipped Label (text)
  Optional text value.
- `manual_label` — Manual Label (text)
  Optional text value.
- `node_buckets` — Node Buckets (json)
  Optional JSON value.
- `output_path` — Output Path (text)
  Optional text value.

## Outputs

- `success` — Success
- `run_count` — Run Count
- `productive_run_count` — Productive Run Count
- `total` — Total
- `completed_count` — Completed Count
- `processed_count` — Processed Count
- `skipped_count` — Skipped Count
- `action_required_count` — Action Required Count
- `unclassified_count` — Unclassified Count
- `failed_count` — Failed Count
- `recipients` — Recipients
- `subject` — Subject
- `report_day` — Report Day
- `html` — Html
- `output_path` — Output Path
- `email_mode` — Email Mode
- `pdf_attached` — Pdf Attached
- `attachments_attached` — Attachments Attached
- `attachments_dropped` — Attachments Dropped
- `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": [
    "workflow_name",
    "to_emails"
  ],
  "properties": {
    "links": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "timezone": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to_emails": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "item_title": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_day": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "loop_node_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "manual_label": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "node_buckets": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "report_title": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "window_hours": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "item_subtitle": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "skipped_label": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "workflow_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "inline_max_rows": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "max_attachments": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "processed_label": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "dedupe_key_fields": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "max_items_per_section": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "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": {},
    "total": {},
    "subject": {},
    "success": {},
    "run_count": {},
    "email_mode": {},
    "recipients": {},
    "report_day": {},
    "output_path": {},
    "failed_count": {},
    "pdf_attached": {},
    "skipped_count": {},
    "completed_count": {},
    "processed_count": {},
    "unclassified_count": {},
    "attachments_dropped": {},
    "attachments_attached": {},
    "productive_run_count": {},
    "action_required_count": {}
  },
  "additionalProperties": true
}
```
