Send Intake Report Email
Perform Send Intake Report Email through GenHealth.
send_intake_report_emailInputs
- Start Date
start_datedateOptional date in YYYY-MM-DD format.
- End Date
end_datedateOptional date in YYYY-MM-DD format.
- Lookback Days
lookback_daysnumberOptional numeric value.
Default:
7 - Metric Profile
metric_profileselectrequiredRequired selected identifier or value.
Default:
"standard_status"Options: Status complete + no validation error ("standard_status"), No validation error + no failed activity ("review_status_success")
- Minutes Per Touchless Document
minutes_per_touchless_documentnumberOptional numeric value.
Default:
4 - Include Review Savings
include_review_savingsbooleanOptional true-or-false value.
Default:
false - Seconds Per Reviewed Document
seconds_per_reviewed_documentnumberOptional numeric value.
Default:
30 - Hide Hours Saved
hide_hours_savedbooleanOptional true-or-false value.
Default:
false - Hide Passed Without Touch
hide_passed_without_touchbooleanOptional true-or-false value.
Default:
false - To Emails
to_emailstextrequiredRequired text value.
- Subject
subjecttextOptional text value.
- Report Title
report_titletextOptional text value.
- Output Path
output_pathtextOptional text value.
Outputs
statusStatusstart_dateStart Dateend_dateEnd Datetotal_docsTotal Docspassed_without_touchPassed Without Touchrequired_reviewRequired Reviewvalidation_error_docsValidation Error Docstime_saved_hoursTime Saved Hoursreport_pathReport Pathemailed_toEmailed ToerrorError
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": [
"metric_profile",
"to_emails"
],
"properties": {
"subject": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"end_date": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"to_emails": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"start_date": {
"type": "string",
"format": "date",
"description": "Optional 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_title": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"lookback_days": {
"type": "number",
"default": 7,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"metric_profile": {
"enum": [
"standard_status",
"review_status_success"
],
"type": "string",
"default": "standard_status",
"description": "Required selected identifier or value.",
"x-workflow-field-type": "select"
},
"hide_hours_saved": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"include_review_savings": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"hide_passed_without_touch": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"seconds_per_reviewed_document": {
"type": "number",
"default": 30,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"minutes_per_touchless_document": {
"type": "number",
"default": 4,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"status": {},
"end_date": {},
"emailed_to": {},
"start_date": {},
"total_docs": {},
"report_path": {},
"required_review": {},
"time_saved_hours": {},
"passed_without_touch": {},
"validation_error_docs": {}
},
"additionalProperties": true
}