Slack
SLACKBOT_FETCH_MESSAGE_THREAD_FROM_A_CONVERSATION
Retrieves replies to a specific parent message in a Slack conversation, using the channel ID and the parent message's timestamp (`ts`).
Remote slackbot
Other tools also called SLACKBOT_FETCH_MESSAGE_THREAD_FROM_A_CONVERSATION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"ts": {
"type": "string",
"title": "Ts",
"examples": [
"1234567890.123456"
],
"description": "Timestamp of the parent message in the thread. Must be an existing message. If no replies, only the parent message itself is returned."
},
"limit": {
"type": "integer",
"title": "Limit",
"examples": [
100
],
"description": "Maximum number of messages to return. Fewer may be returned even if more are available."
},
"cursor": {
"type": "string",
"title": "Cursor",
"examples": [
"dXNlcjpVMEc5V0ZYTlo="
],
"description": "Pagination cursor from `response_metadata.next_cursor` of a previous response to get subsequent pages. If omitted, fetches the first page."
},
"latest": {
"type": "string",
"title": "Latest",
"default": null,
"examples": [
"1678886400.000000"
],
"nullable": true,
"description": "Latest message timestamp in the time range to include results."
},
"oldest": {
"type": "string",
"title": "Oldest",
"default": null,
"examples": [
"1678836000.000000"
],
"nullable": true,
"description": "Oldest message timestamp in the time range to include results."
},
"channel": {
"type": "string",
"title": "Channel",
"examples": [
"C0123456789"
],
"description": "ID of the conversation (channel, direct message, etc.) to fetch the thread from."
},
"inclusive": {
"type": "boolean",
"title": "Inclusive",
"examples": [
true
],
"description": "Whether to include messages with `latest` or `oldest` timestamps in results. Effective only if `latest` or `oldest` is specified."
}
}
}