All I've been able to do via automation is set the Team-managed project custom `Story point estimate` field to 0. Is there any way to clear it out?
It looks in the editmeta REST endpoint that all I can do it `set` the field, is there a way to set it to an empty value?
I've tried variations of this:
{
"fields": {
"Story point estimate": {{clear}}
}
}
{
"fields": {
"Story point estimate": {{remove}}
}
}
{
"update": {
"Story point estimate": {set:{{clear}}}
}
}
But the only thing that has worked is setting it to 0, which is not optimal
{
"fields": {
"Story point estimate": 0
}
}
Thanks in advance for any help you can give me!
Hello @Jim
You said specifically "Story point estimate". Does that mean that you are working with issues in a Team Managed project?
Can you show us the Automation Rule you are currently using to set the value to 0? In my system "Story point estimate" is not a field that is selectable in the field list in the Edit Issue action, so I would guess you might be using Advance Editing with JSON to set it.
Hi @Trudy Claspill,
That's right, and I've updated my original description to add more detail. Thanks for the help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This works for me.
{
"fields": {
"Story point estimate": null
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Jim ,
Welcome to the community!
If I understood your requirement correctly you wish to set an empty value for the story point field using the automation rule, if it is correct try keeping the value field empty in the automation rule. Sharing a snippet for reference. Hope it would help
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.
Hi @Jim! Can you please share how did you manage to clear story points value by bulk edit?
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.