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

Atlassian Python REST API wrapper

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

Added an avatar property to the Bitbucket Cloud user object.

https://github.com/atlassian-api/atlassian-python-api/issues/515#issue-632122274 The above issue points out the assign_issue using username has been deprecated and now requires the accountId instead. I have updated the code to use accountId.

I cannot find in the documentation how to update an issue without triggering user notification. The only place where this feature is mentioned is as a parameter here: https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/jira.py#L922 Two...

Would be nice with an ``edit_pull_request`` with some of the parameters of open_pull_request. e.g. ```python def edit_pull_request( self, pull_request_id, destination_branch, title, description, reviewers=None, ): ``` Use case is after the...

I followed atlassian confluence API doc - https://atlassian-python-api.readthedocs.io/confluence.html, but it could not help me to download the confluence page in pdf format. Please refer the below script ``` from atlassian...

The following commits has changes for functions related to **_confluence templates_**: - c9ef927 - 32b6879 ### In a brief: The experimental endpoints for confluence templates eg: `get_template_by_id()` were marked **deprecated**,...

### I am trying to get **confluence templates** by _space_name_ or by _template_id_. My observation: 1. `get_template_by_id()` is a deprecated method. When I execute this function I get a warning...

for cloud instance this method returns 404 requests.exceptions.HTTPError: null for uri: https://****.atlassian.net/wiki/rest/experimental/content/****/version/1 for local instance works well is this unsupported for atlassian cloud?

Trying to run api to add space permissions but it's always returning 404, tried with multiple options but no luck. Any help is appreciated. url: /rest/api/space/CTS/permission body: { "subject": {...

atlassian-python-api 3.12.1 The pagination is also available for Test with Test Plan (https://docs.getxray.app/display/XRAY/Test+Plans+-+REST). But it's missing in [xray.get_tests_with_test_plan()](https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/xray.py#L243).. It is available with [get_tests_with_test_execution()](https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/xray.py#L314) and [get_tests_with_test_set()](https://github.com/atlassian-api/atlassian-python-api/blob/master/atlassian/xray.py#L198)