An automation rule in a Team-managed project is failing with the error 'Additional fields contains invalid field(s) in update or fields section. Story point estimate'.
The project is Team-managed, and the rule uses the default field 'Story point estimate' in the automation JSON:
{
"fields": {
"Story point estimate": {{#=}}{{QA Story Point Estimate}}{{/}}
}
}
The rule previously worked but now fails. The user has confirmed that the field is present and is using the correct field key for Team-managed projects. Please investigate and advise.
Hello,
Have you tried using the custom field ID instead of its name?
Here’s an example:
{
"fields": {
"customfield_xxxxx": {{#=}}{{QA Story Point Estimate}}{{/}}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried with the customfield_16486 ID
Jira continues to send an error message, but actually, it worked. Work is still better than not working at all. Thank you
Please note that my previous format has worked for a long time, and in "Beautiful Day", it doesn't work anymore (I checked, and no one changed it)
{
"fields": {
"Story point estimate": {{#=}}{{QA Story Point Estimate}}{{/}}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Thu Nguyen -- Welcome to the Atlassian Community!
The community needs context for automation rule questions to provided better suggestions. Please post the following:
Until we see those...
There are several possible causes for that symptom:
Kind regards,
Bill
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.
Thanks for that image, and did you check the possible causes I noted above?
Please also show the audit log entries of all executions to show where the rule worked in the past and when it stopped working.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Thu Nguyen
Welcome to the Atlassian Community!
In Team-managed projects, the field “Story point estimate” only exists if estimation using story points is enabled.
If estimation is turned off or changed (for example, switched to “Time tracking”), Jira will throw that error.
If it is enabled, try this one in Additiona Fields section.
{
"fields": {
"Story point estimate": {{#=}}{{issue."QA Story Point Estimate"}}{{/}}
}
}
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 @Thu Nguyen
Did you receive an error message?
Could you please share the audit log?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It continues to fail with "Story point estimate". I failed with the "Story point estimate" field, not "QA Story Point Estimate"
After I changed to Field ID, it looks better and works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Thu Nguyen
That’s great to hear — thank you for confirming! 🎉
Yes, in Team-managed projects, Jira sometimes handles certain fields (like Story point estimate) differently under the hood. When using automations, referencing the field ID instead of the display name ensures Jira maps the field correctly, especially if the project uses a different estimation method or localized field name.
I’m glad switching to the field ID worked for you — that’s definitely the more reliable approach in these cases.
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.