list-workspace-members
Retrieve all workspace members to identify team contacts for task assignment and collaboration. Search by name or email and paginate results for efficient team management.
Instructions
List all workspace members for task assignment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination | |
pageSize | No | Number of results per page | |
search | No | Search by name or email |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "Page number for pagination",
"type": "number"
},
"pageSize": {
"default": 25,
"description": "Number of results per page",
"type": "number"
},
"search": {
"description": "Search by name or email",
"type": "string"
}
},
"type": "object"
}