MCPcopy
hub / github.com/slackapi/python-slack-sdk / channels_unarchive

Method channels_unarchive

slack_sdk/web/client.py:2632–2641  ·  view source on GitHub ↗

Unarchives a channel.

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

Source from the content-addressed store, hash-verified

2630 return self.api_call("channels.setTopic", json=kwargs)
2631
2632 def channels_unarchive(
2633 self,
2634 *,
2635 channel: str,
2636 **kwargs,
2637 ) -> SlackResponse:
2638 """Unarchives a channel."""
2639 kwargs.update({"channel": channel})
2640 kwargs = _remove_none_values(kwargs)
2641 return self.api_call("channels.unarchive", json=kwargs)
2642
2643 # --------------------------
2644

Callers

nothing calls this directly

Calls 2

_remove_none_valuesFunction · 0.85
api_callMethod · 0.45

Tested by

no test coverage detected