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

Method calls_participants_add

slack_sdk/web/client.py:2321–2333  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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,

Callers 2

test_syncMethod · 0.45
test_asyncMethod · 0.45

Calls 2

api_callMethod · 0.45

Tested by 2

test_syncMethod · 0.36
test_asyncMethod · 0.36