@@ -1705,6 +1705,8 @@ <h1 class="title">Module <code>slack_sdk.web.legacy_client</code></h1>
17051705 self,
17061706 *,
17071707 team_id: str,
1708+ include_deactivated_user_workspaces: Optional[bool] = None,
1709+ is_active: Optional[bool] = None,
17081710 cursor: Optional[str] = None,
17091711 limit: Optional[int] = None,
17101712 **kwargs,
@@ -1715,6 +1717,8 @@ <h1 class="title">Module <code>slack_sdk.web.legacy_client</code></h1>
17151717 kwargs.update(
17161718 {
17171719 "team_id": team_id,
1720+ "include_deactivated_user_workspaces": include_deactivated_user_workspaces,
1721+ "is_active": is_active,
17181722 "cursor": cursor,
17191723 "limit": limit,
17201724 }
@@ -6752,6 +6756,8 @@ <h2 id="note">Note</h2>
67526756 self,
67536757 *,
67546758 team_id: str,
6759+ include_deactivated_user_workspaces: Optional[bool] = None,
6760+ is_active: Optional[bool] = None,
67556761 cursor: Optional[str] = None,
67566762 limit: Optional[int] = None,
67576763 **kwargs,
@@ -6762,6 +6768,8 @@ <h2 id="note">Note</h2>
67626768 kwargs.update(
67636769 {
67646770 "team_id": team_id,
6771+ "include_deactivated_user_workspaces": include_deactivated_user_workspaces,
6772+ "is_active": is_active,
67656773 "cursor": cursor,
67666774 "limit": limit,
67676775 }
@@ -12354,7 +12362,7 @@ <h3>Methods</h3>
1235412362</details>
1235512363</dd>
1235612364<dt id="slack_sdk.web.legacy_client.LegacyWebClient.admin_users_list"><code class="name flex">
12357- <span>def <span class="ident">admin_users_list</span></span>(<span>self, *, team_id: str, cursor: Optional[str] = None, limit: Optional[int] = None, **kwargs) ‑> Union[_asyncio.Future, <a title="slack_sdk.web.legacy_slack_response.LegacySlackResponse" href="legacy_slack_response.html#slack_sdk.web.legacy_slack_response.LegacySlackResponse">LegacySlackResponse</a>]</span>
12365+ <span>def <span class="ident">admin_users_list</span></span>(<span>self, *, team_id: str, include_deactivated_user_workspaces: Optional[bool] = None, is_active: Optional[bool] = None, cursor: Optional[str] = None, limit: Optional[int] = None, **kwargs) ‑> Union[_asyncio.Future, <a title="slack_sdk.web.legacy_slack_response.LegacySlackResponse" href="legacy_slack_response.html#slack_sdk.web.legacy_slack_response.LegacySlackResponse">LegacySlackResponse</a>]</span>
1235812366</code></dt>
1235912367<dd>
1236012368<div class="desc"><p>List users on a workspace
@@ -12367,6 +12375,8 @@ <h3>Methods</h3>
1236712375 self,
1236812376 *,
1236912377 team_id: str,
12378+ include_deactivated_user_workspaces: Optional[bool] = None,
12379+ is_active: Optional[bool] = None,
1237012380 cursor: Optional[str] = None,
1237112381 limit: Optional[int] = None,
1237212382 **kwargs,
@@ -12377,6 +12387,8 @@ <h3>Methods</h3>
1237712387 kwargs.update(
1237812388 {
1237912389 "team_id": team_id,
12390+ "include_deactivated_user_workspaces": include_deactivated_user_workspaces,
12391+ "is_active": is_active,
1238012392 "cursor": cursor,
1238112393 "limit": limit,
1238212394 }
0 commit comments