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

I need to send a payload such as ``` { "form": { "answers": { "29": { "adf": { "version": 1, "type": "doc", "content": [ ``` But I cannot seem to...

I am now planning to export all of my current spaces using multithreading, but it seems that only one space can be exported at a time. I have tracked the...

Hi all, I have seen that since 2-3 weeks, some methods are decorated with @property without clear reasoning. E.g. https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/bitbucket/__init__.py#L165C6-L165C14. This leads to - inconsistency calling the class methods -...

I've added confluence v2 and jira v3, for the newer Atlassian Cloud servers. Unit tests and integration tests against live servers, flake8 and black to clean up the code, and...

The Confluence.get_all_pages_from_space() implementation is wrong. Based on the official document https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api-spaces-id-pages-get, the url should be ``url = "https://{your-domain}/wiki/api/v2/spaces/{id}/pages"``. But [in the code](https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/confluence.py#L581), the url is ``url = "rest/api/content"``.

An issue with Confluence API authentication ### Description When using token-based authentication, I encountered a 401 Unauthorized error. However, when testing the same token with curl, it worked correctly. After...

I'm a newbie, I might have missed something basic. ``` confluence = Confluence( url='https://hello.atlassian.net', username=config.USERNAME, password=config.API_TOKEN, cloud=True) status = confluence.create_page( space='Ram Newton A', title='Created through API', body="If you are seeing...

confluence

Hi, Thanks for the project !!! Is it possible to get list of names of all spaces in confluence. I could not find the function for this.

The Jira Portfolio features of this library are limited to Get functions. To be effective in setting up and managing Jira Portfolio Programs and Plans, the API needs to be...

I've a script, it shows me all transition id's for a ticket. This script shows these transitions for a ticket: ID: 11, Name: In Bearbeitung ID: 21, Name: On Hold...