The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira REST API updating one field with few values

Michael Raj
July 30, 2020

Hi, I want to update one field in Jira via Jira REST API.

For example let it be a reporter.

Reporter fields has following values in Jira REST API response:

reporter:
self "URL"
name "user_name"
key "user_key"
emailAddress "user_emailAddress"
avatarUrls
48x48 "avatar_url"
24x24 "avatar_url"
16x16 "avatar_url"
32x32 "avatar_url"
displayName "user_displayName"
active true
timeZone "location"

 

Do I have to update all values to successfully change the reporter? Or can I change only one (for example user_key) and all the other values will be changed automatically?

 

I would appreciate your guidance.

 

Best,

Michael

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Prince Nyeche - ELFAPP
Atlassian Partner
July 30, 2020

Which endpoint are you using? I believe if you want to update the value, you should have a dataset that you need to post and not all. However, please provide the endpoint to the API, that would give a clearer indication if what you're attempting can be done.

Michael Raj
July 30, 2020

Hi @Prince Nyeche - ELFAPP ,

I'm using /rest/api/2/issue (jira server)

Prince Nyeche - ELFAPP
Atlassian Partner
July 30, 2020

Hey Michael, since this is an update, you do not need to update every field, specify the required field and simply follow the JSON representation.

Like Michael Raj likes this
Michael Raj
July 30, 2020