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

Log level for creating a simple issue should be info and not warning (https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/jira.py#L1616)

Can you please implement "Export space" functionality available via GUI in your Python library as well? It is available in GUI by clicking on `Space settings` in the left sidebar...

The Atlassian API supports setting `version` information as outlined [in the documentation](https://developer.atlassian.com/server/confluence/rest/v900/api-group-content-resource/#api-rest-api-content-post). This library supports setting the `version` via `.update_page()` and `.update_or_create()` (for existing pages). However it doesn't support setting...

The documentation says: """ Returns all work logs for an issue. Note: Work logs won't be returned if the Log work field is hidden for the project. :param issue_id_or_key: :return:...

After 3.41.15, due to the change introduced in https://github.com/atlassian-api/atlassian-python-api/pull/1437, some of our C/CD automations needed to be adjusted due to the introduction of the merge_message positional parameter. Is there any...

There is no test for the `get_issue_remote_links` method, calling [the REST API listing remote links of an issue](https://docs.atlassian.com/software/jira/docs/api/REST/9.17.0/#api/2/issue-getRemoteIssueLinks). Trying to add one, it seems the test framework does not handle...

In one of the recent updates in Jira was added functionality to pin comment in the Jira Issues, but only in the UI. Please add such functionality to the lib,...

I have created a scoped PAT with scopes: read:page:confluence write:page:confluence Due to #1199, the client is then initiated as follows: confluence = Confluence( url=CONFLUENCE_BASE_URL, username=CONFLUENCE_USER, password=CONFLUENCE_API_TOKEN, cloud=True ) Now when...

Just started using the client (4.0.4) to access Confluence Cloud and while debugging authorization errors, I've noticed the deprecation warnings: < warning: 299 - "Deprecated API, will be removed on...

Found on [readthedocs](https://atlassian-python-api.readthedocs.io/jira.html) that the method _jira.get_issue_tree_ does not work. Use _get_issue_tree_recursive_ instead. In this regard, I decided to try updating the documentation. I suppose that the edit in the...