MCPcopy Index your code
hub / github.com/slackapi/python-slack-sdk / calls_info

Method calls_info

slack_sdk/web/client.py:2309–2319  ·  view source on GitHub ↗

Returns information about a Call. https://docs.slack.dev/reference/methods/calls.info

(
        self,
        *,
        id: str,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

2307 return self.api_call("calls.end", http_verb="POST", params=kwargs)
2308
2309 def calls_info(
2310 self,
2311 *,
2312 id: str,
2313 **kwargs,
2314 ) -> SlackResponse:
2315 """Returns information about a Call.
2316 https://docs.slack.dev/reference/methods/calls.info
2317 """
2318 kwargs.update({"id": id})
2319 return self.api_call("calls.info", http_verb="POST", params=kwargs)
2320
2321 def calls_participants_add(
2322 self,

Callers 2

test_syncMethod · 0.45
test_asyncMethod · 0.45

Calls 1

api_callMethod · 0.45

Tested by 2

test_syncMethod · 0.36
test_asyncMethod · 0.36