public/api-v2/project/Invoke-JiraGetProject.ps1
$JiraProjectExpand = @("description","issueTypes","lead","projectKeys") #https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-project-projectIdOrKey-get function Invoke-JiraGetProject { [CmdletBinding()] param ( # The project ID or project key (case sensitive). [Parameter(Mandatory,Position=0)] [string] $ProjectIdOrKey, # Used to expand additional attributes [Parameter(Position=1)] [ValidateScript({ Compare-StringArraySubset $JiraProjectExpand $_ })] [string[]] $Expand, # The JiraContext object to use for the request [Parameter()] [JiraContext] $JiraContext ) $functionPath = "/rest/api/2/project/$ProjectIdOrKey" $verb = "GET" $query = New-Object RestMethodQueryParams if($PSBoundParameters.ContainsKey("Expand")){$query.Add("expand",$Expand -join ",")} $method = New-Object RestMethod @($functionPath,$verb,$query) $method.Invoke($JiraContext) } |