Sets the purpose for a channel.
(
self,
*,
channel: str,
purpose: str,
**kwargs,
)
| 2606 | return self.api_call("channels.replies", http_verb="GET", params=kwargs) |
| 2607 | |
| 2608 | def channels_setPurpose( |
| 2609 | self, |
| 2610 | *, |
| 2611 | channel: str, |
| 2612 | purpose: str, |
| 2613 | **kwargs, |
| 2614 | ) -> SlackResponse: |
| 2615 | """Sets the purpose for a channel.""" |
| 2616 | kwargs.update({"channel": channel, "purpose": purpose}) |
| 2617 | kwargs = _remove_none_values(kwargs) |
| 2618 | return self.api_call("channels.setPurpose", json=kwargs) |
| 2619 | |
| 2620 | def channels_setTopic( |
| 2621 | self, |
nothing calls this directly
no test coverage detected