Using Jira REST API with PowerShell

For automation purposes, I needed a tool to interact with the REST API of Atlassian Jira over Powershell commands. I found a great module developed by replicaJunction and contributors on Github called PSJira. Installation You will need Powershell >=3.0 Install-Module PSJira (if you have Package Management Installed Module) and for sure, an Atlassian Jira instance First-Run Set-JiraConfigServer -Server 'https://my.jira.server.com:port' Setup jira credentials in .ps1 Encrypt credentials (Once) Do this with the Windows session of the user who will launch the ....

January 3, 2017 · 2 min · 244 words · zoph