Skip to main content

Search Users

Returns a list of users that match the search string.

Parameters

ParameterDescription
LimitThe maximum number of items to return.
QueryA query string used to search username, name or e-mail address.

Example Output

[
{
"self": "http://www.example.com/jira/rest/api/2/user?username=fred",
"key": "JIRAUSER10100",
"name": "fred",
"emailAddress": "fred@example.com",
"avatarUrls": {
"48x48": "http://www.example.com/jira/secure/useravatar?size=large&ownerId=fred",
"24x24": "http://www.example.com/jira/secure/useravatar?size=small&ownerId=fred",
"16x16": "http://www.example.com/jira/secure/useravatar?size=xsmall&ownerId=fred",
"32x32": "http://www.example.com/jira/secure/useravatar?size=medium&ownerId=fred"
},
"displayName": "Fred F. User",
"active": true,
"deleted": false,
"timeZone": "Australia/Sydney",
"locale": "en_AU"
},
{
"self": "http://www.example.com/jira/rest/api/2/user?username=andrew",
"key": "JIRAUSER10200",
"name": "andrew",
"emailAddress": "andrew@example.com",
"avatarUrls": {
"48x48": "http://www.example.com/jira/secure/useravatar?size=large&ownerId=andrew",
"24x24": "http://www.example.com/jira/secure/useravatar?size=small&ownerId=andrew",
"16x16": "http://www.example.com/jira/secure/useravatar?size=xsmall&ownerId=andrew",
"32x32": "http://www.example.com/jira/secure/useravatar?size=medium&ownerId=andrew"
},
"displayName": "Andrew Anderson",
"active": false,
"deleted": false,
"timeZone": "Europe/Warsaw",
"locale": "en_UK"
}
]

Workflow Library Example

Search Users with Jira Data Center and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop