send_notification_message
Send structured notifications to Slack channels with status indicators for success, warning, error, or info. Include a title, description, and optional details or thread replies for context.
Instructions
Send a structured notification message with status indicator.
Args: channel: Channel ID or name status: Status type (success, warning, error, info) title: Notification title description: Main description details: Additional details (optional) thread_ts: Thread timestamp for replies (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
description | Yes | ||
details | No | ||
status | Yes | ||
thread_ts | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"details": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Details"
},
"status": {
"title": "Status",
"type": "string"
},
"thread_ts": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Thread Ts"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"channel",
"status",
"title",
"description"
],
"type": "object"
}