# Send Slack Event

> Perform Send Slack Event through GenHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health/send_slack_event](https://genhealth.ai/docs/workflows/integrations/gen-health/send_slack_event)

Integration: [GenHealth](https://genhealth.ai/docs/workflows/integrations/gen-health.md)

- Handler: `send_slack_event`

## Inputs

- `event` — Event (json, required)
  Required JSON value.
- `channel` — Channel (text, required)
  Required text value.
- `thread_ts` — Thread Ts (text)
  Optional text value.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `delivery_status` — Delivery Status
- `receipt_status` — Receipt Status
- `notification_error` — Notification Error
- `parent_ts` — Parent Ts
- `reply_ts` — Reply Ts
- `text` — Text
- `reply_text` — Reply 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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "text": {},
    "success": {},
    "reply_ts": {},
    "parent_ts": {},
    "reply_text": {},
    "receipt_status": {},
    "delivery_status": {},
    "notification_error": {}
  },
  "additionalProperties": true
}
```
