Send Summary Report
Perform Send Summary Report through GenHealth.
send_summary_reportwrite
Inputs
- Report Type
report_typeselectrequiredRequired selected identifier or value.
Default:
"document_intake_summary"Options: Document Intake Summary ("document_intake_summary")
- Report Day
report_daydaterequiredRequired date in YYYY-MM-DD format.
- To Emails
to_emailstextrequiredRequired text value.
- Subject
subjecttextOptional text value.
- Source Workflow Id
source_workflow_idworkflow_selectOptional selected identifier or value.
- Output Path
output_pathtextOptional text value.
Outputs
statusStatuswindowWindowcountsCountsemailed_toEmailed Tomessage_idMessage IderrorError
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
}