I am using API v2.
I am trying to perform a transition of an issue. To do that I send a POST request to "/api/2/issue/<issue id>/transitions". The workflow requires some fields to be updated during the transition. So, the body of the request looks something like this:
{
"fields": {
"customfield_20332": "Ticket is changed as per the user user@email.com request for every field",
},
"update": {
"customfield_20068": [{ "set": { "value": "Negligible" } }],
},
"transition": {
id: "11"
}
}
I get the following response:
{"errorMessages":["Please select one approach."],"errors":{}}
It appeared to be a custom error in our Jira server. that's why I couldn't find anything about it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.