< Back

Get-JIRAIssue

Fri Jan 10, 2020 9:30 pm

NAME Get-JIRAIssue



SYNOPSIS

Get one or more JIRAIssue objects.





SYNTAX

Get-JIRAIssue -Key <String> [-Session <AtlassianSession>] [<CommonParameters>]



Get-JIRAIssue -Jql <String> [-Session <AtlassianSession>] [<CommonParameters>]





DESCRIPTION

The Get-JIRAIssue cmdlet gets a specified JIRAIssue object or performs a search to get multiple JIRAIssue objects.





PARAMETERS

-Key <String>

Specifies the key to be used to retrieve the JIRAIssue object(s).



Required? true

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Jql <String>

Specifies the JQL filter to be used to retrieve the JIRAIssue object(s).



Required? true

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Session <AtlassianSession>

Specifies the AtlassianSession to use to perform this task.

If none is specified Get-AtlassianSession is called.



Required? false

Position? named

Default value (Get-AtlassianSession)

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

You cannot pipe input to this cmdlet.





OUTPUTS

JIRAIssue

Returns one or more JIRAIssue objects.





-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Get-JIRAIssue -Jql 'project=TEST'



Gets all issues returned by the JQL filter 'project=TEST' for the currently loaded session.











RELATED LINKS