How can we get all the issues associated (through smart commit) to bitbucket commit
Through the UI:
On the commit url (https://bitbucket-server-url/projects/project-name/repos/repo-name/commits/commit-hash) at the top right of the page, there is a section that will show the related issues, next to a JIRA icon.
Edit:
Sorry I didn't realise you were looking for an API.
The REST APIs available for Bitbucket JIRA integration can be found here:
https://developer.atlassian.com/static/rest/bitbucket-server/latest/bitbucket-jira-rest.html
Unfortunately, it does not contain a way to get the issues via a commit hash. In order to do that, you need to call getIssuesForCommit from the JiraIssueService. See https://developer.atlassian.com/static/javadoc/bitbucket-server/latest/jira-api/reference/com/atlassian/bitbucket/integration/jira/JiraIssueService.html for more details.
getIssuesForCommit
JiraIssueService
Hi Kristy,
Thank you for response. Is there any REST API available to pull out total issues associated to commit? I want to use this list in one of my developed plugin.
I have edited my answer to include details about the API. Hope that helps
Thank you very much. This is very helpful for me.
It looks like you're new here. Sign in or register to get started.