The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to fetch Original Estimate fields from Jira using JirAgileR

Prateek Rawat
July 22, 2022

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?

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Walter Buggenhout
Community Champion
July 24, 2022

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!