Slack
SLACKBOT_RETRIEVE_CONVERSATION_INFORMATION
Retrieves metadata for a Slack conversation by ID (e.g., name, purpose, creation date, with options for member count/locale), excluding message content; requires a valid channel ID.
Remote slackbot
Other tools also called SLACKBOT_RETRIEVE_CONVERSATION_INFORMATION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"channel": {
"type": "string",
"title": "Channel",
"examples": [
"C1234567890",
"D0G9QPYHR",
"G01234567"
],
"description": "The ID of the conversation (channel, direct message, or multi-person direct message) to retrieve information for."
},
"include_locale": {
"type": "boolean",
"title": "Include Locale",
"description": "If true, the response will include the locale setting for the conversation. Defaults to false."
},
"include_num_members": {
"type": "boolean",
"title": "Include Num Members",
"description": "If true, the response will include the number of members in the conversation. Defaults to false."
}
}
}