Skip to documentation
GenHealth integration

Send Slack Message

Perform Send Slack Message through GenHealth.

View as Markdown
send_slack_message
write

Inputs

  • channel
    textrequired
    Channel

    Required text value.

  • message
    textarearequired
    Message

    Required text value.

  • thread_ts
    expression
    Thread Ts

    Optional literal value or workflow expression.

  • append_workflow_context
    boolean
    Append Workflow Context

    Optional true-or-false value.

    Default: false

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • channelChannel
  • tsTs
  • dry_runDry Run
  • errorError

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",
  "required": [
    "channel",
    "message"
  ],
  "properties": {
    "channel": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "message": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "textarea"
    },
    "thread_ts": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "append_workflow_context": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "ts": {},
    "error": {},
    "channel": {},
    "dry_run": {},
    "success": {}
  },
  "additionalProperties": true
}
View all GenHealth actions