list_users
Retrieve and filter active or locked users from Redmine project management systems, with optional limit settings for results, displayed in a table format.
Instructions
列出所有用戶
Args:
limit: 最大回傳數量 (預設 20,最大 100)
status_filter: 狀態篩選 ("active", "locked", "all")
Returns:
用戶列表,以表格格式呈現
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
status_filter | No | active |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"status_filter": {
"default": "active",
"title": "Status Filter",
"type": "string"
}
},
"title": "list_usersArguments",
"type": "object"
}