list_users
Retrieve a list of all users in a Slack workspace, with options to limit results and include locale details for effective user management.
Instructions
List all users in the Slack workspace.
Args: limit: Maximum number of users to return include_locale: Include locale information for each user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_locale | No | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"include_locale": {
"default": false,
"title": "Include Locale",
"type": "boolean"
},
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
}
},
"type": "object"
}