Skip to content

manage_users

Search and get Jira users.

ActionDescriptionRequired ParamsOptional Params
get_currentGet the authenticated user
searchSearch users by name/emailquerymax_results
getGet user by account IDaccount_id
ParameterTypeDescription
actionstringRequired. get_current, search, or get
querystringSearch query — display name, email, etc. (for search)
account_idstringUser account ID (for get)
max_resultsintMaximum results to return (for search, default 20)
{
"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"
}
{
"action": "search",
"query": "jane",
"max_results": 5
}

Response:

{
"total": 2,
"users": [
{
"account_id": "5a0b1c2d3e4f5g6h7i8j",
"display_name": "Jane Doe",
"email": "jane@example.com",
"active": true
}
]
}
{
"action": "get",
"account_id": "5a0b1c2d3e4f5g6h7i8j"
}