send_formatted_message
Send formatted messages using Slack Block Kit to structure content with rich layouts and interactive elements in channels or threads.
Instructions
Send a message with Block Kit formatting
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| blocks | Yes | Block Kit blocks array | |
| channel | Yes | Channel ID | |
| text | Yes | Fallback text | |
| thread_ts | No | Optional thread timestamp to reply to |
Input Schema (JSON Schema)
{
"properties": {
"blocks": {
"description": "Block Kit blocks array",
"type": "array"
},
"channel": {
"description": "Channel ID",
"type": "string"
},
"text": {
"description": "Fallback text",
"type": "string"
},
"thread_ts": {
"description": "Optional thread timestamp to reply to",
"type": "string"
}
},
"required": [
"channel",
"text",
"blocks"
],
"type": "object"
}