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: 

How can I update a customfield of an issue with Jira Rest API?

BrunoTeixeira1996
March 24, 2022

I googled a lot and found some posts here but none of the posts helped me ...

I am trying to update the value of a text field inside an issue but I am failing

I am using the /rest/api/2/issues/<issue_id> with a PUT request and sending

{
"update": {
"customfield_10063": [
{
"set": [
{
"name": "Satheesh Nss"
}
]
}
]
}
}

But nothing happens ... any ideia how I can do this?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Trudy P Claspill
Community Champion
March 24, 2022

Looking at this document

https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issues/#api-rest-api-3-issue-issueidorkey-put

...it seems like you need to do it this way:

"update": { 
"
customfield_10063": [
{
"set":
"Satheesh Nss"
}
]
}
Valentino GARCIA MENDEZ
July 5, 2024

hi! that works?