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,
)
| 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, |
no test coverage detected