Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
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

Display labels of jira issue on confluence page

Hi,

I would like to implement a post function in order to automatically create a confluence page for the issue.

After the new page creation I find the labels of the issue are missing, now I try to link the labels of the confluence page to the labels of the issue. The labels of source issue can be automatically display on the confluence page.

Could you please suggest me how to do it?

Thankd a lot in advance

Best regards!

 

1 answer

def contentId = contentResponse.id
def labelsBody = [
  [
    prefix : "global",
    name : "label-1"
  ],
[
    prefix : "global",
    name : "label-2"
  ],
]

authenticatedRequestFactory
    .createRequest(Request.MethodType.POST, "/rest/api/content/$contentId/label")
    .addHeader("Content-Type", "application/json")
    .setRequestBody(new JsonBuilder(labelsBody).toString())
    .execute(new ResponseHandler<Response>() {
    @Override
    void handle(Response response) throws ResponseException {
        if (response.statusCode != HttpURLConnection.HTTP_OK) {
            throw new Exception(response.getResponseBodyAsString())
        }
    }
})
Now I can create the labels for the confluence, but it not from the source issue automatically 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events