Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

How to fetch date from custom field calendar control?

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?

 

 

1 answer

+1, having same issue. anyone able answer?

Suggest an answer

Log in or Sign up to answer