Slack
SLACK_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 slack
Other tools also called SLACK_FETCH_MESSAGE_THREAD_FROM_A_CONVERSATION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"ts": {
"type": "string",
"description": "Timestamp of the parent message in the thread. Must be an existing message. If no replies, only the parent message itself is returned.\nExample: \"1234567890.123456\""
},
"limit": {
"type": "integer",
"description": "Maximum number of messages to return. Fewer may be returned even if more are available.\nExample: 100"
},
"cursor": {
"type": "string",
"description": "Pagination cursor from `response_metadata.next_cursor` of a previous response to get subsequent pages. If omitted, fetches the first page.\nExample: \"dXNlcjpVMEc5V0ZYTlo=\""
},
"latest": {
"type": [
"string",
"null"
],
"default": null,
"description": "Latest message timestamp in the time range to include results.\nExample: \"1678886400.000000\""
},
"oldest": {
"type": [
"string",
"null"
],
"default": null,
"description": "Oldest message timestamp in the time range to include results.\nExample: \"1678836000.000000\""
},
"channel": {
"type": "string",
"description": "ID of the conversation (channel, direct message, etc.) to fetch the thread from.\nExample: \"C0123456789\""
},
"inclusive": {
"type": "boolean",
"description": "Whether to include messages with `latest` or `oldest` timestamps in results. Effective only if `latest` or `oldest` is specified.\nExample: true"
}
}
}