Registers new participants added to a Call. https://docs.slack.dev/reference/methods/calls.participants.add
(
self,
*,
id: str,
users: Union[str, Sequence[Dict[str, str]]],
**kwargs,
)
| 2319 | return self.api_call("calls.info", http_verb="POST", params=kwargs) |
| 2320 | |
| 2321 | def calls_participants_add( |
| 2322 | self, |
| 2323 | *, |
| 2324 | id: str, |
| 2325 | users: Union[str, Sequence[Dict[str, str]]], |
| 2326 | **kwargs, |
| 2327 | ) -> SlackResponse: |
| 2328 | """Registers new participants added to a Call. |
| 2329 | https://docs.slack.dev/reference/methods/calls.participants.add |
| 2330 | """ |
| 2331 | kwargs.update({"id": id}) |
| 2332 | _update_call_participants(kwargs, users) |
| 2333 | return self.api_call("calls.participants.add", http_verb="POST", params=kwargs) |
| 2334 | |
| 2335 | def calls_participants_remove( |
| 2336 | self, |