Slack
SLACK_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 slack
Other tools also called SLACK_RETRIEVE_CONVERSATION_INFORMATION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"channel": {
"type": "string",
"description": "The ID of the conversation (channel, direct message, or multi-person direct message) to retrieve information for.\nExamples:\n \"C1234567890\"\n \"D0G9QPYHR\"\n \"G01234567\""
},
"include_locale": {
"type": "boolean",
"description": "If true, the response will include the locale setting for the conversation. Defaults to false."
},
"include_num_members": {
"type": "boolean",
"description": "If true, the response will include the number of members in the conversation. Defaults to false."
}
}
}