Skip to documentation
GenHealth integration

Summarize Intake Batch

Perform Summarize Intake Batch through GenHealth.

View as Markdown
intake_summarize_batch
write

Inputs

  • selection_payload
    json
    Selection Payload

    Optional JSON value.

  • loop_results
    json
    Loop Results

    Optional JSON value.

  • dispatch_payload
    json
    Dispatch Payload

    Optional JSON value.

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

  • notify
    boolean
    Notify

    Optional true-or-false value.

    Default: true

  • channel
    text
    Channel

    Optional text value.

  • output_path
    text
    Output Path

    Optional text value.

  • to_emails
    text
    To Emails

    Optional text value.

Outputs

  • statusStatus
  • htmlHtml
  • output_pathOutput Path
  • emailed_toEmailed To
  • email_subjectEmail Subject
  • slack_messageSlack Message
  • found_countFound Count
  • skipped_countSkipped Count
  • processed_countProcessed Count
  • ready_countReady Count
  • needs_review_countNeeds Review Count
  • failed_countFailed Count
  • dispatch_countDispatch Count
  • remaining_countRemaining Count
  • slack_sentSlack Sent
  • slack_skippedSlack Skipped

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
Yes

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "notify": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "channel": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "to_emails": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "loop_results": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "dispatch_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "selection_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "html": {},
    "status": {},
    "emailed_to": {},
    "slack_sent": {},
    "found_count": {},
    "output_path": {},
    "ready_count": {},
    "failed_count": {},
    "email_subject": {},
    "skipped_count": {},
    "slack_message": {},
    "slack_skipped": {},
    "dispatch_count": {},
    "processed_count": {},
    "remaining_count": {},
    "needs_review_count": {}
  },
  "additionalProperties": true
}
View all GenHealth actions