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
Hi Vishal, can you show us how you’re printing the returned values? Is this for Jira Cloud?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.