atlassian-python-api
atlassian-python-api copied to clipboard
Atlassian Python REST API wrapper
with the original REST API, it is possible to retrieve all previous versions using the following call: {base URL}/rest/api/content/{id}/version/ Is it possible to get this functionality in the library as...
How to download a attachment which is added to a specific ticket? jira.get_attachement(jira_ticket_id) is showing the info of the attachment and the file url but can we download the file...
a "product.get_all_users()" where product is JIRA, Confluence, Bitbucket and the output is a dictionary containing the general user profile metadata (ID, associated groups, last login, etc).
https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/rest_client.py#L28 `safe_mode_headers` uses `nocheck`, all the other headers use `no-check` Is this a typo?
Hi! I will be happy to cover all methods from https://docs.atlassian.com/software/jira/docs/api/REST/8.5.0/#api/2/attachment under that code lines https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/jira.py#L150 Cheers, Gonchik Tsymzhitov
Hi! I will be happy to cover all methods from https://docs.atlassian.com/software/jira/docs/api/REST/8.5.0/#api/2/comment/{commentId}/properties under that code lines https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/jira.py#L256 Cheers, Gonchik Tsymzhitov
Please add some additional text to the this error message used during reponse handling. https://github.com/atlassian-api/atlassian-python-api/blob/c9b4bb0156983fdff1b9b87bc5376784cb400766/atlassian/rest_client.py#L284 The log shows something like `ERROR:atlassian.rest_client:Expecting value: line 1 column 1 (char 0)` which looks...
Having issue retrieving Jira Issue. This seems to be an issue with ASCII and UTF-8 encoding. Code: ``` from atlassian import Jira jira = Jira( url='https://instance.atlassian.net', username='[email protected]', password='token', cloud=True) JQL...
I tested and the user and password works ``` # coding=utf-8 from atlassian import Jira from atlassian import Confluence from atlassian import Bitbucket from atlassian import ServiceDesk from atlassian import...
When using the update_or_create method for an existing page I am getting a 501 server error. This can be resolved by logging into confluence and visiting the page before updating....