Am trying to retrieve the JIRA ID referenced on the Stash Pull Request UI display (JIRA Issue). This Curl call: curl -k -D- -u <JiraUser> -X GET -H \'Content-Type: application/json\' \'https://localhost:8443/rest/api/1.0/projects/<project>/repos/<repository>/pull-requests/4379/activities?limit=1000' can return "attributes:{"jira-key": but does not appear to actually return the JIRA Issue linked to on the Pull Request page.
This does not appear to work in JIRA Server 7.2.1 with Bitbucket Server 4.9.1. I can't see to find anyway to link either Issues to Pull-requests or vice versa.
Hi @Danny Powell,
I believe what you are looking for is the bitbucket-JIRA REST API. (The docs I've linked are Stash docs, as the Bitbucket Server docs are currently broken. I'm working on fixing that right now!)
Basically you can call:
/rest/jira/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/issues
and will receive a response similar to:
[ { "key": "JRA-11", "url": "https://jira.atlassian.com/browse/JRA-11" }, { "key": "JRA-9", "url": "https://jira.atlassian.com/browse/JRA-9" } ]
I hope that helps,
Felix Haehnel
Graduate Developer
Bitbucket Server
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Senthil Jothi,
there sure is:
com.atlassian.bitbucket.integration.jira.JiraIssueService
exposes the method getIssuesForPullRequest(int, long)
.
You will also need to add the following dependency to your pom.xml
:
<dependency> <groupId>com.atlassian.bitbucket.server</groupId> <artifactId>bitbucket-jira-api</artifactId> <scope>provided</scope> </dependency>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there a way to increase the default # of commits that it will check? Looks like it's limited to 100, but I need to get to about 400 commits. the "?limit=1000" doesn't work anymore
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.