You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.