I am struggling to update the time estimation through the API, can anybody help me regarding this issue?
Is it possible to update following attributes through the API? (aggregatetimeoriginalestimate, timeestimate, timeoriginalestimate, aggregatetimeestimate, aggregateprogress, progress)
Thanks!
No, because they're not attributes or fields you set, they're calculated from the issue data.
See https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/updating-an-issue-via-the-jira-rest-apis and https://docs.atlassian.com/jira/REST/server/#api/2/issue-editIssue - you're looking for the "timetracking" field.
You can set one or both parts of it - originalestimate and remainingestimate. The attributes you are looking for are then calculated from those two and the worklogs on the issue.
it does not work for me...
JSON which I received is:
{
errorMessages :
[],
errors :
{
timetracking : "Field 'timetracking' cannot be set. It is not on the appropriate screen, or unknown."
}
}
in the same way I am also able to set a description, that means that my request is right.
What should I do?
the issue, in which I want to change the property "Estimated", this property is already set. (Even though updating does not work)
Second question regarding this topic were, what do I do if this property is not set?
Thanks a lot!
You need to put the timetracking field on the edit screen for the issues.
It doesn't matter if it's got a value or not, you just set it
>>You need to put the timetracking field on the edit screen for the issues.
I didnt get it
import groovyx.net.http.FromServer
import groovyx.net.http.HttpBuilder
import io.extensi.build.rest.jira.Field
import org.slf4j.Logger
import org.slf4j.LoggerFactory
class DetailsUpdate {
static final Logger LOG = LoggerFactory.getLogger(DetailsUpdate.class)
def static updateEstimate(int estimate, String issueId, int rapidViewId, HttpBuilder client, String authString) {
LOG.info("")
LOG.info("----------------------------------------------------------")
LOG.info("updateEstimate")
LOG.info("----------------------------------------------------------\n")
def fields = Field.getFields(client, authString)
def storyPointField = fields.find { it.name == "Story Points" }
client.post() {
request.uri.path = '/secure/DetailsViewAjaxIssueAction.jspa'
request.contentType = 'application/x-www-form-urlencoded'
request.headers = [
'X-Atlassian-Token': "no-check",
'Authorization' : "Basic ${authString}",
'Accept' : "text/html"
]
request.uri.query = ['decorator' : 'none']
request.body = ["${storyPointField.id}" : estimate,
issueId:issueId,
singleFieldEdit:true,
fieldsToForcePresent: storyPointField.id,
skipScreenCheck:true,
rapidViewId:rapidViewId]
response.success { FromServer resp, Object body ->
assert resp.statusCode == 200
}
response.failure { FromServer resp, Object body ->
LOG.error("Call failed with code ${resp.statusCode} ")
throw new RuntimeException(resp.message)
}
}
}
}
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Improve user experience across Jira with global settings
Learn how to set up and configure a Jira site, manage Jira permissions, and configure Jira apps and integrations.
Learning Path
Streamline projects across Jira with shared configurations
Build Jira work items with reusable configurations called schemes, and reduce administrative work with automation.
Learning Path
Become an effective Jira software project admin
Set up software projects and configure tools and agile boards to meet your team's needs.