Versions Compared

Key

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

...

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


  • Here the action getIssueList is used to get the list of issues for a JQL query or by the project. 
  • Using --column parameter, we can get the data of the fields that are configured in the each issue of the project.
  • 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 Due Date information from Jira issues.

...