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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.