List users
redmine_list_usersFind Redmine users by name, status, or group to obtain the numeric IDs required for assigned_to_id, author_id, and watcher_user_ids.
Instructions
Find Redmine users by name, status, or group — the way to turn a person's name into the numeric id that assigned_to_id, author_id, and watcher_user_ids require. Note that listing users requires admin permission on most Redmine instances; a non-admin API key gets a permission error, in which case ask the human for the id or use redmine_get_current_user for your own.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Filter by login, first name, last name, or email (substring match, case-insensitive). | |
| limit | No | Maximum number of users to return. | |
| offset | No | Pagination offset (skip N users). | |
| status | No | Account status: 1 active, 2 registered, 3 locked. Defaults to active users only. | |
| group_id | No | Only users belonging to this group id. |