list_workspace_users
Search and list users in your Google Workspace directory by name or email. Retrieve email addresses and other user details with optional filters and result limits for better organization management.
Instructions
List Google Workspace users in your organization's directory.
This tool allows you to search and list users in your Google Workspace directory,
including their email addresses and other information.
Args:
query: Optional search term to find specific users (name, email, etc.)
max_results: Maximum number of results to return (default: 50)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
query | No |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 50,
"title": "Max Results",
"type": "integer"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Query"
}
},
"title": "list_workspace_usersArguments",
"type": "object"
}