delete_message
Remove a specific message from a Slack channel using the channel ID and message timestamp for precise deletion.
Instructions
Delete a message from a Slack channel.
Args: channel: Channel ID where the message exists ts: Timestamp of the message to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
ts | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
},
"ts": {
"title": "Ts",
"type": "string"
}
},
"required": [
"channel",
"ts"
],
"type": "object"
}