This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.
Working with Users in JIRA
The following operations are available for working with users.Click an operation name to see details on how to use it.
For a sample proxy service that illustrates how to work with users, see Sample configuration .
The following operations are available for working with users:
Operation | Description |
---|---|
getUser | Gets information for the specified user. |
getUserPermissions | Gets the permissions for the current user. |
searchUser | Gets a list of users that match a search string. |
searchIssueViewableUsers | Gets a list of users that match a search string and have permission to view the specified issue or project. |
searchAssignableUser | Gets a list of users that match a search string and can be assigned the specified issue. |
Following is more information about these operations.
Getting information on a user
To get information about a specified user, use getUser
and specify the username.
<jira.getUser> <usernameFilter>{$ctx:usernameFilter}</usernameFilter> <key>{$ctx:key}</key> </jira.getUser>
Properties
usernameFilter
: Identifies the user whose information you want to get.- key : The user key.
Sample request
Following is a sample REST/JSON request that can be handled by the getUser operation.
{ "username":"admin", "password":"jira@jaffna", "uri":"https://testcon.atlassian.net", "usernameFilter":"admin" }
Related JIRA API
https://developer.atlassian.com/static/rest/jira/6.1.html#d2e3476
Getting the current user's permissions
To get information on the current user's permissions, use getUserPermissions
. You can optionally provide a specific context for which you want to get permissions (projectKey OR projectId OR issueKey OR issueId).
<jira.getUserPermissions> <projectKey>{$ctx:projectKey}</projectKey> <projectId>{$ctx:projectId}</projectId> <issueKey>{$ctx:issueKey}</issueKey> <issueId>{$ctx:issueId}</issueId> </jira.getUserPermissions>
Properties
projectKey
orprojectId
: Identifies the project for which you want to determine the current user's permissions.issueKey
orissueId
: Identifies the issue for which you want to determine the current user's permissions.
Sample request
Following is a sample REST/JSON request that can be handled by the getUserPermissions operation.
{ "username":"admin", "password":"jira@jaffna", "uri":"https://testcon.atlassian.net", "projectKey":"TEST" }
Related JIRA API
https://developer.atlassian.com/static/rest/jira/6.1.html#d2e2687
Searching for users
To search for users whose username, name, or email address match a search string, use jira.searchUser
and specify the search string.
<jira.searchUser> <usernameForSearch>{$ctx:usernameForSearch}</usernameForSearch> <startAt>{$ctx:startAt}</startAt> <maxResults>{$ctx:maxResults}</maxResults> <includeActive>{$ctx:{$ctx:includeActive}}</includeActive> <includeInactive>{$ctx:includeInactive}</includeInactive> </jira.searchUser>
Properties
usernameForSearch
: The search string used to search the username, name, or email address.startAt
: Optional. The 0-based index of the first user to return (default is 0).maxResults
: Optional. The maximum number of users to return, up to 1000 (default is 50).includeActive
: Optional. Whether to return active users (default is true).includeInactive
: Optional. Whether to return inactive users (default is false).
Sample request
Following is a sample REST/JSON request that can be handled by the getUserPermissions operation.
{ "username":"admin", "password":"jira@jaffna", "uri":"https://testcon.atlassian.net", "usernameForSearch":"james" }
Related JIRA API
https://developer.atlassian.com/static/rest/jira/6.1.html#d2e3757
Searching for users who can view an issue or project
To search for users whose username, name, or email address match a search string and have permission to view the specified issue or project, use searchIssueViewableUsers
and specify the search string and issue key or project key.
<jira.searchIssueViewableUsers> <usernameForSearch>{$ctx:usernameForSearch}</usernameForSearch> <issueKey>{$ctx:issueKey}</issueKey> <projectKey>{$ctx:projectKey}</projectKey> <startAt>{$ctx:startAt}</startAt> <maxResults>{$ctx:maxResults}</maxResults> </jira.searchIssueViewableUsers>
Properties
username
: The search string used to search the username, name, or email address.issueKey
: Identifies the issue that users must have permission to view to be included in the results.projectKey
: If you want to search for users who can browse a project instead of a specific issue, specifyprojectKey
instead ofissueKey
.startAt
: Optional. The 0-based index of the first user to return (default is 0).maxResults
: Optional. The maximum number of users to return, up to 1000 (default is 50).
Sample request
Following is a sample REST/JSON request that can be handled by the searchIssueViewableUsers operation.
{ "username":"admin", "password":"jira@jaffna", "uri":"https://testcon.atlassian.net", "usernameForSearch":"james", "projectKey":"TEST" }
Related JIRA API
https://developer.atlassian.com/static/rest/jira/6.1.html#d2e3887
Searching for users who can be assigned to an issue
To search for users whose username, name, or email address match a search string and can be assigned to a specific issue, use searchAssignableUser
. You specify the search string and either the project key (if getting users for a new issue you are creating) or the issue key (if getting users for an existing issue you are editing).
<jira.searchAssignableUser> <usernameForSearch>{$ctx:usernameForSearch}</usernameForSearch> <project>{$ctx:project}</project> <issueKey>{$ctx:issueKey}</issueKey> <startAt>{$ctx:startAt}</startAt> <maxResults>{$ctx:maxResults}</maxResults> <actionDescriptorId>{$ctx:actionDescriptorId}</actionDescriptorId> </jira.searchAssignableUser>
Properties
usernameForSearch
: The search string used to search the username, name, or email address.project
: Identifies the project in which you are creating a new issue and want to get a list of users who can be assigned to it.issueKey
: Identifies the issue you are editing so you can get a list of users who can be assigned to it.startAt
: Optional. The 0-based index of the first user to return (default is 0).maxResults
: Optional. The maximum number of users to return, up to 1000 (default is 50).actionDescriptorId
: Optional.The id of the workflow action.
Sample request
Following is a sample REST/JSON request that can be handled by the searchAssignableUser operation.
{ "username":"admin", "password":"jira@jaffna", "uri":"https://testcon.atlassian.net", "projectKey":"TEST" }
Related JIRA API
https://developer.atlassian.com/static/rest/jira/6.1.html#d2e3823
Sample Configuration
Following is a sample proxy service that illustrates how to connect to Jira with the init operation and use the getUser operation. The sample request for this proxy can be found in getUser sample request . You can use this sample as a template for using other operations in this category.
<proxy xmlns="http://ws.apache.org/ns/synapse" name="getUser" transports="https http" startOnLoad="true" trace="disable"> <description/> <target> <inSequence> <property name="username" expression="json-eval($.username)"/> <property name="password" expression="json-eval($.password)"/> <property name="uri" expression="json-eval($.uri)"/> <property name="usernameFilter" expression="json-eval($.usernameFilter)"/> <property name="key" expression="json-eval($.key)"/> <jira.init> <username>{$ctx:username}</username> <password>{$ctx:password}</password> <uri>{$ctx:uri}</uri> </jira.init> <jira.getUser> <usernameFilter>{$ctx:usernameFilter}</usernameFilter> <key>{$ctx:key}</key> </jira.getUser> <log level="full"/> <respond/> </inSequence> <outSequence/> <faultSequence/> </target> </proxy>