You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: generated/Client.php
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2129,6 +2129,7 @@ public function conversationsLeave(array $formParameters = [], array $headerPara
2129
2129
* @var string $cursor Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`. Default value fetches the first "page" of the collection. See [pagination](/docs/pagination) for more detail.
2130
2130
* @var bool $exclude_archived Set to `true` to exclude archived channels from the list
2131
2131
* @var int $limit The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the list hasn't been reached. Must be an integer no larger than 1000.
2132
+
* @var string $team_id Encoded team id to list channels in, required if token belongs to org-wide app
* @var string $types Mix and match channel types by providing a comma-separated list of any combination of `public_channel`, `private_channel`, `mpim`, `im`
2134
2135
* }
@@ -3374,6 +3375,7 @@ public function usergroupsEnable(array $formParameters = [], array $headerParame
3374
3375
* @var bool $include_count include the number of users in each User Group
3375
3376
* @var bool $include_disabled include disabled User Groups
3376
3377
* @var bool $include_users include the list of users for each User Group
3378
+
* @var string $team_id Encoded team id to list user groups in, required if org token is used
@@ -3557,6 +3559,7 @@ public function usersInfo(array $queryParameters = [], string $fetch = self::FET
3557
3559
* @var string $cursor Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`. Default value fetches the first "page" of the collection. See [pagination](/docs/pagination) for more detail.
3558
3560
* @var bool $include_locale Set this to `true` to receive the locale for users. Defaults to `false`
3559
3561
* @var int $limit The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached. Providing no `limit` value will result in Slack attempting to deliver you the entire result set. If the collection is too large you may experience `limit_required` or HTTP 500 errors.
3562
+
* @var string $team_id Encoded team id to list users in, required if org token is used
Copy file name to clipboardExpand all lines: generated/Endpoint/ConversationsList.php
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ class ConversationsList extends \JoliCode\Slack\Api\Runtime\Client\BaseEndpoint
25
25
* @var string $cursor Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`. Default value fetches the first "page" of the collection. See [pagination](/docs/pagination) for more detail.
26
26
* @var bool $exclude_archived Set to `true` to exclude archived channels from the list
27
27
* @var int $limit The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the list hasn't been reached. Must be an integer no larger than 1000.
28
+
* @var string $team_id Encoded team id to list channels in, required if token belongs to org-wide app
* @var string $types Mix and match channel types by providing a comma-separated list of any combination of `public_channel`, `private_channel`, `mpim`, `im`
30
31
* }
@@ -62,12 +63,13 @@ public function getAuthenticationScopes(): array
Copy file name to clipboardExpand all lines: generated/Endpoint/UsersList.php
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ class UsersList extends \JoliCode\Slack\Api\Runtime\Client\BaseEndpoint implemen
25
25
* @var string $cursor Paginate through collections of data by setting the `cursor` parameter to a `next_cursor` attribute returned by a previous request's `response_metadata`. Default value fetches the first "page" of the collection. See [pagination](/docs/pagination) for more detail.
26
26
* @var bool $include_locale Set this to `true` to receive the locale for users. Defaults to `false`
27
27
* @var int $limit The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached. Providing no `limit` value will result in Slack attempting to deliver you the entire result set. If the collection is too large you may experience `limit_required` or HTTP 500 errors.
28
+
* @var string $team_id Encoded team id to list users in, required if org token is used
0 commit comments