manage_users
Search and get Jira users.
Actions
Section titled “Actions”| Action | Description | Required Params | Optional Params |
|---|---|---|---|
get_current | Get the authenticated user | ||
search | Search users by name/email | query | max_results |
get | Get user by account ID | account_id |
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
action | string | Required. get_current, search, or get |
query | string | Search query — display name, email, etc. (for search) |
account_id | string | User account ID (for get) |
max_results | int | Maximum results to return (for search, default 20) |
Examples
Section titled “Examples”Get current user
Section titled “Get current user”{ "action": "get_current"}Response:
{ "account_id": "5a0b1c2d3e4f5g6h7i8j", "display_name": "Jane Doe", "email": "jane@example.com", "account_type": "atlassian", "active": true, "time_zone": "America/New_York", "locale": "en_US"}Search users
Section titled “Search users”{ "action": "search", "query": "jane", "max_results": 5}Response:
{ "total": 2, "users": [ { "account_id": "5a0b1c2d3e4f5g6h7i8j", "display_name": "Jane Doe", "email": "jane@example.com", "active": true } ]}Get user by ID
Section titled “Get user by ID”{ "action": "get", "account_id": "5a0b1c2d3e4f5g6h7i8j"}