delete_message
Remove messages from Slack channels using channel ID and message timestamp to manage conversation content and maintain workspace organization.
Instructions
Delete a message
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| channel | Yes | Channel ID | |
| ts | Yes | Message timestamp | 
Input Schema (JSON Schema)
{
  "properties": {
    "channel": {
      "description": "Channel ID",
      "type": "string"
    },
    "ts": {
      "description": "Message timestamp",
      "type": "string"
    }
  },
  "required": [
    "channel",
    "ts"
  ],
  "type": "object"
}