Hi community,
I'm trying to roll up subtask original estimates to the parent story automatically in a team-managed Jira project.
What I've already tried:
{ "fields": { "timeoriginalestimate": ... } }Result: field ignored — timeoriginalestimate not available in team-managed
{ "fields": { "timetracking": { "originalEstimate": "..." } } }Result: edits the subtask itself, not the parent — no "Parent of trigger work item" option in team-managed dropdown
https://mysite.atlassian.net/rest/api/3/issue/{{triggerIssue.parent.key}}Result: 404 — smart value doesn't resolve in URL field
What I need:
When a subtask's original estimate is updated → calculate sum of all sibling subtasks' original estimates → write total to parent story's original estimate field → visible in backlog without entering each story.
Questions:
triggerIssue.parent.subtasks.originalEstimateSeconds.sum work in team-managed at all?Thanks!