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

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! 

Suggest an answer

Log in or Sign up to answer