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: 

Jira Python API access to issue advanced roadmaps target start and end

Ivans Chou
December 8, 2025

I'm trying to automate the process of exporting a report from our Jira board.  I'm struggling to find the field in the Issue.fields properties that contains the advanced roadmaps target start and end dates.

 

from jira import JIRA

jira = JIRA(options, token_auth=token)

issues = jira.search_issues(jql_search_string)

for issue in issues:

    print( '{}: {} - {}'.format(issue.key, issue.fields.??target_start??, issue.fields.??target_end??)

 

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Answer accepted
David Nickell
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 8, 2025

This may or may not help -- but if you use the rest api field endpoint like this, you can get all the details about your fields.   And I'm guessing the "_" is part of the problem.  

Note - your custom field Id will be different than mine.

Thanks

 

https://ecosystem.atlassian.net/rest/api/3/field

Answer Target Dates.png

Ivans Chou
December 9, 2025

Thanks. I was able to retrieve all the fields via the REST API and now I have a complete list of all the fields 

Like David Nickell likes this