Just as we fetch created field, I need to fetch updated field which has issue updation date

Vishal Pathak
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!
June 22, 2024

 see the below format : 

In python I am running this script but for updated, I am getting blank values while for all other columns , I am getting correct values

 

Please see of I need to type different syntax to fetch updated column

 

for issue in issues:

fields = issue.fields

key = issue.key

summary = issue.fields.summary

description = issue.fields.description if hasattr(issue.fields, 'description') else ""

created_at = issue.fields.created

updated_at = issue.fields.updated 

assignee = issue.fields.assignee.displayName if hasattr(issue.fields, 'assignee') and issue.fields.assignee else "Unassigned"

status = issue.fields.status

1 answer

0 votes
Damian Rosochacki
Contributor
June 22, 2024

Hi Vishal, can you show us how you’re printing the returned values? Is this for Jira Cloud?

Suggest an answer

Log in or Sign up to answer