You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi there,
Using automation, I need to set the Resolution field back to Unresolved. The problem is that 'Unresolved' is not listed in the drop-down when trying to do it through the Edit Issue selection. So I have to use JSON. I've tried a few different things and nothing has worked so far. This is what I've tried so far:
{
"fields": {
"resolution": { "id": null }
}
}
{
"fields": {
"resolution": null
}
}
{
"fields": {
"resolution": ["Unresolved"]
}
}
Hi @Chris Robbins , welcome on the community. I'd suggest you to use the workflow's postfunction to set or clear the resolution (as @Alex Koxaras _Relational_ suggests), but if your use case requires to use the Automation, you need to do it using following setup. Let me know if you need more help :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This can't work because the REST API, and Automation works the same way that the UI does.
If you put the resolution on an edit screen, you don't get an "unresolved" or "none" option, and the system will default it to a value, so you have no option but to set it to something.
You can't blank out a resolution by editing an issue. You have to do it by transitioning an issue to an open status and using a post-function to clear the resolution, exactly as @Martin Bayer _MoroSystems_ s_r_o__ says.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Chris Robbins and welcome to the community,
I would expect that ""resolution": null" would work. What response are you getting?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Chris Robbins you have to transition the issue and during that transition the resolution can be cleared.
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.