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,
)
| 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, |