atlassian-python-api icon indicating copy to clipboard operation
atlassian-python-api copied to clipboard

Atlassian Python REST API wrapper

Results 281 atlassian-python-api issues
Sort by recently updated
recently updated
newest added

In the official Python library for JIRA docs, JIRA's add_attachment method will accept a filename if the attachment is being passed from memory as a StringIO object. https://jira.readthedocs.io/examples.html#:~:text=%23%20attach%20file%20from%20memory%20(you%20can%20skip%20IO%20operations).%20In%20this%20case%20you%20MUST%20provide%20%60filename%60. Using the...

Module: jira.py Function: get_issue_changelog Line: `return (self.get(url) or {}).get("changelog")` Error Message: 'Response' object has no attribute 'get' Pseudo Example ``` jira = Jira( url="https://jira.example.com/", username="user", password="pass", advanced_mode=True ) jira.get_issue_changelog("TEST-1234") ```

Documentation and example are outdated showing the use of user & password which are not supported anymore.

Hi, not sure if my issue is with auth part of auth is fine and just create is not working: init seems to be fine as i am not error:...

Can you add function for returning the attachment id of the all attachments in a particular task/issue

When retrieving a page in the REST API you are able to request multiple values in the expand parameter: `/rest/api/content/12345?expand=version,space,ancestors` However, when I do the same with `get_page_by_id` I get...

confluence

When calling create_or_update() on an existing, archived page - the call fails. It raises atlassian.errors.ApiNotFoundError(). The exception message is: "Can not find draft with current content". If that archived page...

confluence

The endpoint will be: GET /rest/api/latest/admin/cluster https://developer.atlassian.com/server/bitbucket/rest/v807/api-group-system-maintenance/#api-api-latest-admin-cluster-get

https://github.com/atlassian-api/atlassian-python-api/blob/8299ade0eb367239e4fc7f3ea841a732b55e4efe/atlassian/confluence.py#L1386 Caused an issue in my case because some users where left out (only 200 users where returned). to avoid this in future and to be independent from those system...

The examples in the README only shows using U/P and not how to use a Personal Access Token (PAT). How can we use this with a Jira or Confluence using...