Send Slack Message
Perform Send Slack Message through GenHealth.
send_slack_messagewrite
Inputs
- Channel
channeltextrequiredRequired text value.
- Message
messagetextarearequiredRequired text value.
- Thread Ts
thread_tsexpressionOptional literal value or workflow expression.
- Append Workflow Context
append_workflow_contextbooleanOptional true-or-false value.
Default:
false - Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccesschannelChanneltsTsdry_runDry RunerrorError
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
}