jira_get_users
Search for Jira users by name, email, username, or account ID to retrieve display names, email addresses, account status, and account types with pagination support.
Instructions
Search for users by name, email, username, or account ID. Returns display name, email, account status, and account type. Supports pagination.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | No | Specific account ID to search for | |
maxResults | No | Maximum number of results to return | |
query | No | Search query for user name or email (partial matches supported) | |
startAt | No | Index of first result to return (for pagination) | |
username | No | Specific username to search for |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "Specific account ID to search for",
"type": "string"
},
"maxResults": {
"default": 50,
"description": "Maximum number of results to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query for user name or email (partial matches supported)",
"type": "string"
},
"startAt": {
"default": 0,
"description": "Index of first result to return (for pagination)",
"minimum": 0,
"type": "number"
},
"username": {
"description": "Specific username to search for",
"type": "string"
}
},
"required": [],
"type": "object"
}