atlassian-python-api
atlassian-python-api copied to clipboard
Atlassian Python REST API wrapper
Compared to the jql() call, there is no "start" parameter support. But when providing really long lists of ticket ids, the bulk_issue() only returns a limited list of tickets (for...
Hello! Receiving configurations of transition rules does not work in "Jira Server". Can you make it work?
It seems like the PR's https://github.com/atlassian-api/atlassian-python-api/pull/821 fixed everything for Jira Server users. However, I had to change this back for our Jira cloud instance with GDPR strict settings enabled. Jira...
Platform: WSL2 (Ubuntu) Python: 3.8.10 atlassian-python-api: 3.14.1 I'm trying to set property for confluence page via `confluence.set_page_property` method. Unfortunately I'm not able to do that via API. ```python json_payload =...
As a Confluence API wrapper user, I want to see more verbose error message in case wrong HTML content is used to build a page. For example when the wrong...
I'm trying to use your wrapper to access my cloud account, and the documentation seems to be geared almost entirely towards server use. I think I may be missing something....
To reproduce: Attach a label to several pages. In our case, 54 pages. ``` batch1 = confluence.get_all_pages_by_label( "test_label", start=0, limit=50) batch2 = confluence.get_all_pages_by_label( "test_label", start=50, limit=50) assert(len(batch1) == 50) #...
Specifying a `name` argument to `Confluence.attach_content()` like `my/path/to/file.png` results in an error: "can't attach file with the same name 'file.png'" well, it isn't the same name; the API is messing...
``` def get_paginated_project_version( self, ): """ Returns all project versions paginated as an iterator. """ all_proj_relcand_dicts = self.jira.get_project_versions_paginated( key=self.spacekey, start=None, limit=100000, order_by="releaseDate", expand=None, query=None, status=["unreleased"], ) return all_proj_relcand_dicts ``` This...
atlassian.errors.ApiError: There is no content with the given id, or the calling user does not have permission to view the content