public/api-v2/screen/Invoke-JiraGetAllScreenTabs.ps1
#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-screens-screenId-tabs-get function Invoke-JiraGetAllScreenTabs { [CmdletBinding()] param ( # The ID of the field to add [Parameter(Mandatory,Position=0)] [int64] $ScreenId, # The related project Key [Parameter(Position=1)] [string] $ProjectKey, # The JiraContext object to use for the request [Parameter()] [JiraContext] $JiraContext ) process { $functionPath = "/rest/api/2/screens/$ScreenId/tabs" $verb = "GET" $query = New-Object RestMethodQueryParams if($PSBoundParameters.ContainsKey("ProjectKey")){$query.Add("projectKey",$ProjectKey)} $method = New-Object RestMethod @($functionPath,$verb,$query) $method.Invoke($JiraContext) } } |