Skip to documentation
GenHealth integration

Send Slack Event

Perform Send Slack Event through GenHealth.

View as Markdown
send_slack_event
write

Inputs

  • event
    jsonrequired
    Event

    Required JSON value.

  • channel
    textrequired
    Channel

    Required text value.

  • thread_ts
    text
    Thread Ts

    Optional text value.

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • delivery_statusDelivery Status
  • receipt_statusReceipt Status
  • notification_errorNotification Error
  • parent_tsParent Ts
  • reply_tsReply Ts
  • textText
  • reply_textReply Text

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": [
    "event",
    "channel"
  ],
  "properties": {
    "event": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "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"
    },
    "thread_ts": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "text": {},
    "success": {},
    "reply_ts": {},
    "parent_ts": {},
    "reply_text": {},
    "receipt_status": {},
    "delivery_status": {},
    "notification_error": {}
  },
  "additionalProperties": true
}
View all GenHealth actions