I'm trying to fetch the date from custom field control, however, in return I'm getting 'none' value. This is date control in which we have selected a date. We need to fetch a date from this custom control from JIRA issue using REST API.
I'm able to grab date from Due Date control, however, when I'm trying to fetch date from custom control then it returns 'none' value. Here is my code:
project_dates = jira.search_issues('project = XXXXXJ1XOX AND issuetype = "Task" AND text ~ "External" ORDER BY priority DESC, updated DESC')
print('due: ',[date.fields.duedate for date in project_dates])
print('forcast: ', [date.fields.customfield_10024 for date in project_dates])
The above code returns:
due: ['2019-03-20']
forcast: [None]
How can we fetch date from custom control? Is there some other way to grab the information?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.