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

Method calls_end

slack_sdk/web/client.py:2296–2307  ·  view source on GitHub ↗

Ends a Call. https://docs.slack.dev/reference/methods/calls.end

(
        self,
        *,
        id: str,
        duration: Optional[int] = None,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

2294 return self.api_call("calls.add", http_verb="POST", params=kwargs)
2295
2296 def calls_end(
2297 self,
2298 *,
2299 id: str,
2300 duration: Optional[int] = None,
2301 **kwargs,
2302 ) -> SlackResponse:
2303 """Ends a Call.
2304 https://docs.slack.dev/reference/methods/calls.end
2305 """
2306 kwargs.update({"id": id, "duration": duration})
2307 return self.api_call("calls.end", http_verb="POST", params=kwargs)
2308
2309 def calls_info(
2310 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