So I am testing with postman my data sent to the API before I transfer it in my plugin. My goal is to do a Bulk transition to "done" with the resolution "Fixed". Right now the API seems to support only changing transitions.. If I specify the "Done" transition , the resolution will remains at "Unresolved" . My UI is all set to specify the resolution but there is no way to send a resolution in the body of the transition endpoint?
I am using this:
/rest/api/3/bulk/issues/transition
Body example:
Hi,
can you try
"transition": { "id": "11" }
instead of
"transition":"11"
Like I mentionned, the transition works. It's the resolution that doesn't. There is no way to specify a resolution.
If I simply send the transition Id "11" , the resolution will remain at unresolved.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oups, i forgot this part in my previous message
{ "transition": { "id": "11" }, "fields": { "resolution": { "name": "Done" } } }
But i think that you will need to have a transition screen to be able to add the resolution with the API
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"transition": { "id": "11" doesn't work but this body below does "work". The transition is working but not the resolution.
What do you mean by adding a screen? I'm gessing you are not talking about UI here.
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.