Skip to documentation
GenHealth - Notifications integration

Send Intake Summary Email

Perform Send Intake Summary Email through GenHealth - Notifications.

View as Markdown
notifications_send_intake_summary_email
write

Inputs

  • job_id
    expressionrequired
    Job Id

    Required literal value or workflow expression.

  • intake_source_id
    textrequired
    Intake Source Id

    Required text value.

Outputs

  • successSuccess
  • 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": [
    "job_id",
    "intake_source_id"
  ],
  "properties": {
    "job_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "intake_source_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {}
  },
  "additionalProperties": true
}
View all GenHealth - Notifications actions