You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I'm trying to use the python API to set the start date of an epic in the Portfolio road map. I've spent a week trying to figure it out.
issue_dict = { 'startdate': '2020-01-08',
'duedate': '2020-04-08',
new_issue = jira.create_issue(fields = issue_dict)
Also looked for other ways, like the WorkLog, to no avail.
Any help would be greatly appreciated.
Sorry I'm confused. Perhaps this doesn't have anything to do with Portfolio.
It may just be about the API to set start dates for a Roadmap in a Next Gen Project
startDateFld = getattr(issue.fields, startDateFldName)
if issueType == 'Epic' and dateStarted is not None and dateStarted != startDateFld:
issueDict.update( {startDateFldName: dateStarted} )
if row.EndLate is not None:
dueDate = getattr(issue.fields, 'duedate')
endLate = row.EndLate.strftime('%Y-%m-%d')
if issueType == 'Epic' and endLate != dueDate:
issueDict.update( {'duedate': endLate} )
It may just be about the API to set start dates for a Roadmap in a Next Gen Project
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To see this feature in action check out our recent dependencies demo here: https://www.youtube.com/watch?v=eQu5VsUqyZA Keeping on top of your dependencies is a key part of ensuring project success....
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.