Skip to documentation
GenHealth integration

Send Intake Report Email

Perform Send Intake Report Email through GenHealth.

View as Markdown
send_intake_report_email
write

Inputs

  • start_date
    date
    Start Date

    Optional date in YYYY-MM-DD format.

  • end_date
    date
    End Date

    Optional date in YYYY-MM-DD format.

  • lookback_days
    number
    Lookback Days

    Optional numeric value.

    Default: 7

  • metric_profile
    selectrequired
    Metric Profile

    Required 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
    number
    Minutes Per Touchless Document

    Optional numeric value.

    Default: 4

  • include_review_savings
    boolean
    Include Review Savings

    Optional true-or-false value.

    Default: false

  • seconds_per_reviewed_document
    number
    Seconds Per Reviewed Document

    Optional numeric value.

    Default: 30

  • hide_hours_saved
    boolean
    Hide Hours Saved

    Optional true-or-false value.

    Default: false

  • hide_passed_without_touch
    boolean
    Hide Passed Without Touch

    Optional true-or-false value.

    Default: false

  • to_emails
    textrequired
    To Emails

    Required text value.

  • subject
    text
    Subject

    Optional text value.

  • report_title
    text
    Report Title

    Optional text value.

  • output_path
    text
    Output Path

    Optional text value.

Outputs

  • statusStatus
  • start_dateStart Date
  • end_dateEnd Date
  • total_docsTotal Docs
  • passed_without_touchPassed Without Touch
  • required_reviewRequired Review
  • validation_error_docsValidation Error Docs
  • time_saved_hoursTime Saved Hours
  • report_pathReport Path
  • emailed_toEmailed To
  • 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": [
    "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
}
View all GenHealth actions