Registers participants removed from a Call. https://docs.slack.dev/reference/methods/calls.participants.remove
(
self,
*,
id: str,
users: Union[str, Sequence[Dict[str, str]]],
**kwargs,
)
| 2333 | return self.api_call("calls.participants.add", http_verb="POST", params=kwargs) |
| 2334 | |
| 2335 | def calls_participants_remove( |
| 2336 | self, |
| 2337 | *, |
| 2338 | id: str, |
| 2339 | users: Union[str, Sequence[Dict[str, str]]], |
| 2340 | **kwargs, |
| 2341 | ) -> SlackResponse: |
| 2342 | """Registers participants removed from a Call. |
| 2343 | https://docs.slack.dev/reference/methods/calls.participants.remove |
| 2344 | """ |
| 2345 | kwargs.update({"id": id}) |
| 2346 | _update_call_participants(kwargs, users) |
| 2347 | return self.api_call("calls.participants.remove", http_verb="POST", params=kwargs) |
| 2348 | |
| 2349 | def calls_update( |
| 2350 | self, |