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

Method admin_apps_config_lookup

slack_sdk/web/client.py:338–351  ·  view source on GitHub ↗

Look up the app config for connectors by their IDs https://docs.slack.dev/reference/methods/admin.apps.config.lookup

(
        self,
        *,
        app_ids: Union[str, Sequence[str]],
        **kwargs,
    )

Source from the content-addressed store, hash-verified

336 return self.api_call("admin.apps.activities.list", params=kwargs)
337
338 def admin_apps_config_lookup(
339 self,
340 *,
341 app_ids: Union[str, Sequence[str]],
342 **kwargs,
343 ) -> SlackResponse:
344 """Look up the app config for connectors by their IDs
345 https://docs.slack.dev/reference/methods/admin.apps.config.lookup
346 """
347 if isinstance(app_ids, (list, tuple)):
348 kwargs.update({"app_ids": ",".join(app_ids)})
349 else:
350 kwargs.update({"app_ids": app_ids})
351 return self.api_call("admin.apps.config.lookup", params=kwargs)
352
353 def admin_apps_config_set(
354 self,

Callers

nothing calls this directly

Calls 1

api_callMethod · 0.45

Tested by

no test coverage detected