Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,558,907
Community Members
 
Community Events
184
Community Groups

REST API to get JIRA issue created from Bitbucket pull-request comment?

What I need to do is retrieve the JIRA issue created via the "Create issue" option in a pull request's comment  

example.PNG

This seems to be related to Bitbucket / JIRA integration.

I saw an almost similar post but it wasn't quite the same:  (it is retrieving the issues for which commits were made).  It seems to use this API.

I would expect to need to pass the comment ID to an API and get it somehow but can't find the option.  An option to create the issue is here with a POST.  I expected a related GET.

Thank you.  Hopefully you can point me to what I missed.

1 answer

1 accepted

0 votes
Answer accepted
Maciej Adamczak
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Aug 10, 2021

Hi @Barry Robertson 

You should be able to request the Pull Request comment using the "/comments" resource by using the comment ID .e.g:

/rest/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments/{commentId}

The response will contain the "properties" map with the "issues" key, e.g.:

{
"properties": {
"repositoryId": 1234,
"issues": ["JIRAKEY-123"]
}
// The rest of the response
}

The "issues" field might be undefined if there are no Jira issues created for the comment:

{
"properties": {
"repositoryId": 1234,
}

// The rest of the response
}

Link to docs for "comments" resource: https://docs.atlassian.com/bitbucket-server/rest/7.14.0/bitbucket-rest.html#idp331

Please be aware that the documentation page doesn't reference the "issues" field.

Thanks,

Maciej Adamczak
Atlassian Developer

Like Maciej Adamczak likes this

@Maciej Adamczak , would you happen to know the corresponding answer for Crucible?  I have the Bitbucket one working per your suggestion but now need to address Crucible reviews.  I saw this https://jira.atlassian.com/browse/CRUC-7902 issue but a suggested workaround there wasn't quite the answer I need.   Thanks again for the pointer on Bitbucket..

Maciej Adamczak
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Aug 12, 2021

Sorry, but I don't know how that works in Crucible.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events