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?
Looking at this document
...it seems like you need to do it this way:
"update": {
"customfield_10063": [
{
"set": "Satheesh Nss"
}
]
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
 
 
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.