Skip to documentation
GenHealth integration

Send Summary Report

Perform Send Summary Report through GenHealth.

View as Markdown
send_summary_report
write

Inputs

  • report_type
    selectrequired
    Report Type

    Required selected identifier or value.

    Default: "document_intake_summary"

    Options: Document Intake Summary ("document_intake_summary")

  • report_day
    daterequired
    Report Day

    Required date in YYYY-MM-DD format.

  • to_emails
    textrequired
    To Emails

    Required text value.

  • subject
    text
    Subject

    Optional text value.

  • source_workflow_id
    workflow_select
    Source Workflow Id

    Optional selected identifier or value.

  • output_path
    text
    Output Path

    Optional text value.

Outputs

  • statusStatus
  • windowWindow
  • countsCounts
  • emailed_toEmailed To
  • message_idMessage Id
  • errorError

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
{
  "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
{
  "type": "object",
  "properties": {
    "error": {},
    "counts": {},
    "status": {},
    "window": {},
    "emailed_to": {},
    "message_id": {}
  },
  "additionalProperties": true
}
View all GenHealth actions