atlassian-python-api
atlassian-python-api copied to clipboard
Atlassian Python REST API wrapper
Hey there, As an admin of a Jira Server instance with more than 50 SD projects, the pagination needs to be called as well in `get_service_desk()` method. I am not...
Hi there It seems like the toString representation of the `Sprint` CustomField was deprecated in September 2020. The sprint data is still in string format, when it should be in...
Hi, I'm using the following python request, as shown in [Bitbucket API doc](https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/src#post) to commit a file: `url = f"https://api.bitbucket.org/2.0/repositories/{WORKSPACE}/{slug}/src"` `headers = {'Content-Type': 'application/x-www-form-urlencoded'}` `data = {"newfile.txt": "Contents of the...
Hello Expert, I am new to Atlassian products (currently using Trial version) and trying to create a JIRA organization using REST API (in Python) as defined in the below document...
Please add an function to set/get the git LFS status of an repo.
I see the only place the object variable `password` is used is in `jira.py` based on this search of the repo: ``` $ grep -ri "\.password" atlassian/jira.py: "webSudoPassword": self.password, atlassian/rest_client.py:...
New task creation via Rest Api in Pull Request loses newlines symbols url = 'https://servername:port/rest/api/latest/tasks' data = { "anchor": { "id": id, "type": "COMMENT" }, "text": "line1\n line2\n line3" }...
status = confluence.append_page(page_id = '177620021', title = 'testing_users', append_body = html_text, parent_id= '177602610', type='page', representation='storage', minor_edit=False) Script failed with below output: AttributeError: 'list' object has no attribute 'strip' How can...
Hello, I try to upload a file to a confluence site with the following code ``` confluence = Confluence( url="https://confluence.example.com", username="username", password="password", ) response = confluence_object.attach_file( "/tmp/mypdf.pdf, content_type="application/pdf", name="mypdf", page_id="151685342",...
Oddly I am _sometimes_ able to use update_page to update an existing page in Confluence, but 9 times out of 10 I get the non-descript and unhelpful `atlassian.errors.ApiValueError: No space...