I am trying to fetch Original Estimate fields using timeoriginalestimate keyword using below code, but it is not returning the field. Although it is working fine for timespent.
library(JirAgileR, quietly = T)
library(knitr, quietly = T)
library(dplyr, quietly = T)
if (is.null(JIRABaseURL)) JIRABaseURL
if (is.null(username)) username
if (is.null(password)) password
fields1<-get_jira_issues(domain = JIRABaseURL,
username = username,
password = password,
jql_query = "project in('my_project')",
fields = c("summary","timespent", "timeoriginalestimate"),
maxResults = 150,
verbose = FALSE,
as.data.frame = TRUE)
How can I fetch original estimate, is there any specific keyword for the same?
Hi @Prateek Rawat,
Maybe the examples in JRACLOUD-33749 can help you with the right syntax? Original estimate is part of the time tracking custom field in Jira.
Hope this is a useful pointer!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.