Creates a channel.
(
self,
*,
name: str,
**kwargs,
)
| 2487 | return self.api_call("channels.archive", json=kwargs) |
| 2488 | |
| 2489 | def channels_create( |
| 2490 | self, |
| 2491 | *, |
| 2492 | name: str, |
| 2493 | **kwargs, |
| 2494 | ) -> SlackResponse: |
| 2495 | """Creates a channel.""" |
| 2496 | kwargs.update({"name": name}) |
| 2497 | kwargs = _remove_none_values(kwargs) |
| 2498 | return self.api_call("channels.create", json=kwargs) |
| 2499 | |
| 2500 | def channels_history( |
| 2501 | self, |
nothing calls this directly
no test coverage detected