Skip to documentation
GenHealth integration

Send Monthly Intake Report

Perform Send Monthly Intake Report through GenHealth.

View as Markdown
send_monthly_intake_report_email
write

Inputs

  • report
    jsonrequired
    Report

    Required JSON value.

  • preconditions_ok
    expressionrequired
    Preconditions Ok

    Required literal value or workflow expression.

  • write_enabled
    boolean
    Write Enabled

    Optional true-or-false value.

    Default: false

  • to
    text
    To

    Optional text value.

    Default: "daniella@genhealth.ai"

  • cc
    text
    Cc

    Optional text value.

  • subject
    text
    Subject

    Optional text value.

    Default: "SoundView Monthly Intake Report — {report_period}"

  • generated_on
    text
    Generated On

    Optional text value.

  • generated_at
    text
    Generated At

    Optional text value.

  • from_email
    text
    From Email

    Optional text value.

  • gmail_group_email
    text
    Gmail Group Email

    Optional text value.

Outputs

  • successSuccess
  • sentSent
  • previewPreview
  • skip_reasonSkip Reason
  • report_periodReport Period
  • item_keyItem Key
  • recipientsRecipients
  • subjectSubject
  • attachment_nameAttachment Name
  • attachment_content_typeAttachment Content Type
  • attachment_size_bytesAttachment Size Bytes
  • 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",
    "preconditions_ok"
  ],
  "properties": {
    "cc": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to": {
      "type": "string",
      "default": "daniella@genhealth.ai",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "subject": {
      "type": "string",
      "default": "SoundView Monthly Intake Report — {report_period}",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "from_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "generated_at": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "generated_on": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "write_enabled": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "preconditions_ok": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "gmail_group_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "sent": {},
    "error": {},
    "preview": {},
    "subject": {},
    "success": {},
    "item_key": {},
    "message_id": {},
    "recipients": {},
    "skip_reason": {},
    "report_period": {},
    "attachment_name": {},
    "attachment_size_bytes": {},
    "attachment_content_type": {}
  },
  "additionalProperties": true
}
View all GenHealth actions