backlog_get_users
Retrieve project members from Backlog with their IDs, names, emails, and roles. Use the numeric ID to assign issues or filter by assignee.
Instructions
Fetch project members for a given Backlog project.
Returns a table of users with their numeric ID, userId, display name, email, and role. Use the ID column as assigneeId in backlog_get_issue_list to filter by assignee.
INPUT:
projectIdOrKey (required): project key e.g. "MYPROJ" or numeric ID e.g. "12345"
keyword (optional): filter by display name or userId, case-insensitive
EXAMPLE: List all members of project "MYPROJ" → { projectIdOrKey: "MYPROJ" } EXAMPLE: Find user named "Nguyen" → { projectIdOrKey: "MYPROJ", keyword: "nguyen" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectIdOrKey | Yes | Project key or numeric ID. Examples: "MYPROJ", "12345". Use backlog_get_projects to discover project keys. | |
| keyword | No | Filter by display name or userId (case-insensitive). Example: "nguyen" or "john.doe" |