MCPcopy
hub / github.com/slackapi/python-slack-sdk / calls_participants_remove

Method calls_participants_remove

slack_sdk/web/client.py:2335–2347  ·  view source on GitHub ↗

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,
    )

Source from the content-addressed store, hash-verified

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,

Callers 1

test_syncMethod · 0.45

Calls 2

api_callMethod · 0.45

Tested by 1

test_syncMethod · 0.36