Slack
slack_get_channel_history
Get message history from a channel. Returns messages in reverse chronological order. Free plan: 90-day history limit.
Remote node2flow/slack
Other tools also called slack_get_channel_history?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Max messages to return (default: 100, max: 1000)"
},
"cursor": {
"type": "string",
"description": "Pagination cursor from previous response"
},
"latest": {
"type": "string",
"description": "End of time range (Unix timestamp)"
},
"oldest": {
"type": "string",
"description": "Start of time range (Unix timestamp, inclusive)"
},
"_fields": {
"type": "string",
"description": "Comma-separated list of fields to include in the response"
},
"channel": {
"type": "string",
"description": "Channel ID"
},
"inclusive": {
"type": "boolean",
"description": "Include messages at boundary timestamps"
}
}
}