Hi,
I've been trying to update the existing select list via call from ScriptRunner, but nothing works. I want to pull the data from one source, and pass it as a values to the Select List, but so far wasn't able to add one option
Last version of code:
def update = put("https://something.atlassian.net/rest/api/3/customField/10225/option")
.headers(['Content-Type':'application/json'])
.body([
options:[
values:[
value: "test" as String
]]
]).asString()
OK, got it
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.