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

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

Ram Charan
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 9, 2025

If you're trying to access Advanced Roadmaps fields like Target Start and Target End through the Jira Python API, you first need to identify their custom field IDs. These fields are stored as customfield_xxxxx, so you must look them up under Jira Settings → Issues → Custom Fields.

If the API returns empty values, it usually means the fields aren’t added to the project’s screen. Add them to the correct screen and the Python API will start returning data.

For more guidance on project and workflow optimization, you can check resources here:
<a href="https://www.icertglobal.com/">ICertGlobal</a>

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

Suggest an answer

Log in or Sign up to answer