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

Method conversations_join

slack_sdk/web/client.py:3323–3333  ·  view source on GitHub ↗

Joins an existing conversation. https://docs.slack.dev/reference/methods/conversations.join

(
        self,
        *,
        channel: str,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

3321 return self.api_call("conversations.inviteShared", http_verb="GET", params=kwargs)
3322
3323 def conversations_join(
3324 self,
3325 *,
3326 channel: str,
3327 **kwargs,
3328 ) -> SlackResponse:
3329 """Joins an existing conversation.
3330 https://docs.slack.dev/reference/methods/conversations.join
3331 """
3332 kwargs.update({"channel": channel})
3333 return self.api_call("conversations.join", params=kwargs)
3334
3335 def conversations_kick(
3336 self,

Callers 1

channels.pyFile · 0.45

Calls 1

api_callMethod · 0.45

Tested by

no test coverage detected