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

Method admin_apps_clearResolution

slack_sdk/web/client.py:164–182  ·  view source on GitHub ↗

Clear an app resolution https://docs.slack.dev/reference/methods/admin.apps.clearResolution

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

Source from the content-addressed store, hash-verified

162 return self.api_call("admin.apps.approved.list", http_verb="GET", params=kwargs)
163
164 def admin_apps_clearResolution(
165 self,
166 *,
167 app_id: str,
168 enterprise_id: Optional[str] = None,
169 team_id: Optional[str] = None,
170 **kwargs,
171 ) -> SlackResponse:
172 """Clear an app resolution
173 https://docs.slack.dev/reference/methods/admin.apps.clearResolution
174 """
175 kwargs.update(
176 {
177 "app_id": app_id,
178 "enterprise_id": enterprise_id,
179 "team_id": team_id,
180 }
181 )
182 return self.api_call("admin.apps.clearResolution", http_verb="POST", params=kwargs)
183
184 def admin_apps_requests_cancel(
185 self,

Callers

nothing calls this directly

Calls 1

api_callMethod · 0.45

Tested by

no test coverage detected