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

How to add a Label with Java Rest API?

name lastname August 18, 2013

There is not spezial Methode in the class IssueInputBuilder. But how to add a Label?

Thanks

5 answers

2 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

2 votes
Answer accepted
Shane Mc August 19, 2013

Just managed to get it working!

issueBuilder.setFieldValue("labels",Arrays.asList("label1", "label2"));

0 votes
Answer accepted
Thor Simon December 4, 2018

The suggestion to use "editmeta" is wrong (or, at least, has become wrong by late 2018).  A correct example using PUT to the issue endpoint can be found here. 

3 votes
LucasA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 18, 2013

Hi,

You can use the 'editmeta' URL for doing that. It requires the same argumentas as the 'issue' URL. We have some examples of editing issues via REST:

- https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Example+-+Edit+issues

Then, you can use a sniplet like this:

{
    "update": {
    "fields": {
        "labels": [
            "bugfix",
            "blitz_test"  ],
              }
        }
}

Best regards,
Lucas Timm

name lastname August 18, 2013

And how i use this with the Java Rest API?

That's my way to create a ticket.

final IssueInputBuilder issueInputBuilder = new IssueInputBuilder(ticket.getProject(), issueTypeID, summary)
			.setDescription(ticket.getDescription())
			.setAssigneeName(ticket.getAssignee())
			.setPriorityId(priorityID);
final BasicIssue basicCreatedIssue = issueClient.createIssue(issueInputBuilder.build(), pm);

1 vote
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 18, 2013

check this issu, vote up to implement this feature

https://ecosystem.atlassian.net/browse/JRJC-109

0 votes
Shane Mc August 19, 2013

Is there a way to achieve this using issueBuilder.setFieldValue? I have tried variations on

issueBuilder.setFieldValue("labels", labelArray);

where the labelArray parameter is a String array, an array list, or similar but so far have not succeeded...

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

TAGS
AUG Leaders

Atlassian Community Events