slack_get_users
Retrieve a paginated list of all workspace users with their basic profile information to access team member details and manage user data.
Instructions
Get a list of all users in the workspace with their basic profile information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor for next page of results | |
limit | No | Maximum number of users to return (default 100, max 200) |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor for next page of results",
"type": "string"
},
"limit": {
"default": 100,
"description": "Maximum number of users to return (default 100, max 200)",
"type": "number"
}
},
"type": "object"
}