update_message
Modify existing Slack messages by providing channel ID, message timestamp, and new text content to update communication in your workspace.
Instructions
Update an existing message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel | Yes | Channel ID | |
| text | Yes | New message text | |
| ts | Yes | Message timestamp |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"description": "Channel ID",
"type": "string"
},
"text": {
"description": "New message text",
"type": "string"
},
"ts": {
"description": "Message timestamp",
"type": "string"
}
},
"required": [
"channel",
"ts",
"text"
],
"type": "object"
}