

You can report any bug you find or suggest new functionality with a new issue. We are always grateful for any kind of contribution including but not limited to bug reports, code enhancements, bug fixes, and even functionality suggestions. Users response = _users_assignable_to_issues()Ĭurrently, webhooks are not available for OAuth 2.0 apps, for more information: Contributing Projects response = _projects_paginated() Permissions Get my permissions response = _my_permissions() Get create issue metadata response = _create_issue_metadata() Response = _issue(data)ĭelete issue response = _issue('ISSUE_ID') Issues Get issue response = _issue('ISSUE_ID') Refresh token response = client.refresh_token('REFRESH_TOKEN') Set cloudid in the library t_cloud_id('CLOUD_ID')

A request towards Jira typically contains a URL. A good entry point is the official documentation for version 3 which is available here. Get the cloudid for your site response = client.get_resource_list() Jira provides various versions of their REST API. Set access token in the library t_access_token('ACCESS_TOKEN') JIRA, is a Python library, for connecting, with the JIRA tool. Url = thorization_url('REDIRECT_URI', scope_list, 'STATE')Įxchange authorization code for access token response = client.exchange_code('REDIRECT_URI', 'CODE') To do this, add the offline_access scope to the scope parameter of the authorization URL. The atlassian-python-api library provides a simple and convenient way to interact with Atlassian products (such as Jira Service management, Jira Software, Confluence, Bitbucket and apps Insight, X-Ray) using Python. Usage Client instantiation from jiracloud.client import ClientĬlient = Client('CLIENT_ID', 'CLIENT_SECRET') # Host must have trailing slashįor more information: Direct the user to the authorization URL to get an authorization codeĪ refresh token can be returned with the access token in your initial authorization flow.
#Jira client api python install
Jira-cloud-python is an API wrapper for Jira Software Cloud written in Python Installing pip install jira-cloud-python
