Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gkowalc/atlassian-python-api
Browse files Browse the repository at this point in the history
  • Loading branch information
gkowalc committed Apr 21, 2024
2 parents 19aaf29 + 7b359a2 commit 8233f84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion atlassian/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.41.11
3.41.12
6 changes: 5 additions & 1 deletion docs/jira.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,15 @@ Manage users
# Get web sudo cookies using normal http request
jira.user_get_websudo()
# Fuzzy search using emailAddress or displayName
# Fuzzy search using emailAddress or displayName for Jira Cloud
jira.user_find_by_user_string(query="[email protected]", start=0, limit=50, include_inactive_users=False)
jira.user_find_by_user_string(query="a.user", start=0, limit=50, include_inactive_users=False)
jira.user_find_by_user_string(query="a user")
jira.user_find_by_user_string(account_id="a-users-account-id")
# for DC edition
jira.user_find_by_user_string(username="a.user")
jira.user_find_by_user_string(username="a user")
jira.user_find_by_user_string(username="a")
# Get groups of a user. This API is only available for Jira Cloud platform.
jira.get_user_groups(account_id)
Expand Down

0 comments on commit 8233f84

Please sign in to comment.