Hi I am currently trying to set the original Estimate field, but I am always receiving the error message ‘timetracking_originalEstimate’ cannot be set. It is not on the appropriate screen, or unknown.}, errorMessages=[]}]
I couldnt find any information on the correct field id anywhere online
Many thanks in advance!
This is my method that is trying to do the update, I already tried multiple parameters for the fieldvalue id like only “originalEstimate”
public void updateEstimate(String issueKey, String estimate) {
IssueInput input = new IssueInputBuilder().setFieldValue("timetracking_originalEstimate",22).build();
restClient.getIssueClient().updateIssue(issueKey, input).claim();
}
A Tebtoub is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.