Slack
SLACKBOT_LIST_ALL_TEAM_USERS_WITH_PAGINATION
DEPRECATED: Retrieves a paginated list of all users in a Slack workspace. Use `list_all_users` instead.
Remote slackbot
Other tools also called SLACKBOT_LIST_ALL_TEAM_USERS_WITH_PAGINATION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"title": "Limit",
"default": 1,
"examples": [
"20",
"100",
"200"
],
"description": "Maximum number of items to return per page; fewer may be returned if the end of the list is reached. Recommended to set a value (e.g., 100) as Slack may error for large workspaces if omitted."
},
"cursor": {
"type": "string",
"title": "Cursor",
"examples": [
"dXNlcjpVMDYxREk0STM=",
"dXNlcjpVMDYxREk0STQ="
],
"description": "Pagination cursor for fetching subsequent pages. Set to `next_cursor` from a previous response's `response_metadata`. Omit for the first page."
},
"include_locale": {
"type": "boolean",
"title": "Include Locale",
"examples": [
"true",
"false"
],
"description": "Include the `locale` field for each user. Defaults to `false`."
}
}
}