MCPcopy Index your code
hub / github.com/slackapi/python-slack-sdk / conversations_info

Method conversations_info

slack_sdk/web/client.py:3256–3274  ·  view source on GitHub ↗

Retrieve information about a conversation. https://docs.slack.dev/reference/methods/conversations.info

(
        self,
        *,
        channel: str,
        include_locale: Optional[bool] = None,
        include_num_members: Optional[bool] = None,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

3254 return self.api_call("conversations.history", http_verb="GET", params=kwargs)
3255
3256 def conversations_info(
3257 self,
3258 *,
3259 channel: str,
3260 include_locale: Optional[bool] = None,
3261 include_num_members: Optional[bool] = None,
3262 **kwargs,
3263 ) -> SlackResponse:
3264 """Retrieve information about a conversation.
3265 https://docs.slack.dev/reference/methods/conversations.info
3266 """
3267 kwargs.update(
3268 {
3269 "channel": channel,
3270 "include_locale": include_locale,
3271 "include_num_members": include_num_members,
3272 }
3273 )
3274 return self.api_call("conversations.info", http_verb="GET", params=kwargs)
3275
3276 def conversations_invite(
3277 self,

Callers 3

channels.pyFile · 0.45

Calls 1

api_callMethod · 0.45

Tested by

no test coverage detected