list_users
Retrieve workspace members from Slack to manage team access, coordinate communications, and organize user information for administrative tasks.
Instructions
List users in the Slack workspace
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of users to return |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"description": "Maximum number of users to return",
"maximum": 1000,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}