get_channel_history
Retrieve message history from Slack channels to review past conversations, analyze discussions, or find specific information shared within a team workspace.
Instructions
Get message history from a channel
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| channel | Yes | Channel ID | |
| latest | No | End of time range (timestamp) | |
| limit | No | Maximum number of messages to return | |
| oldest | No | Start of time range (timestamp) | 
Input Schema (JSON Schema)
{
  "properties": {
    "channel": {
      "description": "Channel ID",
      "type": "string"
    },
    "latest": {
      "description": "End of time range (timestamp)",
      "type": "string"
    },
    "limit": {
      "default": 100,
      "description": "Maximum number of messages to return",
      "maximum": 1000,
      "minimum": 1,
      "type": "number"
    },
    "oldest": {
      "description": "Start of time range (timestamp)",
      "type": "string"
    }
  },
  "required": [
    "channel"
  ],
  "type": "object"
}