I have to change a filed value through json import. Where I need to change the data?

Debabrata Sahu May 16, 2017

I have to change a filed value through json import. Where I need to change the data?

1 answer

0 votes
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 9, 2017

Hi Debabrata,

A good resource would be the JIRA REST API Example - Edit issues tutorial page.  Here is the example they use to update two custom fields:

{
    "fields" : {
        "customfield_10200" :
        {"value" : "Test 1"}
        ,
        "customfield_10201" :
        {"value" : "Value 1"}
    }
}

The example curl command that goes along with that is as follows:

curl -D- -u fred:fred -X PUT --data {see below} -H "Content-Type: application/json" http://kelpie9:8081/rest/api/2/issue/QA-31

Hopefully that will help you get started!

Cheers,

Branden

Suggest an answer

Log in or Sign up to answer