Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article helps you to get the duedate Due Date field values of Jira issues using getIssueList parameter of Jira CLI.

Instructions

Execute the below command to get the list of issues along with the duedate Due Date information and columns that are provided in the command.:

Code Block
--action getIssueList --project "ZCLI" --file issues.csv --outputFormat 2 --columns "due,Type,Resolution,Assignee,Reporter,Fix Versions,Affects Versions"


The above command

...

gives you the Due Date, Type, Resolution, Assignee, Reporter, Fix Versions, Affects Versions (and columns of your

...

choice) details of the issues that are in the ZCLI project. 

Info
Here due is the parameter we use to get the duedate Due Date information from Jira issues.

...