How can I update the custom field "Original story points" using project automation. I tried the "Edit issue" action. However, this custom field does not appear in the drop down list.
So, I have unsuccessfully tried the following advanced JSON settings without success:
{
"fields": {
"Original story points": ["41"]
}
}
or:
{
"fields": {
"customfield_18584": ["41"]
}
}
How should I update this field automatically?
Thanks,
MArc
I found the answer, it turns out that the values in the JSON file have types. In the case of the original story points it is an integer.
The correct JSON to set in the Automation is:
{
"fields": {
"Original story points": 41
}
}
So, it was quite easy :)
Hi, about your case if you want to update your custom field, I think you should the bulk edit feature in Jira to update a custom field for multiple issues at once. step-by-step 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.