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

Method admin_apps_requests_cancel

slack_sdk/web/client.py:184–202  ·  view source on GitHub ↗

List app requests for a team/workspace. https://docs.slack.dev/reference/methods/admin.apps.requests.cancel

(
        self,
        *,
        request_id: str,
        enterprise_id: Optional[str] = None,
        team_id: Optional[str] = None,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

182 return self.api_call("admin.apps.clearResolution", http_verb="POST", params=kwargs)
183
184 def admin_apps_requests_cancel(
185 self,
186 *,
187 request_id: str,
188 enterprise_id: Optional[str] = None,
189 team_id: Optional[str] = None,
190 **kwargs,
191 ) -> SlackResponse:
192 """List app requests for a team/workspace.
193 https://docs.slack.dev/reference/methods/admin.apps.requests.cancel
194 """
195 kwargs.update(
196 {
197 "request_id": request_id,
198 "enterprise_id": enterprise_id,
199 "team_id": team_id,
200 }
201 )
202 return self.api_call("admin.apps.requests.cancel", http_verb="POST", params=kwargs)
203
204 def admin_apps_requests_list(
205 self,

Callers

nothing calls this directly

Calls 1

api_callMethod · 0.45

Tested by

no test coverage detected