get_channel_history
Retrieve message history from a Slack channel by specifying the channel ID, message limit, and timestamps for filtering. Manage conversations and analyze data effectively.
Instructions
Get message history for a Slack channel.
Args: channel: Channel ID limit: Maximum number of messages to return oldest: Only messages after this timestamp latest: Only messages before this timestamp
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
latest | No | ||
limit | No | ||
oldest | No |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
},
"latest": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Latest"
},
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"oldest": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Oldest"
}
},
"required": [
"channel"
],
"type": "object"
}