6. API Documentation¶
6.1. JIRA¶
-
class
jira.
JIRA
(server=None, options=None, basic_auth=None, oauth=None, jwt=None, kerberos=False, kerberos_options=None, validate=False, get_server_info=True, async_=False, async_workers=5, logging=True, max_retries=3, proxies=None, timeout=None, auth=None)[source]¶ Bases:
object
User interface to Jira.
Clients interact with Jira by constructing an instance of this object and calling its methods. For addressable resources in Jira – those with “self” links – an appropriate subclass of
Resource
will be returned with customizedupdate()
anddelete()
methods, along with attribute access to fields. This means that calls of the formissue.fields.summary
will be resolved into the proper lookups to return the JSON value at that mapping. Methods that do not return resources will return a dict constructed from the JSON response or a scalar value; see each method’s documentation for details on what that method returns.Without any arguments, this client will connect anonymously to the Jira instance started by the Atlassian Plugin SDK from one of the ‘atlas-run’,
atlas-debug
, oratlas-run-standalone
commands. By default, this instance runs athttp://localhost:2990/jira
. Theoptions
argument can be used to set the Jira instance to use.Authentication is handled with the
basic_auth
argument. If authentication is supplied (and is accepted by Jira), the client will remember it for subsequent requests.For quick command line access to a server, see the
jirashell
script included with this distribution.The easiest way to instantiate is using
j = JIRA("https://jira.atlassian.com")
- Parameters
options –
Specify the server and properties this client will use. Use a dict with any of the following properties:
server – the server address and context path to use. Defaults to
http://localhost:2990/jira
.rest_path – the root REST path to use. Defaults to
api
, where the Jira REST resources live.rest_api_version – the version of the REST resources under rest_path to use. Defaults to
2
.- agile_rest_path - the REST path to use for Jira Agile requests. Defaults to
greenhopper
(old, private API). Check GreenHopperResource for other supported values.
- agile_rest_path - the REST path to use for Jira Agile requests. Defaults to
verify – Verify SSL certs. Defaults to
True
.client_cert – a tuple of (cert,key) for the requests library for client side SSL
check_update – Check whether using the newest python-jira library version.
cookies – A dict of custom cookies that are sent in all requests to the server.
basic_auth – A tuple of username and password to use when establishing a session via HTTP BASIC authentication.
oauth –
A dict of properties for OAuth authentication. The following properties are required:
access_token – OAuth access token for the user
access_token_secret – OAuth access token secret to sign with the key
consumer_key – key of the OAuth application link defined in Jira
key_cert – private key file to sign requests with (should be the pair of the public key supplied to Jira in the OAuth application link)
kerberos – If true it will enable Kerberos authentication.
kerberos_options –
A dict of properties for Kerberos authentication. The following properties are possible:
mutual_authentication – string DISABLED or OPTIONAL.
Example kerberos_options structure:
{'mutual_authentication': 'DISABLED'}
jwt –
A dict of properties for JWT authentication supported by Atlassian Connect. The following properties are required:
secret – shared secret as delivered during ‘installed’ lifecycle event (see https://developer.atlassian.com/static/connect/docs/latest/modules/lifecycle.html for details)
payload – dict of fields to be inserted in the JWT payload, e.g. ‘iss’
Example jwt structure:
{'secret': SHARED_SECRET, 'payload': {'iss': PLUGIN_KEY}}
validate – If true it will validate your credentials first. Remember that if you are accessing Jira as anonymous it will fail to instantiate.
get_server_info – If true it will fetch server version info first to determine if some API calls are available.
async – To enable asynchronous requests for those actions where we implemented it, like issue update() or delete().
async_workers – Set the number of worker threads for async operations.
timeout – Set a read/connect timeout for the underlying calls to Jira (default: None) Obviously this means that you cannot rely on the return code when this is enabled.
-
AGILE_BASE_URL
= '{server}/rest/{agile_rest_path}/{agile_rest_api_version}/{path}'¶
-
DEFAULT_OPTIONS
= {'agile_rest_api_version': '1.0', 'agile_rest_path': 'greenhopper', 'async': False, 'async_workers': 5, 'auth_url': '/rest/auth/1/session', 'check_update': False, 'client_cert': None, 'context_path': '/', 'delay_reload': 0, 'headers': {'Cache-Control': 'no-cache', 'Content-Type': 'application/json', 'X-Atlassian-Token': 'no-check'}, 'resilient': True, 'rest_api_version': '2', 'rest_path': 'api', 'server': 'http://localhost:2990/jira', 'verify': True}¶
-
JIRA_BASE_URL
= '{server}/rest/{rest_path}/{rest_api_version}/{path}'¶
-
add_attachment
(issue, attachment, filename=None)[source]¶ Attach an attachment to an issue and returns a Resource for it.
The client will not attempt to open or validate the attachment; it expects a file-like object to be ready for its use. The user is still responsible for tidying up (e.g., closing the file, killing the socket, etc.)
- Parameters
issue (str) – the issue to attach the attachment to
attachment (BufferedReader) – file-like object to attach to the issue, also works if it is a string with the filename.
filename (str) – optional name for the attached file. If omitted, the file object’s
name
attribute is used. If you acquired the file-like object by any other method thanopen()
, make sure that a name is specified in one way or the other.
- Return type
Attachment
-
add_comment
(issue, body, visibility=None, is_internal=False)[source]¶ Add a comment from the current authenticated user on the specified issue and return a Resource for it.
The issue identifier and comment body are required.
- Parameters
issue (str) – ID or key of the issue to add the comment to
body (str) – Text of the comment to add
visibility (Optional[Dict[str, str]]) – a dict containing two entries: “type” and “value”. “type” is ‘role’ (or ‘group’ if the Jira server has configured comment visibility for groups) and ‘value’ is the name of the role (or group) to which viewing of this comment will be restricted.
is_internal (bool) – Defines whether a comment has to be marked as ‘Internal’ in Jira Service Desk (Default: False)
- Return type
-
add_issues_to_epic
(epic_id, issue_keys, ignore_epics=True)[source]¶ Add the issues in
issue_keys
to theepic_id
.
-
add_issues_to_sprint
(sprint_id, issue_keys)[source]¶ Add the issues in
issue_keys
to thesprint_id
.The sprint must be started but not completed.
If a sprint was completed, then have to also edit the history of the issue so that it was added to the sprint before it was completed, preferably before it started. A completed sprint’s issues also all have a resolution set before the completion date.
If a sprint was not started, then have to edit the marker and copy the rank of each issue too.
-
add_remote_link
(issue, destination, globalId=None, application=None, relationship=None)[source]¶ Add a remote link from an issue to an external application and returns a remote link Resource for it.
destination
should be a dict containing at leasturl
to the linked external URL andtitle
to display for the link inside Jira.For definitions of the allowable fields for
object
and the keyword argumentsglobalId
,application
andrelationship
, see https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+for+Remote+Issue+Links.- Parameters
issue – the issue to add the remote link to
destination – the link details to add (see the above link for details)
globalId – unique ID for the link (see the above link for details)
application – application information for the link (see the above link for details)
relationship – relationship description for the link (see the above link for details)
-
add_simple_link
(issue, object)[source]¶ Add a simple remote link from an issue to web resource.
- This avoids the admin access problems from add_remote_link by just
using a simple object and presuming all fields are correct and not requiring more complex
application
data.object
should be a dict containing at leasturl
to thelinked external URL and
title
to display for the link inside Jira.
For definitions of the allowable fields for
object
, see https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+for+Remote+Issue+Links.- Parameters
issue – the issue to add the remote link to
object – the dictionary used to create remotelink data
-
add_user
(username, email, directoryId=1, password=None, fullname=None, notify=False, active=True, ignore_existing=False, application_keys=None)[source]¶ Create a new Jira user.
- Parameters
username (str) – the username of the new user
email (str) – email address of the new user
directoryId (int) – The directory ID the new user should be a part of (Default: 1)
password (Optional[str]) – Optional, the password for the new user
fullname (Optional[str]) – Optional, the full name of the new user
notify (bool) – Whether or not to send a notification to the new user. (Default: False)
active (bool) – Whether or not to make the new user active upon creation. (Default: True)
ignore_existing (bool) – Whether or not to ignore and existing user. (Default: False)
applicationKeys (Optional[list]) – Keys of products user should have access to
- Returns
Whether or not the user creation was successful.
- Return type
- Raises
JIRAError – If username already exists and ignore_existing has not been set to True.
-
add_vote
(issue)[source]¶ Register a vote for the current authenticated user on an issue.
- Parameters
issue – ID or key of the issue to vote on
- Return type
Response
-
add_watcher
(issue, watcher)[source]¶ Add a user to an issue’s watchers list.
- Parameters
issue – ID or key of the issue affected
watcher – username of the user to add to the watchers list
-
add_worklog
(issue, timeSpent=None, timeSpentSeconds=None, adjustEstimate=None, newEstimate=None, reduceBy=None, comment=None, started=None, user=None)[source]¶ Add a new worklog entry on an issue and return a Resource for it.
- Parameters
issue – the issue to add the worklog to
timeSpent – a worklog entry with this amount of time spent, e.g. “2d”
adjustEstimate – (optional) allows the user to provide specific instructions to update the remaining time estimate of the issue. The value can either be
new
,leave
,manual
orauto
(default).newEstimate – the new value for the remaining estimate field. e.g. “2d”
reduceBy – the amount to reduce the remaining estimate by e.g. “2d”
started – Moment when the work is logged, if not specified will default to now
comment – optional worklog comment
- Return type
-
assign_issue
(issue, assignee)[source]¶ Assign an issue to a user. None will set it to unassigned. -1 will set it to Automatic.
-
async_do
(size=10)[source]¶ Execute all asynchronous jobs and wait for them to finish. By default it will run on 10 threads.
- Parameters
size – number of threads to run on.
-
attachment
(id)[source]¶ Get an attachment Resource from the server for the specified ID.
- Parameters
id (str) – The Attachment ID
- Return type
Attachment
-
backup
(filename='backup.zip', attachments=False)[source]¶ Will call jira export to backup as zipped xml. Returning with success does not mean that the backup process finished.
-
backup_complete
()[source]¶ Return boolean based on ‘alternativePercentage’ and ‘size’ returned from backup_progress (cloud only).
-
backup_progress
()[source]¶ Return status of cloud backup as a dict.
Is there a way to get progress for Server version?
-
boards
(startAt=0, maxResults=50, type=None, name=None, projectKeyOrID=None)[source]¶ Get a list of board resources.
- Parameters
startAt – The starting index of the returned boards. Base index: 0.
maxResults – The maximum number of boards to return per page. Default: 50
type – Filters results to boards of the specified type. Valid values: scrum, kanban.
name – Filters results to boards that match or partially match the specified name.
projectKeyOrID – Filters results to boards that match the specified project key or ID.
- Return type
ResultList[Board]
When old GreenHopper private API is used, paging is not enabled and all parameters are ignored.
-
checked_version
= False¶
-
comment
(issue, comment)[source]¶ Get a comment Resource from the server for the specified ID.
- Parameters
issue – ID or key of the issue to get the comment from
comment – ID of the comment to get
-
component
(id)[source]¶ Get a component Resource from the server.
- Parameters
id (str) – ID of the component to get
Get the count of related issues for a component.
- Parameters
id (integer) – ID of the component to use
-
confirm_project_avatar
(project, cropping_properties)[source]¶ Confirm the temporary avatar image previously uploaded with the specified cropping.
After a successful registry with
create_temp_project_avatar()
, use this method to confirm the avatar for use. The final avatar can be a subarea of the uploaded image, which is customized with thecropping_properties
: the return value ofcreate_temp_project_avatar()
should be used for this argument.- Parameters
project – ID or key of the project to confirm the avatar in
cropping_properties – a dict of cropping properties from
create_temp_project_avatar()
-
confirm_user_avatar
(user, cropping_properties)[source]¶ Confirm the temporary avatar image previously uploaded with the specified cropping.
After a successful registry with
create_temp_user_avatar()
, use this method to confirm the avatar for use. The final avatar can be a subarea of the uploaded image, which is customized with thecropping_properties
: the return value ofcreate_temp_user_avatar()
should be used for this argument.- Parameters
user (str) – the user to confirm the avatar for
cropping_properties (Dict[str,Any]) – a dict of cropping properties from
create_temp_user_avatar()
-
create_board
(name, project_ids, preset='scrum', location_type='user', location_id=None)[source]¶ Create a new board for the
project_ids
.- Parameters
name (str) – name of the board
project_ids (str) – the projects to create the board in
preset (kanban, scrum, diy) – What preset to use for this board. (Default: scrum)
location_type (user, project) – the location type. Available in cloud. (Default: user)
location_id (Optional[str]) – the id of project that the board should be located under. Omit this for a ‘user’ location_type. Available in cloud.
- Returns
The newly created board
- Return type
Board
-
create_component
(name, project, description=None, leadUserName=None, assigneeType=None, isAssigneeTypeValid=False)[source]¶ Create a component inside a project and return a Resource for it.
- Parameters
name (str) – name of the component
project (str) – key of the project to create the component in
description (str) – a description of the component
leadUserName (Optional[str]) – the username of the user responsible for this component
assigneeType (Optional[str]) – see the ComponentBean.AssigneeType class for valid values
isAssigneeTypeValid (bool) – boolean specifying whether the assignee type is acceptable (Default: False)
- Return type
Component
-
create_customer
(email, displayName)[source]¶ Create a new customer and return an issue Resource for it.
-
create_customer_request
(fields=None, prefetch=True, **fieldargs)[source]¶ Create a new customer request and return an issue Resource for it.
Each keyword argument (other than the predefined ones) is treated as a field name and the argument’s value is treated as the intended value for that field – if the fields argument is used, all other keyword arguments will be ignored.
By default, the client will immediately reload the issue Resource created by this method in order to return a complete Issue object to the caller; this behavior can be controlled through the ‘prefetch’ argument.
Jira projects may contain many different issue types. Some issue screens have different requirements for fields in a new issue. This information is available through the ‘createmeta’ method. Further examples are available here: https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Example+-+Create+Issue
- Parameters
- Return type
-
create_filter
(name=None, description=None, jql=None, favourite=None)[source]¶ Create a new filter and return a filter Resource for it.
-
create_issue
(fields=None, prefetch=True, **fieldargs)[source]¶ Create a new issue and return an issue Resource for it.
Each keyword argument (other than the predefined ones) is treated as a field name and the argument’s value is treated as the intended value for that field – if the fields argument is used, all other keyword arguments will be ignored.
By default, the client will immediately reload the issue Resource created by this method in order to return a complete Issue object to the caller; this behavior can be controlled through the ‘prefetch’ argument.
Jira projects may contain many different issue types. Some issue screens have different requirements for fields in a new issue. This information is available through the ‘createmeta’ method. Further examples are available here: https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Example+-+Create+Issue
- Parameters
- Return type
-
create_issue_link
(type, inwardIssue, outwardIssue, comment=None)[source]¶ Create a link between two issues.
- Parameters
type – the type of link to create
inwardIssue – the issue to link from
outwardIssue – the issue to link to
comment (Optional[Dict[str, Any]]) – a comment to add to the issues with the link. Should be a dict containing
body
andvisibility
fields:body
being the text of the comment andvisibility
being a dict containing two entries:type
andvalue
.type
isrole
(orgroup
if the Jira server has configured comment visibility for groups) andvalue
is the name of the role (or group) to which viewing of this comment will be restricted.
- Return type
Response
-
create_issues
(field_list, prefetch=True)[source]¶ Bulk create new issues and return an issue Resource for each successfully created issue.
See create_issue documentation for field information.
- Parameters
field_list (List[Dict[str, Any]]) – a list of dicts each containing field names and the values to use. Each dict is an individual issue to create and is subject to its minimum requirements.
prefetch (bool) – whether to reload the created issue Resource for each created issue so that all of its data is present in the value returned from this method.
- Return type
List[Dict[str, Any]]
-
create_project
(key, name=None, assignee=None, ptype='software', template_name=None, avatarId=None, issueSecurityScheme=None, permissionScheme=None, projectCategory=None, notificationScheme=10000, categoryId=None, url='')[source]¶ Create a project with the specified parameters.
- Parameters
key – Mandatory. Must match Jira project key requirements, usually only 2-10 uppercase characters.
name (Optional[str]) – If not specified it will use the key value.
assignee (Optional[str]) – accountId of the lead, if not specified it will use current user.
type – Determines the type of project should be created.
template_name (Optional[str]) – is used to create a project based on one of the existing project templates. If template_name is not specified, then it should use one of the default values.
- Type
- Returns
Should evaluate to False if it fails otherwise it will be the new project id.
- Return type
-
create_sprint
(name, board_id, startDate=None, endDate=None)[source]¶ Create a new sprint for the
board_id
.
-
create_temp_project_avatar
(project, filename, size, avatar_img, contentType=None, auto_confirm=False)[source]¶ Register an image file as a project avatar.
- The avatar created is temporary and must be confirmed before it can
be used.
- Avatar images are specified by a filename, size, and file object. By default, the client will attempt to
autodetect the picture’s content type: this mechanism relies on libmagic and will not work out of the box on Windows systems (see https://filemagic.readthedocs.io/en/latest/guide.html for details on how to install support). The
contentType
argument can be used to explicitly set the value (note that Jira will reject any type other than the well-known ones for images, e.g.image/jpg
,image/png
, etc.)- This method returns a dict of properties that can be used to crop a subarea of a larger image for use. This
dict should be saved and passed to
confirm_project_avatar()
to finish the avatar creation process. If you want to cut out the middleman and confirm the avatar with Jira’s default cropping, pass the ‘auto_confirm’ argument with a truthy value andconfirm_project_avatar()
will be called for you before this method returns.
- Parameters
project – ID or key of the project to create the avatar in
filename – name of the avatar file
size – size of the avatar file
avatar_img – file-like object holding the avatar
contentType – explicit specification for the avatar image’s content-type
auto_confirm (bool) – whether to automatically confirm the temporary avatar by calling
confirm_project_avatar()
with the return value of this method. (Default: False)
-
create_temp_user_avatar
(user, filename, size, avatar_img, contentType=None, auto_confirm=False)[source]¶ Register an image file as a user avatar.
The avatar created is temporary and must be confirmed before it can be used.
Avatar images are specified by a filename, size, and file object. By default, the client will attempt to autodetect the picture’s content type: this mechanism relies on
libmagic
and will not work out of the box on Windows systems (see http://filemagic.readthedocs.org/en/latest/guide.html for details on how to install support). ThecontentType
argument can be used to explicitly set the value (note that Jira will reject any type other than the well-known ones for images, e.g.image/jpg
,image/png
, etc.)This method returns a dict of properties that can be used to crop a subarea of a larger image for use. This dict should be saved and passed to
confirm_user_avatar()
to finish the avatar creation process. If you want to cut out the middleman and confirm the avatar with Jira’s default cropping, pass theauto_confirm
argument with a truthy value andconfirm_user_avatar()
will be called for you before this method returns.- Parameters
user (str) – User to register the avatar for
filename (str) – name of the avatar file
size (int) – size of the avatar file
avatar_img (bytes) – file-like object containing the avatar
contentType (Optional[Any]) – explicit specification for the avatar image’s content-type
auto_confirm (bool) – whether to automatically confirm the temporary avatar by calling
confirm_user_avatar()
with the return value of this method. (Default: False)
- Return type
NoReturn
-
create_version
(name, project, description=None, releaseDate=None, startDate=None, archived=False, released=False)[source]¶ Create a version in a project and return a Resource for it.
- Parameters
name (str) – name of the version to create
project (str) – key of the project to create the version in
description (str) – a description of the version
releaseDate (Optional[Any]) – the release date assigned to the version
startDate (Optional[Any]) – The start date for the version
archived (bool) – Denotes whether a version should be archived. (Default: False)
released (bool) – Denotes whether a version is released. (Default: False)
- Return type
Version
-
createmeta
(projectKeys=None, projectIds=[], issuetypeIds=None, issuetypeNames=None, expand=None)[source]¶ Get the metadata required to create issues, optionally filtered by projects and issue types.
- Parameters
projectKeys (Union[None, Tuple[str, str], str]) – keys of the projects to filter the results with. Can be a single value or a comma-delimited string. May be combined with projectIds.
projectIds (Union[List, Tuple[str, str]]) – IDs of the projects to filter the results with. Can be a single value or a comma-delimited string. May be combined with projectKeys.
issuetypeIds (Optional[List[str]]) – IDs of the issue types to filter the results with. Can be a single value or a comma-delimited string. May be combined with issuetypeNames.
issuetypeNames (Optional[str]) – Names of the issue types to filter the results with. Can be a single value or a comma-delimited string. May be combined with issuetypeIds.
expand (Optional[str]) – extra information to fetch inside each resource.
- Return type
Dict[str, Any]
-
current_user
(field='key')[source]¶ Returns the username or emailAddress of the current user. For anonymous users it will return a value that evaluates as False.
- Return type
-
custom_field_option
(id)[source]¶ Get a custom field option Resource from the server.
- Parameters
id (str) – ID of the custom field to use
- Return type
CustomFieldOption
-
dashboard
(id)[source]¶ Get a dashboard Resource from the server.
- Parameters
id (str) – ID of the dashboard to get.
- Return type
Dashboard
-
dashboards
(filter=None, startAt=0, maxResults=20)[source]¶ Return a ResultList of Dashboard resources and a
total
count.- Parameters
filter (Optional[str]) – either “favourite” or “my”, the type of dashboards to return
startAt (int) – index of the first dashboard to return (Default: 0)
maxResults (int) – maximum number of dashboards to return. If maxResults evaluates as False, it will try to get all items in batches. (Default: 20)
- Return type
ResultList
-
delete_attachment
(id)[source]¶ Delete attachment by id.
- Parameters
id (str) – ID of the attachment to delete
-
delete_component
(id)[source]¶ Delete component by id.
- Parameters
id (str) – ID of the component to use
- Return type
Response
-
delete_issue_link
(id)[source]¶ Delete a link between two issues.
- Parameters
id – ID of the issue link to delete
-
delete_project
(pid)[source]¶ Delete project from Jira.
- Parameters
pid (str) – Jira projectID or Project or slug
- Returns
True if project was deleted
- Return type
- Raises
JIRAError – If project not found or not enough permissions
ValueError – If pid parameter is not Project, slug or ProjectID
-
delete_project_avatar
(project, avatar)[source]¶ Delete a project’s avatar.
- Parameters
project – ID or key of the project to delete the avatar from
avatar – ID of the avatar to delete
-
delete_user_avatar
(username, avatar)[source]¶ Delete a user’s avatar.
- Parameters
username – the user to delete the avatar from
avatar – ID of the avatar to remove
-
favourite_filters
()[source]¶ Get a list of filter Resources which are the favourites of the currently authenticated user.
- Return type
List[Filter]
-
filter
(id)[source]¶ Get a filter Resource from the server.
- Parameters
id (str) – ID of the filter to get.
- Return type
Filter
-
find
(resource_format, ids=None)[source]¶ Find Resource object for any addressable resource on the server.
This method is a universal resource locator for any REST-ful resource in Jira. The argument
resource_format
is a string of the formresource
,resource/{0}
,resource/{0}/sub
,resource/{0}/sub/{1}
, etc. The format placeholders will be populated from theids
argument if present. The existing authentication session will be used.The return value is an untyped Resource object, which will not support specialized
Resource.update()
orResource.delete()
behavior. Moreover, it will not know to return an issue Resource if the client uses the resource issue path. For this reason, it is intended to support resources that are not included in the standard Atlassian REST API.
-
find_transitionid_by_name
(issue, transition_name)[source]¶ Get a transitionid available on the specified issue to the current user.
Look at https://developer.atlassian.com/static/rest/jira/6.1.html#d2e1074 for json reference
- Parameters
issue – ID or key of the issue to get the transitions from
trans_name – iname of transition we are looking for
-
get_project_version_by_name
(project, version_name)[source]¶ Get a version Resource by its name present on a project.
-
group
(id, expand=None)[source]¶ Get a group Resource from the server.
- Parameters
id – ID of the group to get
id – str
expand (Optional[Any]) – Extra information to fetch inside each resource
- Return type
User
-
group_members
(group)[source]¶ Return a hash or users with their information. Requires Jira 6.0 or will raise NotImplemented.
- Parameters
group (str) – Name of the group.
-
groups
(query=None, exclude=None, maxResults=9999)[source]¶ Return a list of groups matching the specified criteria.
-
incompletedIssuesEstimateSum
(board_id, sprint_id)[source]¶ Return the total incompleted points this sprint.
-
issue_link
(id)[source]¶ Get an issue link Resource from the server.
- Parameters
id – ID of the issue link to get
-
issue_link_type
(id)[source]¶ Get an issue link type Resource from the server.
- Parameters
id (str) – ID of the issue link type to get
- Return type
IssueLinkType
-
issue_link_types
(force=False)[source]¶ Get a list of issue link type Resources from the server.
- Return type
List[IssueLinkType]
-
issue_type
(id)[source]¶ Get an issue type Resource from the server.
- Parameters
id – ID of the issue type to get
- Return type
IssueType
-
issue_type_by_name
(name)[source]¶ - Parameters
name (str) – Name of the issue type
- Return type
IssueType
-
issue_types
()[source]¶ Get a list of issue type Resources from the server.
- Return type
List[IssueType]
-
kill_websudo
()[source]¶ Destroy the user’s current WebSudo session.
Works only for non-cloud deployments, for others does nothing.
- Return type
Optional[Any]
-
move_to_backlog
(issue_keys)[source]¶ Move issues in
issue_keys
to the backlog, removing them from all sprints that have not been completed.- Parameters
issue_keys – the issues to move to the backlog
issue_keys – str
- Raises
JIRAError – If moving issues to backlog fails
-
move_version
(id, after=None, position=None)[source]¶ Move a version within a project’s ordered version list and return a new version Resource for it.
One, but not both, of
after
andposition
must be specified.- Parameters
id – ID of the version to move
after – the self attribute of a version to place the specified version after (that is, higher in the list)
position – the absolute position to move this version to: must be one of
First
,Last
,Earlier
, orLater
-
my_permissions
(projectKey=None, projectId=None, issueKey=None, issueId=None)[source]¶ Get a dict of all available permissions on the server.
- Parameters
projectKey (Optional[str]) – limit returned permissions to the specified project
projectId (Optional[str]) – limit returned permissions to the specified project
issueKey (Optional[str]) – limit returned permissions to the specified issue
issueId (Optional[str]) – limit returned permissions to the specified issue
- Return type
-
project
(id)[source]¶ Get a project Resource from the server.
- Parameters
id – ID or key of the project to get
- Return type
Project
-
project_avatars
(project)[source]¶ Get a dict of all avatars for a project visible to the current authenticated user.
- Parameters
project – ID or key of the project to get avatars for
-
project_components
(project)[source]¶ Get a list of component Resources present on a project.
- Parameters
project (str) – ID or key of the project to get components from
- Return type
List[Component]
-
project_role
(project, id)[source]¶ Get a role Resource.
- Parameters
project – ID or key of the project to get the role from
id – ID of the role to get
-
project_roles
(project)[source]¶ Get a dict of role names to resource locations for a project.
- Parameters
project – ID or key of the project to get roles from
-
project_versions
(project)[source]¶ Get a list of version Resources present on a project.
- Parameters
project (str) – ID or key of the project to get versions from
- Return type
List[Version]
-
projects
()[source]¶ Get a list of project Resources from the server visible to the current authenticated user.
- Return type
List[Project]
-
rank
(issue, next_issue)[source]¶ Rank an issue before another using the default Ranking field, the one named ‘Rank’.
- Parameters
issue – issue key of the issue to be ranked before the second one.
next_issue – issue key of the second issue.
-
reindex
(force=False, background=True)[source]¶ Start jira re-indexing. Returns True if reindexing is in progress or not needed, or False.
If you call reindex() without any parameters it will perform a background reindex only if Jira thinks it should do it.
- Parameters
force – reindex even if Jira doesn’t say this is needed, False by default.
background – reindex in background, slower but does not impact the users, defaults to True.
-
remote_link
(issue, id)[source]¶ Get a remote link Resource from the server.
- Parameters
issue – the issue holding the remote link
id – ID of the remote link
-
remote_links
(issue)[source]¶ Get a list of remote link Resources from an issue.
- Parameters
issue – the issue to get remote links from
-
remove_user_from_group
(username, groupname)[source]¶ Remove a user from a group.
- Parameters
username – The user to remove from the group.
groupname – The group that the user will be removed from.
-
remove_vote
(issue)[source]¶ Remove the current authenticated user’s vote from an issue.
- Parameters
issue – ID or key of the issue to remove vote on
-
remove_watcher
(issue, watcher)[source]¶ Remove a user from an issue’s watch list.
- Parameters
issue – ID or key of the issue affected
watcher – accountId of the user to remove from the watchers list
- Return type
Response
-
removedIssuesEstimateSum
(board_id, sprint_id)[source]¶ Return the total incompleted points this sprint.
-
request_types
(service_desk)[source]¶ Returns request types supported by a service desk instance. :param service_desk: The service desk instance. :type service_desk: ServiceDesk :rtype: List[RequestType]
-
resolution
(id)[source]¶ Get a resolution Resource from the server.
- Parameters
id (str) – ID of the resolution to get
- Return type
Resolution
-
resolutions
()[source]¶ Get a list of resolution Resources from the server.
- Return type
List[Resolution]
-
role
()[source]¶ Return Jira role information.
- Returns
List of current user roles
- Return type
Iterable
-
search_allowed_users_for_issue
(user, issueKey=None, projectKey=None, startAt=0, maxResults=50)[source]¶ Get a list of user Resources that match a username string and have browse permission for the issue or project.
- Parameters
user (str) – a string to match usernames against.
issueKey (Optional[str]) – find users with browse permission for this issue.
projectKey (Optional[str]) – find users with browse permission for this project.
startAt (int) – index of the first user to return. (Default: 0)
maxResults (int) – maximum number of users to return. If maxResults evaluates as False, it will try to get all items in batches. (Default: 50)
-
search_assignable_users_for_issues
(username, project=None, issueKey=None, expand=None, startAt=0, maxResults=50)[source]¶ Get a list of user Resources that match the search string for assigning or creating issues.
This method is intended to find users that are eligible to create issues in a project or be assigned to an existing issue. When searching for eligible creators, specify a project. When searching for eligible assignees, specify an issue key.
- Parameters
username (str) – A string to match usernames against
project (Optional[str]) – Filter returned users by permission in this project (expected if a result will be used to create an issue)
issueKey (Optional[str]) – Filter returned users by this issue (expected if a result will be used to edit this issue)
expand (Optional[Any]) – Extra information to fetch inside each resource
startAt (int) – Index of the first user to return (Default: 0)
maxResults – maximum number of users to return. If maxResults evaluates as False, it will try to get all items in batches. (Default: 50)
- Return type
ResultList
-
search_assignable_users_for_projects
(username, projectKeys, startAt=0, maxResults=50)[source]¶ Get a list of user Resources that match the search string and can be assigned issues for projects.
- Parameters
username (str) – A string to match usernames against
projectKeys (str) – Comma-separated list of project keys to check for issue assignment permissions
startAt (int) – Index of the first user to return (Default: 0)
maxResults (int) – Maximum number of users to return. If maxResults evaluates as False, it will try to get all users in batches. (Default: 50)
- Return type
ResultList
-
search_issues
(jql_str, startAt=0, maxResults=50, validate_query=True, fields=None, expand=None, json_result=None)[source]¶ Get a
ResultList
of issue Resources matching a JQL search string.- Parameters
jql_str (str) – The JQL search string.
startAt (int) – Index of the first issue to return. (Default: 0)
maxResults (int) – Maximum number of issues to return. Total number of results is available in the
total
attribute of the returnedResultList
. If maxResults evaluates as False, it will try to get all issues in batches. (Default: 50)validate_query (bool) – Whether or not the query should be validated. (Default: True)
fields (Optional[str or list]) – comma-separated string or list of issue fields to include in the results. Default is to include all fields.
expand (Optional[str]) – extra information to fetch inside each resource
json_result (bool) – JSON response will be returned when this parameter is set to True. Otherwise,
ResultList
will be returned.
- Return type
dict or
ResultList
-
search_users
(user, startAt=0, maxResults=50, includeActive=True, includeInactive=False)[source]¶ Get a list of user Resources that match the specified search string.
- Parameters
user (str) – a string to match usernames, name or email against.
startAt (int) – index of the first user to return.
maxResults (int) – maximum number of users to return. If maxResults evaluates as False, it will try to get all items in batches.
includeActive (bool) – If true, then active users are included in the results. (Default: True)
includeInactive (bool) – If true, then inactive users are included in the results. (Default: False)
- Return type
ResultList
-
security_level
(id)[source]¶ Get a security level Resource.
- Parameters
id – ID of the security level to get
-
server_info
()[source]¶ Get a dict of server information for this Jira instance. :rtype: Dict[str, Any]
-
service_desk
(id)[source]¶ Get a Service Desk Resource from the server.
- Parameters
id (str) – ID or key of the Service Desk to get
- Return type
ServiceDesk
-
service_desks
()[source]¶ Get a list of ServiceDesk Resources from the server visible to the current authenticated user.
- Return type
List[ServiceDesk]
-
session
()[source]¶ Get a dict of the current authenticated user’s session information.
- Return type
User
-
set_project_avatar
(project, avatar)[source]¶ Set a project’s avatar.
- Parameters
project – ID or key of the project to set the avatar on
avatar – ID of the avatar to set
-
set_user_avatar
(username, avatar)[source]¶ Set a user’s avatar.
- Parameters
username – the user to set the avatar for
avatar – ID of the avatar to set
-
sprint
(id)[source]¶ Return the information about a sprint.
- Parameters
sprint_id (int) – the sprint retrieving issues from
- Return type
Sprint
-
sprint_info
(board_id, sprint_id)[source]¶ Return the information about a sprint.
- Parameters
board_id – the board retrieving issues from. Deprecated and ignored.
sprint_id – the sprint retrieving issues from
-
sprints
(board_id, extended=False, startAt=0, maxResults=50, state=None)[source]¶ Get a list of sprint GreenHopperResources.
- Parameters
board_id (int) – the board to get sprints from
extended (bool) – Used only by old GreenHopper API to fetch additional information like startDate, endDate, completeDate, much slower because it requires an additional requests for each sprint. New Jira Agile API always returns this information without a need for additional requests.
startAt (int) – the index of the first sprint to return (0 based)
maxResults (int) – the maximum number of sprints to return
state (str) – Filters results to sprints in specified states. Valid values: future, active, closed. You can define multiple states separated by commas
- Return type
list of
Sprint
- Returns
(content depends on API version, but always contains id, name, state, startDate and endDate) When old GreenHopper private API is used, paging is not enabled, and startAt, maxResults and state parameters are ignored.
-
status
(id: str) → jira.resources.Status[source]¶ Get a status Resource from the server.
- Parameters
id – ID of the status resource to get
-
statuscategories
()[source]¶ Get a list of status category Resources from the server.
- Return type
List[StatusCategory]
-
statuscategory
(id)[source]¶ Get a status category Resource from the server.
- Parameters
id (int) – ID of the status category resource to get
- Return type
StatusCategory
-
supports_service_desk
()[source]¶ Returns whether or not the Jira instance supports service desk.
- Return type
-
transition_issue
(issue, transition, fields=None, comment=None, worklog=None, **fieldargs)[source]¶ Perform a transition on an issue.
Each keyword argument (other than the predefined ones) is treated as a field name and the argument’s value is treated as the intended value for that field – if the fields argument is used, all other keyword arguments will be ignored. Field values will be set on the issue as part of the transition process.
- Parameters
issue – ID or key of the issue to perform the transition on
transition – ID or name of the transition to perform
comment – Optional String to add as comment to the issue when performing the transition.
fields – a dict containing field names and the values to use. If present, all other keyword arguments will be ignored
-
transitions
(issue, id=None, expand=None)[source]¶ Get a list of the transitions available on the specified issue to the current user.
- Parameters
issue – ID or key of the issue to get the transitions from
id – if present, get only the transition matching this ID
expand – extra information to fetch inside each transition
-
update_filter
(filter_id, name=None, description=None, jql=None, favourite=None)[source]¶ Update a filter and return a filter Resource for it.
-
user
(id, expand=None)[source]¶ Get a user Resource from the server.
- Parameters
id – ID of the user to get
id – str
expand (Optional[Any]) – Extra information to fetch inside each resource
- Return type
User
-
user_avatars
(username)[source]¶ Get a dict of avatars for the specified user.
- Parameters
username – the username to get avatars for
-
version
(id, expand=None)[source]¶ Get a version Resource.
- Parameters
id (str) – ID of the version to get
expand (Optional[Any]) – extra information to fetch inside each resource
- Return type
Version
Get a dict of the counts of issues fixed and affected by a version.
- Parameters
id – the version to count issues for
-
version_count_unresolved_issues
(id)[source]¶ Get the number of unresolved issues for a version.
- Parameters
id – ID of the version to count issues for
-
votes
(issue)[source]¶ Get a votes Resource from the server.
- Parameters
issue – ID or key of the issue to get the votes for
- Return type
Votes
-
watchers
(issue)[source]¶ Get a watchers Resource from the server for an issue.
- Parameters
issue – ID or key of the issue to get the watchers for
- Return type
6.2. Issue¶
-
class
jira.
Issue
(options, session, raw=None)[source]¶ Bases:
jira.resources.Resource
A Jira issue.
-
add_field_value
(field, value)[source]¶ Add a value to a field that supports multiple values, without resetting the existing values.
This should work with: labels, multiple checkbox lists, multiple select
- Parameters
field (str) – The field name
value – The field’s value
-
delete
(deleteSubtasks=False)[source]¶ Delete this issue from the server.
- Parameters
deleteSubtasks (bool) – if the issue has subtasks, this argument must be set to true for the call to succeed.
-
fields
¶ - Type
_IssueFields
-
permalink
()[source]¶ Get the URL of the issue, the browsable one not the REST one.
- Returns
URL of the issue
- Return type
-
update
(fields=None, update=None, async_=None, jira=None, notify=True, **fieldargs)[source]¶ Update this issue on the server.
Each keyword argument (other than the predefined ones) is treated as a field name and the argument’s value is treated as the intended value for that field – if the fields argument is used, all other keyword arguments will be ignored.
Jira projects may contain many different issue types. Some issue screens have different requirements for fields in an issue. This information is available through the
JIRA.editmeta()
method. Further examples are available here: https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Example+-+Edit+issues- Parameters
fields (dict) – a dict containing field names and the values to use
update (dict) – a dict containing update operations to apply
notify – query parameter notifyUsers. If true send the email with notification that the issue was updated to users that watch it. Admin or project admin permissions are required to disable the notification.
fieldargs – keyword arguments will generally be merged into fields, except lists, which will be merged into updates
-
6.5. Worklog¶
-
class
jira.
Worklog
(options, session, raw=None)[source]¶ Bases:
jira.resources.Resource
Worklog on an issue.
-
delete
(adjustEstimate=None, newEstimate=None, increaseBy=None)[source]¶ Delete this worklog entry from its associated issue.
- Parameters
adjustEstimate – one of
new
,leave
,manual
orauto
.auto
is the default and adjusts the estimate automatically.leave
leaves the estimate unchanged by this deletion.newEstimate – combined with
adjustEstimate=new
, set the estimate to this valueincreaseBy – combined with
adjustEstimate=manual
, increase the remaining estimate by this amount
-